:root {
	--brand-color-1: #14f7da;
    --brand-color-1h: #18a7e5;
    --brand-color-2: #001c80;
    --brand-color-2h: #001c80;
}


/* F-timeline */



/* =========================
   BASE TIMELINE
========================= */
.f-timeline-nav ul.fMenu {
	display: flex;
	margin-bottom: 1rem;
	flex-wrap: nowrap;
	padding: 0;
}

/* ITEMS */
.f-timeline-nav li {
	flex: 1 1 0;
	text-align: center;
	position: relative;
	list-style: none;
}

/* CONNECTING LINE */
.f-timeline-nav li::before {
	content: "";
	position: absolute;
	top: 1.2rem;
	left: -50%;
	width: 100%;
	height: 2px;

	/* DARK BRAND COLOR */
	background: var(--brand-color-2);
	opacity: 0.35;

	z-index: -1;
}
.f-timeline-nav li:nth-child(1)::before{
	content:none;
}
/* =========================
   ICON STYLE
========================= */
.f-timeline-nav .menu-item-text big {
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	margin: 0 auto 0.5rem;

	color: #fff;
	font-weight: bold;

	border-radius:10px;

	/* DARK BRAND COLORS ONLY */
	background: var(--brand-color-2);

	
	transition: all 0.25s ease;
}

/* HOVER */
.f-timeline-nav li:hover .menu-item-text big {
	background: var(--brand-color-1h);
	transform: translateY(-3px);
	
}

/* =========================
   LABEL
========================= */
.f-timeline-nav .menu-item-text span {
	display: block;
	color: var(--brand-color-2);
	font-size: 0.95rem;
	line-height: 1.2;
}

/* ACTIVE STEP */
.f-timeline-nav li.selected .menu-item-text big {
	background: var(--brand-color-1h);
}

.f-timeline-nav li.selected .menu-item-text span {
	font-weight: bold;
}

/* FUTURE STEP */
.f-timeline-nav li.future {
	opacity: 0.35;
}

.f-timeline-nav li.future a {
	pointer-events: none;
}

/* =========================
   MOBILE FIX (FORCE 4 IN ONE ROW)
========================= */
@media (max-width: 768px) {

		/* FORCE ROW */
	.f-timeline-nav ul.fMenu {
		display: flex !important;
		flex-wrap: nowrap !important;
		justify-content: space-between !important;
		padding: 0 !important;
		margin: 0 !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	/* FORCE EXACT 4 EQUAL COLUMNS */
	.f-timeline-nav li {
		flex: 0 0 25% !important;
		max-width: 25% !important;
		min-width: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
		box-sizing: border-box !important;
	}

	/* ICON SMALLER SO IT FITS */
	.f-timeline-nav .menu-item-text big {
		width: 36px !important;
		height: 36px !important;
		font-size: 12px !important;
		margin: 0 auto 4px !important;
	}

	/* LABEL - DO NOT CUT TEXT */
	.f-timeline-nav .menu-item-text span {
		font-size: 9px !important;
		line-height: 1.1 !important;

		white-space: normal !important;   /* allow full text */
		overflow: visible !important;      /* NO CUT */
		text-overflow: unset !important;

		display: block !important;
		word-break: break-word !important;
	}

	/* SAFETY RESET FOR CONTAINER */
	.f-timeline-nav .menu-item-text {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
	}
}