/* ==========================================================================
   #SASS-MQ-FUNCTIONS
   ========================================================================== */
.c-process {
	margin-top: 4rem;
}
@media (min-width: 61.25em) {
	.c-process {
		margin-top: 6rem;
	}
}
.c-process__wrap {
	align-items: center;
	flex-direction: column;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
@media (min-width: 46.25em) {
	.c-process__wrap {
		flex-direction: row;
	}
}
.c-process__item {
	align-items: center;
	display: inline-flex;
	position: relative;
	margin-bottom: 2rem;
	/*
	 * Open state
	 */
	/*
	 * Arrows
	 */
}
.c-process__item--open .c-process__circle {
	background-color: var(--color-mint-green);
}
.c-process__item--open .c-process__content {
	display: inline-flex;
}
.c-process__item--arrow::before {
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	z-index: 2;
}
@media (min-width: 78.75em) {
	.c-process__item--arrow::before {
		content: "";
	}
}
@media (max-width: 46.24em) {
	.c-process__item--arrow::before {
		content: "";
	}
}
.c-process__item--arrow-type-next::before {
	background-image: url("../img/shapes/arrow-next-step.svg");
	left: 50%;
	transform: rotate(90deg) translateY(0) translateX(80%);
	top: 0;
}
@media (min-width: 78.75em) {
	.c-process__item--arrow-type-next::before {
		transform: translateY(calc(-100% - 0.5rem));
	}
}
.c-process__item--arrow-type-previous::before {
	bottom: 0;
	background-image: url("../img/shapes/arrow-prev-step.svg");
	left: 0;
	transform: rotate(90deg) translateX(-50%) translateY(calc(150px + 2rem + 100%));
}
@media (min-width: 78.75em) {
	.c-process__item--arrow-type-previous::before {
		left: 50%;
		transform: translate(-100%, calc(100% + 1rem));
	}
}
.c-process__item--arrow-size-normal::before {
	height: 33%;
	width: calc(100% + 32px + 2rem);
}
.c-process__item--arrow-size-double::before {
	bottom: 30%;
	height: 70%;
	width: calc(200% + 64px + 4rem);
}
@media (min-width: 78.75em) {
	.c-process__item--arrow-size-double::before {
		bottom: 0;
		height: 50%;
		width: calc(200% + 64px + 4rem);
	}
}
.c-process__circle {
	background-color: var(--color-peach);
	border: 0;
	border-radius: 50%;
	color: var(--color-dark);
	font-family: var(--font-secondary-medium);
	height: 152px;
	width: 152px;
	align-items: center;
	display: flex;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
	justify-content: center;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
}
.c-process__circle:focus {
	outline: 1px solid var(--color-dark);
}
.c-process__content {
	display: none;
	position: absolute;
	flex-direction: column;
	background-color: var(--gray-2);
	bottom: 0;
	min-width: 220px;
	transform: translate(-2.2rem, calc(100% + 1rem));
	text-align: center;
	padding: 1rem 1.5rem 3rem;
	z-index: 3;
}
.c-process__content img {
	margin-bottom: 1.5rem;
}
.c-process__arrow {
	margin: 1rem 0;
	transform: translateY(-1rem) rotate(90deg);
}
@media (min-width: 46.25em) {
	.c-process__arrow {
		margin: 0 1rem;
		transform: translateY(-1rem) rotate(0);
	}
}
.c-process__arrow:last-of-type {
	display: none;
}
/*# sourceMappingURL=process.css.map*/