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

h3{
    color:var(--brand-color-2) !important;
}

/*Button*/
a.fButton, 
form.fForm .buttons input {
    background-color:var(--brand-color-2) !important;
    border: 2px solid var(--brand-color-2) !important;
}

/* 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;
	}
}
/* Mobile */
@media (max-width: 767.98px) {
    .f-hrd-banner {
        margin-bottom: 0;
    }

    .f-hrd-banner .fGalleryImage img {
        height: 650px;
        object-position: center;
    }

    .f-hrd-banner .ItemfinnerGallery .fGalleryText {
        padding: 2rem 1rem;
    }

    .f-hrd-banner .ItemfinnerGallery .fGalleryText .item.container {
        width: 100%;
    }

    .f-hrd-banner .ItemfinnerGallery .fGalleryText .row {
        row-gap: 1.5rem;
    }

    .f-hrd-banner-2 .ItemfinnerGallery .fGalleryText {
        text-align: center;
    }

    .f-hrd-banner-2 .ItemfinnerGallery .fGalleryText img {
        max-width: 11rem;
        padding: 0;
        margin: 0 auto;
    }

    .f-hrd-banner-2 .ItemfinnerGallery .fGalleryText h3 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .f-hrd-banner .ItemfinnerGallery .fGalleryText p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .f-hrd-banner .ItemfinnerGallery .fGalleryText a.fButton {
        display: inline-block;
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* HRD Corp Claimable end here */


.fForm .form-item .date{width:100%;}



.hint-button {
    margin-top: 10px;
}

.hint-button a {
    display: inline-block;
    padding: 12px 20px;
    background: #f0f7ff;
    border: 1px solid #cfe2ff;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;
    color: #0d6efd !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .2s ease;
    width: 100%;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.hint-button a:hover {
    background: #e2efff;
    border-color: #9ec5fe;
}