/* -------------------------------------------------------------------------------- */
/*                                Base Color Palette                                */
/* -------------------------------------------------------------------------------- */

:root {
	/* Primary Brand Colours */
	--pri-base:      #40C2CC; /* Teal */
	--pri-dark:      #09263A; /* Deep Blue) */
	--pri-tint:      #E4F8FE; /* Light Teal */
	--pri-neutral:   #EAEFF1; /* Light Grey */

	/* Secondary Brand Colours */
	--sec-mid:       #3F90A7; /* Medium Teal */
	--sec-strong:    #006B86; /* Dark Teal */
	--sec-emphasis:  #1377C3; /* Blue */
	--sec-neutral:   #5D7380; /* Dark Grey */

	/* Tertiary/Accent Brand Colours */
	--acc-energetic: #16FFFB; /* Digital Teal */
	--acc-positive:  #32B77B; /* Green */
	--acc-attention: #EADF00; /* Yellow */
	--acc-critical:  #E5392C; /* Red */
	--acc-special:   #884F9F; /* Purple */

	/* Absolute Neutrals */
	--abs-black:     #000000;
	--abs-white:     #FFFFFF;

	/* Overlays & shadows */
	--nf-overlay:    rgba(0, 0, 0, 0.50);
	--nf-shadow:     rgba(0, 0, 0, 0.15);

	/* Palette for graphics */
	--chart-01: var(--pri-base);
	--chart-02: var(--sec-emphasis);
	--chart-03: var(--acc-positive);
	--chart-04: var(--acc-special);
	--chart-05: var(--acc-attention);
	--chart-06: var(--acc-critical);
	--chart-07: var(--sec-mid);
	--chart-08: var(--sec-strong);
}

/* -------------------------------------------------------------------------------- */
/*                                   Base / Reset                                   */
/* -------------------------------------------------------------------------------- */

* {
	box-sizing: border-box;
	font-family: "Inter", "Arial", sans-serif;
	padding: 0;
}

html,
body {
	color: var(--abs-black);
	margin: 0;
}

dl,
ol,
ul {
	text-align: left;
}

/* -------------------------------------------------------------------------------- */
/*                                  Accessibility                                   */
/* -------------------------------------------------------------------------------- */

/* Visually hide until focus */
.skip-link {
	left: -9999px;
	position: absolute;
	top: 0;
}

.skip-link:focus {
	background: var(--abs-white);
	border-radius: 6px;
	border: 2px solid var(--pri-base);
	left: 16px;
	padding: 8px 12px;
	text-decoration: none;
	top: 16px;
	z-index: 9999;
}

/* -------------------------------------------------------------------------------- */
/*                               Layout & Containers                                */
/* -------------------------------------------------------------------------------- */

.nf-container {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1295px;
	padding: 40px 20px;
	box-sizing: border-box;
}

section:has(> .nf-container + .nf-sidebar),
section:has(> .nf-sidebar + .nf-container) {
	display: grid;
	grid-template-columns: minmax(0, 1295px) 300px;
	column-gap: 20px;
	margin-inline: auto;
	max-width: 1295px;
}

section:has(> .nf-sidebar) .nf-container {
	justify-content: flex-start;
	gap: 16px;
	margin: 0px;
	max-width: unset;
	width: 100%;
}

.nf-sidebar {
	margin-top: 40px;
	width: 100%;
}

.nf-sidebar .company-logo {
	display: table;
	margin: 0px auto;
}

.nf-sidebar .company-logo img {
	max-height: 100px;
	max-width: 200px;
}

@media (max-width:991px) {
	section:has(> .nf-container + .nf-sidebar),
	section:has(> .nf-sidebar + .nf-container) {
		display: block;
		max-inline-size: none;
	}

	section:has(> .nf-sidebar) .nf-container {
		margin: 0 auto;
		max-width: 1295px;
	}

	.nf-sidebar {
		margin-top: 20px;
		padding: 0px 20px;
		width: 100%;
	}

	.nf-sidebar .nf-tiles {
		grid-template-columns: 1fr;
	}

}

.left-content {
	align-items: start;
	flex-direction: column;
}

.center-content {
	align-items: center;
	flex-direction: column;
}

.nf-split,
.nf-split-inverse {
	align-items: center;
	column-gap: 32px;
	display: grid !important;
	grid-auto-columns: 1fr 1fr;
	grid-auto-flow: column;
}

.nf-split-inverse {
	direction: rtl;
}

.nf-split-inverse * {
  direction: ltr;
}

.nf-split img,
.nf-split-inverse img {
	display: block;
	margin: 0px auto;
	max-height: 410px;
	max-width: 100%;
}

@media (max-width:900px) {
	.nf-split,
	.nf-split-inverse {
		grid-auto-columns: unset;
		grid-auto-flow: row;
		row-gap: 16px;
		text-align: center;
	}

}

.warning-block {
	background-color: var(--acc-attention);
	border-radius: 5px;
	padding: 20px;
}

.warning-block h4 {
	font-size: 18px;
}

/* -------------------------------------------------------------------------------- */
/*                                Section BG Helpers                                */
/* -------------------------------------------------------------------------------- */

.nf-section-chevrons {
	background-color: var(--pri-base);
	background-image: url("/images/bg-cta-chevrons-teal.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;
}

.nf-section-constellation {
	background-color: var(--pri-base);
	background-image: url("/images/bg-constellation-network.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;
}

.nf-section-skytint {
	background-color: var(--pri-tint);
}

/* -------------------------------------------------------------------------------- */
/*                                Typography & Links                                */
/* -------------------------------------------------------------------------------- */

.nf-link {
	color: var(--sec-neutral);
	text-decoration: none;
}

.nf-link-light {
	color: var(--pri-base);
	text-decoration: none;
}

.nf-link:hover {
	color: var(--sec-strong) !important;
}

.nf-text-teal {
	color: var(--sec-strong) !important;
}

.nf-text-brand {
	color: var(--pri-base);
}

.nf-text-white {
	color: var(--abs-white);
}

.text-left {
	text-align: left !important;
}

.text-highlight {
	background-color: var(--acc-attention);
}

/* -------------------------------------------------------------------------------- */
/*                                      Tables                                      */
/* -------------------------------------------------------------------------------- */
/* Wrapper that gives tables a card look with rounded corners, shadow, and full width */
.nf-table-wrap {
	background: var(--abs-white);
	border-radius: 12px;
	box-shadow: 0 2px 10px var(--nf-shadow);
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

/* Enables horizontal scrolling when table overflows */
.nf-table-wrap.is-scroll {
	overflow: auto;
}

/* Sticky fade masks that hint horizontal scroll */
.nf-table-wrap.is-scroll::before,
.nf-table-wrap.is-scroll::after {
	content: "";
	height: 100%;
	pointer-events: none;
	position: sticky;
	top: 0;
	width: 16px;
	z-index: 1;
}

/* Left fade mask */
.nf-table-wrap.is-scroll::before {
	background: linear-gradient(to right, var(--abs-white), rgba(255, 255, 255, 0));
	left: 0;
}

/* Right fade mask */
.nf-table-wrap.is-scroll::after {
	background: linear-gradient(to left, var(--abs-white), rgba(255, 255, 255, 0));
	right: 0;
}

/* Base table: spacing reset, color, and typography */
table.nf-table {
	background: var(--abs-white);
	border-collapse: separate;
	border-spacing: 0;
	color: var(--abs-black);
	font-size: 14px;
	line-height: 1.5;
	width: 100%;
}

/* Table caption: subtle, left-aligned label */
table.nf-table > caption {
	color: var(--sec-neutral);
	font-weight: 500;
	padding: 14px 16px;
	text-align: left;
}

/* Sticky header cells with dark background and clear separator */
table.nf-table thead th {
	background: var(--pri-dark);
	border-bottom: 1px solid var(--sec-neutral);
	color: var(--abs-white);
	font-weight: 600;
	padding: 14px 16px;
	position: sticky;
	text-align: left;
	top: 0;
	white-space: nowrap;
	z-index: 2;
}

/* Rounded corner on the first header cell */
table.nf-table thead th:first-child {
	border-top-left-radius: 12px;
}

/* Rounded corner on the last header cell */
table.nf-table thead th:last-child {
	border-top-right-radius: 12px;
}

/* Body cells: light row dividers and top-aligned content */
table.nf-table tbody th,
table.nf-table tbody td {
	background: var(--abs-white);
	border-bottom: 1px solid var(--pri-neutral);
	font-weight: 400;
	padding: 14px 16px;
	vertical-align: top;
}

/* On large screens, add wider horizontal padding */
@media (min-width:992px) {
	/* Wider padding for header and body cells on desktop */
	table.nf-table thead th,
	table.nf-table tbody th,
	table.nf-table tbody td {
		padding-left: 20px;
		padding-right: 20px;
	}

}

/* Zebra striping for better row scanning */
table.nf-table.is-striped tbody tr:nth-child(odd) td,
table.nf-table.is-striped tbody tr:nth-child(odd) th {
	background: var(--pri-neutral);
}

/* Bordered table variant with clipped radius */
table.nf-table.is-bordered {
	border-radius: 12px;
	border: 1px solid var(--pri-neutral);
	overflow: hidden;
}

/* Row hover highlight for interactive tables */
table.nf-table.is-hover tbody tr:hover td,
table.nf-table.is-hover tbody tr:hover th {
	background: var(--pri-tint);
}

/* Selected row state using a subtle brand tint */
table.nf-table tr.is-selected td,
table.nf-table tr.is-selected th {
	background: color-mix(in srgb, var(--pri-base) 12%, var(--abs-white));
}

/* Utility: right-align numeric values */
table.nf-table .is-numeric {
	text-align: right;
}

/* Utility: sticky first column that keeps its background */
table.nf-table .is-sticky-col {
	background: inherit;
	left: 0;
	position: sticky;
	z-index: 1;
}

/* Links in cells use brand color and no underline */
table.nf-table a {
	color: var(--pri-base);
	text-decoration: none;
}

/* Underline links on hover for clarity */
table.nf-table a:hover {
	text-decoration: underline;
}

/* Compact density variant reduces font size */
table.nf-table.is-compact {
	font-size: 13px;
}

/* Compact density: tighter cell padding */
table.nf-table.is-compact thead th,
table.nf-table.is-compact tbody th,
table.nf-table.is-compact tbody td {
	padding: 8px 12px;
}

/* Table footer: subtle background and strong top rule */
table.nf-table tfoot td,
table.nf-table tfoot th {
	background: #FAFCFD;
	border-top: 1px solid var(--sec-neutral);
	color: var(--sec-neutral);
	padding: 14px 16px;
}

/* Remove default outlines for focusable elements inside table */
table.nf-table:where(a, button, [tabindex]) {
	outline: none;
}

/* Accessible focus ring using brand color mix */
table.nf-table:where(a, button, [tabindex]):focus-visible {
	border-radius: 6px;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--pri-base) 35%, transparent);
}

/* Mobile stacked variant for narrow screens */
@media (max-width:640px) {
	/* Convert table to block layout on small screens */
	table.nf-table.is-stacked {
		display: block;
	}

	/* Hide native header; labels come from data-label */
	table.nf-table.is-stacked thead {
		display: none;
	}

	/* Stack rows and cells vertically at full width */
	table.nf-table.is-stacked tbody,
	table.nf-table.is-stacked tr,
	table.nf-table.is-stacked td,
	table.nf-table.is-stacked th {
		display: block;
		width: 100%;
	}

	/* Visual separator between stacked rows */
	table.nf-table.is-stacked tbody tr {
		border-bottom: 1px solid var(--pri-neutral);
		padding: 8px 0;
	}

	/* Comfortable stacked cell padding */
	table.nf-table.is-stacked tbody td,
	table.nf-table.is-stacked tbody th {
		padding: 10px 16px;
	}

	/* Pseudo-label that mirrors header text via data-label */
	table.nf-table.is-stacked tbody td::before,
	table.nf-table.is-stacked tbody th::before {
		color: var(--sec-neutral);
		content: attr(data-label);
		display: block;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .02em;
		margin-bottom: 4px;
		text-transform: uppercase;
	}

}

/* -------------------------------------------------------------------------------- */
/*                                     Buttons                                      */
/* -------------------------------------------------------------------------------- */

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-dark {
	align-content: center;
	border-radius: 25px;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	height: 48px;
	margin-bottom: 4px;
	min-width: 180px;
	padding: 0px 1.35em;
	text-align: center;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.2s;
}

.btn-primary {
	background-color: var(--pri-base);
	border: 2px solid var(--pri-base);
	color: var(--abs-black);
}

.btn-primary:hover {
	background-color: var(--sec-mid);
	border: 2px solid var(--sec-mid);
}

.btn-secondary {
	background-color: var(--pri-dark);
	border: 2px solid var(--pri-dark);
	color: var(--abs-white);
}

.btn-secondary:hover {
	background-color: var(--sec-mid);
	border: 2px solid var(--sec-mid);
}

.btn-outline,
.btn-outline-dark {
	background-color: transparent;
	border: 2px solid var(--sec-strong);
	color: var(--sec-strong);
}

.btn-outline:hover,
.btn-outline-dark:hover {
	background-color: var(--pri-tint);
	border: 2px solid var(--sec-mid);
	color: var(--sec-strong);
}

/* Explicit override for the dark outline variant */
.btn-outline-dark {
	border: 2px solid var(--abs-black);
}

.btn-outline-dark:hover {
	border: 2px solid var(--abs-black);
}

.btn-sm {
	font-size: 14px;
    height: auto;
    margin-bottom: 4px;
    min-width: auto;
    padding: 0px 10px;
}

/* Fixed, circular floating "Back to Top" button using brand tokens and tight icon/label stack. */
#back-to-top {
	-webkit-appearance: none;
	align-items: center;
	appearance: none;
	background-clip: padding-box;
	background-color: var(--pri-base);
	border-radius: 50%;
	border: 0;
	bottom: calc(16px + env(safe-area-inset-bottom));
	box-shadow: 0 14px 34px var(--nf-shadow), 0 3px 8px var(--nf-shadow);
	color: var(--abs-black);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	font-family: "Inter", Roboto, Arial, Helvetica, Verdana, sans-serif;
	font-size: 14px;
	font-weight: 400;
	gap: 0;
	height: 56px;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	min-width: 0;
	opacity: 0;
	outline: 0;
	padding: 0;
	pointer-events: none;
	position: fixed;
	right: calc(16px + env(safe-area-inset-right));
	text-transform: uppercase;
	transform: translateY(8px);
	transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease, background-color 160ms ease;
	width: 56px;
	z-index: 9999;
}

/* Visible state: enable pointer events and bring the button into place. */
#back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/* Font Awesome up-chevron icon placed above the label with tight spacing. */
#back-to-top::before {
	content: "\f106";
	display: block;
	font-family: FontAwesome;
	font-size: 30px;
	font-weight: 400;
	line-height: 25px;
}

/* Hover feedback: lighter brand surface and stronger elevation. */
#back-to-top:hover {
	background-color: var(--sec-mid);
	box-shadow: 0 16px 40px var(--nf-shadow), 0 6px 12px var(--nf-shadow);
}

/* Active feedback: subtle press-down translation. */
#back-to-top:active {
	transform: translateY(1px);
}

/* Accessible keyboard focus ring in brand color with offset. */
#back-to-top:focus-visible {
	outline-offset: 2px;
	outline: 2px solid var(--pri-dark);
}

.nf-share {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 48px;
}

.nf-share a {
	align-items: center;
	color: var(--abs-white);
	border-radius: 9999px;
	border: 2px solid var(--pri-base);
	color: var(--pri-base);
	display: inline-flex;
	font-size: 14px;
	height: 36px;
	justify-content: center;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
	width: 36px;
}

.nf-share a:hover {
	background: var(--pri-base);
	border-color: var(--pri-base);
	color: var(--abs-white);
}

@media (max-width:768px) {
	.nf-share {
		flex-direction: row;
		justify-content: center;
		min-width: 0;
	}

}

.nf-share-row {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin: 10px 0px;
	min-width: 48px;
}

.nf-share-row a,
.nf-share-row button {
	align-items: center;
	background-color: var(--abs-white);
	border-radius: 9999px;
	border: 2px solid var(--pri-base);
	color: var(--pri-base);
	display: inline-flex;
	font-size: 14px;
	height: 36px;
	justify-content: center;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
	width: 36px;
}

.nf-share-row a:hover,
.nf-share-row button:hover {
	background: var(--pri-base);
	border-color: var(--pri-base);
	color: var(--abs-white);
}

.pager {
	align-items: center;
	display: flex;
	gap: 16px;
	width: 100%;
}

.pager .back {
	margin-right: auto;
}

.pager .next {
	margin-left: auto;
}

@media (max-width:640px) {
	.pager {
		align-items: flex-start;
		flex-direction: column;
	}

	.pager .back,
	.pager .next {
		margin: 0;
	}

}

/* -------------------------------------------------------------------------------- */
/*                                 Tile Components                                  */
/* -------------------------------------------------------------------------------- */

/* --------------- */
/*  General Tiles  */
/* --------------- */

.nf-tiles {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
	margin-bottom: 20px;
	width: 100%;
}

.nf-tiles[data-max-col="4"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 290px));
}

.nf-tiles[data-max-col="3"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 400px));
}

.nf-tiles[data-max-col="2"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 610px));
}

.nf-tiles[data-max-col="1"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 100%));
}

.nf-tiles figure {
	background: var(--abs-white);
	border-radius: 8px;
	box-shadow: 0 4px 12px var(--nf-shadow);
	margin: 0px;
	padding: 24px;
	text-align: center;
	transition: box-shadow 0.3s ease;
}

/* Tile heading */
.nf-tiles figure h3 {
	color: var(--abs-black);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
}

/* Tile paragraph */
.nf-tiles figure p {
	color: var(--sec-neutral);
	font-size: 14px;
	line-height: 1.4;
}

/* Legacy text block */
.nf-tiles figure blockquote {
	color: var(--sec-neutral);
	font-size: 14px;
	line-height: 1.4;
	margin: 10px 0px;
	text-align: left;
}

.nf-tiles figure blockquote.quote {
	padding: 0px 20px;
	position: relative;
}

.nf-tiles figure blockquote.quote::before,
.nf-tiles figure blockquote.quote::after {
color: var(--pri-base);
	font-family: ui-serif, Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 800;
	position: absolute;
}

/* Opening mark: top-left, slightly above the box */
.nf-tiles figure blockquote.quote::before {
	content: "“";
	left: 0px;
	top: -10px;
}

/* Closing mark: bottom-right, slightly below the box */
.nf-tiles figure blockquote.quote::after {
	bottom: -10px;
	content: "”";
	right: 0px;
}

.nf-tiles figure .nf-tiles-separator {
	margin-bottom: 10px;
	text-align: left;
}

.nf-tiles figure .nf-tiles-separator:not(:last-of-type) {
	border-bottom: 1px solid var(--sec-neutral);
}

/* Vídeo content */
.nf-tiles figure iframe {
	aspect-ratio: 16 / 9;
	height: auto;
	width: 100%;
}

/* ------------ */
/*  Dash Style  */
/* ------------ */

/* Make the figure the host for the decorative dash and center its contents */
.nf-tiles .nf-tiles-dash {
	text-align: center;
}

/* Draw the dash above the title using a pseudo-element */
.nf-tiles .nf-tiles-dash::before {
	background: var(--pri-base);
	border-radius: 15%;
	content: "";
	display: block;
	height: 5px;
	margin: 0 auto 15px;
	transition: background-color .3s ease;
	width: 65px;
}

/* --------------- */
/*  Counter Style  */
/* --------------- */

/* Initialize the "tile" counter on any .nf-tiles that contains a .nf-tiles-counter */
.nf-tiles:has(.nf-tiles-counter) {
	counter-reset: tile;
}

/* Center-align the counter badge within its container */
.nf-tiles .nf-tiles-counter {
	text-align: center;
}

/* Draw the circular badge and insert the sequential number */
.nf-tiles .nf-tiles-counter::before {
	background: var(--pri-tint);
	border-radius: 50%;
	color: var(--sec-strong);
	content: counter(tile);
	counter-increment: tile;
	display: inline-grid;
	font-size: 28px;
	font-weight: 700;
	height: 48px;
	line-height: 1;
	place-items: center;
	width: 48px;
}

/* ------------ */
/*  Icon Style  */
/* ------------ */

/* Host figure: center content and build the badge via ::before */
.nf-tiles .nf-tiles-icon {
	text-align: center;
}

.nf-tiles .nf-tiles-icon::before {
	background: var(--icon) center / 48px 48px no-repeat, var(--pri-tint);
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 78px;
	width: 78px;
}

/* Map data-icon values to the actual image via a CSS variable */
.nf-tiles .nf-tiles-icon[data-icon="analytics"] {
	--icon: url("/images/icons/analytics-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="bolt"] {
	--icon: url("/images/icons/bolt-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="book"] {
	--icon: url("/images/icons/book-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="certification"] {
	--icon: url("/images/icons/certification-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="chart"] {
	--icon: url("/images/icons/chart-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="clipboard"] {
	--icon: url("/images/icons/clipboard-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="dossier"] {
	--icon: url("/images/icons/dossier-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="globe"] {
	--icon: url("/images/icons/globe-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="headset"] {
	--icon: url("/images/icons/headset-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="lock"] {
	--icon: url("/images/icons/lock-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="media"] {
	--icon: url("/images/icons/media-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="megaphone"] {
	--icon: url("/images/icons/megaphone-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="monitor"] {
	--icon: url("/images/icons/monitor-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="review"] {
	--icon: url("/images/icons/review-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="shield"] {
	--icon: url("/images/icons/shield-icon.svg");
}

.nf-tiles .nf-tiles-icon[data-icon="us-flag"] {
	--icon: url("/images/icons/us-flag-icon.svg");
}

/* ------------ */
/*  Logo Style  */
/* ------------ */
.nf-tiles .nf-tiles-logo.nf-tile-wide {
	grid-template-columns: 200px 1fr auto;
}

/* Logo image */
.nf-tiles .nf-tiles-logo img {
	margin: 0px auto 10px auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

/* ------------------ */
/*  Wide Tiles Style  */
/* ------------------ */

/* Full-width tile, in-line layout */
.nf-tiles .nf-tile-wide {
	align-items: center;
	display: grid;
	gap: 16px 24px;
	grid-column: 1 / -1;
	grid-template-columns: 78px 1fr auto;
	text-align: left;
}

/* Icon on the left of the grid */
.nf-tiles .nf-tile-wide::before {
	justify-self: center;
}

/* Typography adjusted for inline layout */
.nf-tiles .nf-tile-wide h3 {
	margin: 0 0 6px 0;
}

.nf-tiles.nf-tile-wide p {
	margin: 0;
}

/* Right-alignned button*/
.nf-tiles .nf-tile-wide .btn-outline {
	margin-left: 24px;
	white-space: nowrap;
}

/* Responsive: stacks on mobile */
@media (max-width:768px) {
	.nf-tiles .nf-tile-wide {
		grid-template-columns: 1fr !important;
		text-align: center;
	}

	.nf-tiles .nf-tile-wide::before {
		margin: 0 auto 8px;
	}

	.nf-tiles .nf-tile-wide .btn-outline {
		margin: 12px auto 0;
	}

}

/* ------------------ */
/*  Blog Tiles Style  */
/* ------------------ */

.nf-tiles .nf-tiles-blog {
	padding: 0px;
}

/* Clickable tile area */
.nf-tiles .nf-tiles-blog a {
	text-decoration: none;
}

/* Thumbnail image */
.nf-tiles .nf-tiles-blog a img {
	aspect-ratio: 16 / 9;
	border-radius: 8px 8px 0px 0px;
	width: 100%;
}

/* Caption wrapper */
.nf-tiles .nf-tiles-blog a figcaption {
	font-size: 13px;
	padding: 24px;
	text-align: left;
}

/* Caption headline */
.nf-tiles .nf-tiles-blog a figcaption h4 {
	color: var(--abs-black);
	font-size: 13px;
	font-weight: 600;
	margin: 12px 0px;
	text-align: left;
}

/* ------------------ */
/*  Card Tiles Style  */
/* ------------------ */

/* Spacing below the header for the filter bar */
.nf-card-filters {
	margin-bottom: 20px;
}

/* Visual style and sizing for all filter buttons */
.nf-card-filters button {
	align-content: center;
	background-color: transparent;
	border-radius: 25px;
	border: 2px solid var(--sec-strong);
	color: var(--sec-strong);
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	height: 48px;
	padding: 0px 1.35em;
	text-align: center;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.2s;
}

/* Hover feedback colors for filter buttons */
.nf-card-filters button:hover {
	background-color: var(--pri-tint);
	border: 2px solid var(--sec-mid);
	color: var(--sec-strong);
}

/* Responsive grid container and positioning context for cards */
.nf-card-tiles {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(0px, 250px));
	justify-content: center;
	margin-bottom: 20px;
	width: 100%;
	position: relative;
}

.nf-card-tiles[data-grid-size="3"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 400px));
}

/* Base animation properties and 3D perspective for each card wrapper */
.nf-card-tiles > div {
	perspective: 1000px;
	opacity: 1;
	transform: translateZ(0);
	transition: transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 360ms ease-out, box-shadow 240ms ease-out;
	will-change: transform, opacity;
}

/* Animate cards out with a subtle drop and disable interaction */
.nf-card-tiles.is-animating > div.is-hiding {
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px) scale(0.98);
}

/* Fully remove hidden cards from the layout flow */
.nf-card-tiles > div.is-hidden {
	display: none;
}

/* Initial state before a card animates into view */
.nf-card-tiles > div.is-appearing {
	opacity: 0;
	transform: translateY(10px) scale(.98);
}

/* Target state during the appearance animation */
.nf-card-tiles.is-animating > div.is-appearing.is-active {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Honor reduced-motion preference for move/fade transitions */
@media (prefers-reduced-motion:reduce) {
	.nf-card-tiles > div {
		transition: none !important;
	}
}

/* Flip host: sized, elevated figure with 3D context */
.nf-card-tiles > div figure {
	background: var(--abs-white);
	border-radius: 8px;
	box-shadow: 0px 4px 12px var(--nf-shadow);
	font-size: 14px;
	height: 370px;
	margin: 0px;
	overflow: hidden;
	position: relative;
	text-align: center;
	transform-style: preserve-3d;
	transition: transform .6s ease;
	will-change: transform;
}

/* Flip faces: front and back share the same absolute box */
.nf-card-tiles > div figure .front,
.nf-card-tiles > div figure .back {
	border-radius: 8px;
	display: block;
	inset: 0;
	position: absolute;
}

/* Front face shown by default with mid-flip swap timing */
.nf-card-tiles > div figure .front {
	opacity: 1;
	transition: opacity 0s linear .2s, z-index 0s linear .2s;
	z-index: 2;
}

/* Back face pre-rotated and styled for contrast */
.nf-card-tiles > div figure .back {
	background: var(--pri-dark);
	color: var(--abs-white);
	opacity: 0;
	transform: rotateY(180deg);
	transition: opacity 0s linear .2s, z-index 0s linear .2s;
	z-index: 1;
}

/* Rotate the entire card on hover to perform the flip */
.nf-card-tiles > div:hover > figure {
	transform: rotateY(180deg);
}

/* During flip: front goes under and becomes invisible midway */
.nf-card-tiles > div:hover > figure .front {
	opacity: 0;
	transition: opacity 0s linear .2s, z-index 0s linear .2s;
	z-index: 1;
}

/* During flip: back comes to front and becomes visible midway */
.nf-card-tiles > div:hover > figure .back {
	opacity: 1;
	transition: opacity 0s linear .2s, z-index 0s linear .2s;
	z-index: 2;
}

/* Shared visual baseline for figures inside the grid */
.nf-card-tiles figure {
	background: var(--abs-white);
	border-radius: 8px;
	box-shadow: 0 4px 12px var(--nf-shadow);
	margin: 0px;
	padding: 0px;
	text-align: center;
	transition: box-shadow 0.2s ease;
}

/* Sized top image with rounded top corners on the front */
.nf-card-tiles figure .front .picture {
	border-radius: 8px 8px 0px 0px;
	height: 250px;
	width: 100%;
}

/* Sized top image with rounded top corners on the front */
.nf-card-tiles figure .front .logo {
	display: flex;
	height: 130px;
	justify-content: center;
	padding: 10px;
	place-items: center;
}

.nf-card-tiles figure .front .logo img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

/* Spacing for the front caption block */
.nf-card-tiles figure .front figcaption {
	padding: 10px;
}

/* Emphasized staff name on the front side */
.nf-card-tiles figure .front .name {
	color: var(--sec-strong);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}

/* Emphasized staff name on the front side */
.nf-card-tiles figure .front .short-text {
-webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 0px 10px;
  text-align: center;
  width: 100%;
 }

/* Subtle location styling under the name */
.nf-card-tiles figure .front .location {
	color: var(--sec-neutral);
	font-size: 12px;
	margin-top: 5px;
}

/* Prepend a map-pin icon to the location text */
.nf-card-tiles figure .front .location::before {
	content: "\f041";
	font-family: FontAwesome;
}

/* Back caption container with full-height layout and scrolling */
.nf-card-tiles figure .back figcaption {
	display: flow-root;
	height: 100%;
	padding: 16px 20px;
	position: relative;
}

/* Dock the back-side button group to the bottom edge */
.nf-card-tiles figure .back figcaption .button-group {
	bottom: 0px;
	position: absolute;
}

/* Back-side tab panels are hidden by default and scrollable */
.nf-card-tiles figure .back [data-card-category] {
	display: none;
	height: calc(100% - 48px);
	overflow-y: auto;
	text-align: left;
}

/* Default back tab when no radio is checked: show industry */
.nf-card-tiles figure .back figcaption:not(:has(.button-group input[type="radio"]:checked)) [data-card-category="industry"] {
	display: block;
}

/* Show industry when the first radio is selected */
.nf-card-tiles figure .back figcaption:has(.button-group input[type="radio"]:nth-of-type(1):checked) [data-card-category="industry"] {
	display: block;
}

/* Show personal when the second radio is selected */
.nf-card-tiles figure .back figcaption:has(.button-group input[type="radio"]:nth-of-type(2):checked) [data-card-category="personal"] {
	display: block;
}

/* Visually hide the radios while keeping them accessible */
.nf-card-tiles figure .back .button-group input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* Horizontal layout for the back-side button group */
.nf-card-tiles figure .back .button-group {
	display: grid;
	grid-auto-flow: column;
	gap: 8px;
}

/* Default appearance for back-side tab labels */
.nf-card-tiles figure .back .button-group label {
	padding: 8px 12px;
	border: 1px solid var(--sec-neutral);
	border-radius: 6px;
	cursor: pointer;
}

/* Emphasized tab label style within back figcaption group */
.nf-card-tiles figure .back figcaption .button-group label {
	align-content: center;
	background-color: transparent;
	border-color: var(--sec-strong);
	border-radius: 0px;
	border-style: solid;
	border-width: 2px 2px 0px 2px;
	color: var(--abs-white);
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	height: 48px;
	padding: 0px 1.35em;
	text-align: center;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.2s;
}

/* Hover feedback for back-side tab labels */
.nf-card-tiles figure .back figcaption .button-group label:hover {
	background-color: var(--pri-tint);
	border-color: var(--sec-mid);
	color: var(--sec-strong);
}

/* Active style for the first tab label when its radio is checked */
.nf-card-tiles figure .back .button-group input[type="radio"]:nth-of-type(1):checked ~ label:nth-of-type(1) {
	background-color: var(--pri-tint);
	border-color: var(--sec-mid);
	color: var(--sec-strong);
}

/* Active style for the second tab label when its radio is checked */
.nf-card-tiles figure .back .button-group input[type="radio"]:nth-of-type(2):checked ~ label:nth-of-type(2) {
	background-color: var(--pri-tint);
	border-color: var(--sec-mid);
	color: var(--sec-strong);
}

/* Disable flip rotations and swaps when reduced motion is requested */
@media (prefers-reduced-motion:reduce) {
	.nf-card-tiles > div figure {
		transform: none !important;
	}
	.nf-card-tiles > div figure .front,
	.nf-card-tiles > div figure .back {
		transition: none !important;
	}
}

/* Quote text container: remove default margins, add side padding for marks, position context, center text */
.nf-card-tiles figure .back figcaption:has(blockquote) {
}

.nf-card-tiles figure .back figcaption blockquote {
	margin: 10px 0px;
	padding: 0px;
	position: relative;
	text-align: left;
	max-height: 100%;
	overflow-y: auto;
}

.nf-card-tiles figure .back figcaption blockquote:has(+ .button-group) {
	max-height: calc(100% - 50px);
	overflow-y: auto;
}

/* Decorative quote glyphs: large serif marks in 46×46 boxes, absolutely positioned and centered */
.nf-card-tiles figure .back figcaption blockquote.quote::before,
.nf-card-tiles figure .back figcaption blockquote.quote::after {
	color: var(--abs-white);
	display: grid;
	font-family: ui-serif, Georgia, "Times New Roman", serif;
	font-size: 80px;
	font-weight: 800;
	height: 46px;
	place-items: center;
	position: absolute;
	width: 46px;
}

/* Opening mark: top-left, slightly above the box */
.nf-card-tiles figure .back figcaption blockquote.quote::before {
	content: "“";
	left: 0px;
	top: -20px;
}

/* Closing mark: bottom-right, slightly below the box */
.nf-card-tiles figure .back figcaption blockquote.quote::after {
	bottom: -20px;
	content: "”";
	right: 0px;
}

/* -------------------------------------------------------------------------------- */
/*                                 Section Headings                                 */
/* -------------------------------------------------------------------------------- */

.nf-section-title {
	font-weight: 700;
	text-align: center;
}

h1.nf-section-title {
	font-size: 34px;
}

h2.nf-section-title {
	font-size: 28px;
}

.nf-section-title:has(+ .nf-section-subtitle) {
	margin-bottom: 5px;
}

.nf-section-subtitle {
	color: var(--sec-neutral);
	font-size: 16px;
	margin-bottom: 23px;
	margin-top: 0px;
}

/* -------------------------------------------------------------------------------- */
/*                                   Bottom Rail                                    */
/* -------------------------------------------------------------------------------- */

.nf-bottom-rail {
	align-items: center;
	display: flex;
	gap: 16px;
	padding: 12px 0;
	width: 100%;
}

.nf-bottom-rail::before {
	background: var(--sec-neutral);
	border-radius: 8px;
	content: "";
	flex: 1 1 auto;
	height: 4px;
}

.nf-bottom-rail .btn-outline {
	align-items: center;
	display: inline-flex;
	gap: 0.5rem;
}

.nf-bottom-rail .btn-outline::after {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	content: "\f107";
	font-family: FontAwesome;
	font-size: 0.95em;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	transform: rotate(-90deg);
}

/* -------------------------------------------------------------------------------- */
/*                                      Banner                                      */
/* -------------------------------------------------------------------------------- */

/* Section container */
.nf-section-banner {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 344px;
}

.nf-section-banner[data-banner="mining-metals"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: url("/images/slideshow/3416-newsfile-sliders-MINING.jpg");
}

.nf-section-banner[data-banner="cannabis"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: url("/images/slideshow/3416-newsfile-sliders-CANNABIS.jpg");
}

.nf-section-banner[data-banner="technology"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: url("/images/slideshow/3416-newsfile-sliders-TECHNOLOGY.jpg");
}

.nf-section-banner[data-banner="energy"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: url("/images/slideshow/3416-newsfile-sliders-ENERGY.jpg");
}

.nf-section-banner[data-banner="health"] {
	--header-color: var(--abs-black);
	--text-color: var(--abs-black);
	background-image: url("/images/slideshow/3416-newsfile-sliders-HEALTH.jpg");
}

.nf-section-banner[data-banner="1"] {
	--header-color: var(--abs-black);
	--text-color: var(--abs-black);
	background-image: url("/images/banners/cta_bg_01.png");
}

.nf-section-banner[data-banner="2"] {
	--header-color: var(--pri-base);
	--text-color: var(--abs-white);
	background-image: url("/images/banners/cta_bg_02.png");
}

.nf-section-banner[data-banner="3"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: url("/images/banners/cta_bg_03.png");
}

.nf-section-banner[data-banner="4"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: url("/images/banners/cta_bg_04.png");
}

/* Content wrapper */
.nf-section-banner .nf-section-banner-text {
	align-self: center;
	width: 100%;
}

/* Heading */
.nf-section-banner .nf-section-banner-text h1 {
	color: var(--header-color);
	font-size: clamp(28px, 7vw, 50px);
	line-height: 1.15;
	text-wrap: balance;
}

/* Paragraph */
.nf-section-banner .nf-section-banner-text p {
	color: var(--text-color);
	font-size: clamp(14px, 4.5vw, 20px);
	line-height: 1.5;
	margin-top: 20px
}

/* -------------------------------------------------------------------------------- */
/*                                    CTA Bottom                                    */
/* -------------------------------------------------------------------------------- */

/* Content wrapper */
#nf-page #nf-cta-bottom .nf-cta-bottom-text {
	max-width: 520px;
	width: 100%;
}

/* Heading */
#nf-page #nf-cta-bottom .nf-cta-bottom-text h1 {
	font-size: clamp(28px, 8vw, 50px);
	line-height: 1.15;
	text-wrap: balance;
}

/* Paragraph */
#nf-page #nf-cta-bottom .nf-cta-bottom-text p {
	font-size: clamp(14px, 4.5vw, 20px);
	line-height: 1.5;
}

/* -------------------------------------------------------------------------------- */
/*                                      Quote                                       */
/* -------------------------------------------------------------------------------- */

/* Quote text container: remove default margins, add side padding for marks, position context, center text */
.nf-quote blockquote {
	margin: 0px;
	padding: 0px 50px;
	position: relative;
	text-align: center;
}

/* Decorative quote glyphs: large serif marks in 46×46 boxes, absolutely positioned and centered */
.nf-quote blockquote::before,
.nf-quote blockquote::after {
	color: var(--sec-strong);
	display: grid;
	font-family: ui-serif, Georgia, "Times New Roman", serif;
	font-size: 80px;
	font-weight: 800;
	height: 46px;
	place-items: center;
	position: absolute;
	width: 46px;
}

/* Opening mark: top-left, slightly above the box */
.nf-quote blockquote::before {
	content: "“";
	left: 0px;
	top: -20px;
}

/* Closing mark: bottom-right, slightly below the box */
.nf-quote blockquote::after {
	bottom: -20px;
	content: "”";
	right: 0px;
}

/* Attribution row: right-aligned */
.nf-quote figcaption {
	text-align: right;
}

/* Author line: block layout with extra top spacing */
.nf-quote figcaption cite {
	display: block;
	margin-top: 30px;
}

/* -------------------------------------------------------------------------------- */
/*                                 Brands Carousel                                  */
/* -------------------------------------------------------------------------------- */

/* Section container */
section .nf-container:has(.nf-marquee) {
	max-width: 100vw;
}

/* Marquee (outer shell) */
.nf-marquee {
	display: flex;
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0;
	width: 100%;
}

/* Each direct child track spans full width */
.nf-marquee > * {
	flex: 0 0 100%;
}

/* Track (animated row of logos) */
.nf-marquee .nf-marquee-track {
	animation: scrolling 10s linear infinite;
	display: flex;
	gap: 40px;
	padding-right: 40px;
	will-change: transform;
}

/* Logo cell */
.nf-marquee .nf-marquee-track .nf-marquee-seq {
	align-items: center;
	display: grid;
	justify-content: center;
	width: 100%;
}

/* Logo image */
.nf-marquee .nf-marquee-track .nf-marquee-seq img {
	display: block;
	max-height: 200px;
	max-width: 200px;
}

/* Pause on hover (accessibility: gives user control) */
.nf-marquee:hover .nf-marquee-track {
	animation-play-state: paused;
}

/* Keyframes */
@keyframes scrolling {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}

}

/* -------------------------------------------------------------------------------- */
/*                                   Splited List                                   */
/* -------------------------------------------------------------------------------- */
ul.two-cols {
  column-count: 2;
  column-gap: 10rem;
  list-style-position: inside;
}

ul.two-cols li {
  break-inside: avoid;
}

@media (max-width:625px) {
	ul.two-cols {
	  column-count: 1;
	}

}


/* -------------------------------------------------------------------------------- */
/*                                    Lined List                                    */
/* -------------------------------------------------------------------------------- */

.nf-lined-list {
	display: block;
	width: 100%;
}

.nf-lined-list figure {
	margin: 0px 0px 24px 0px;
	padding-left: 16px;
	position: relative;
}

.nf-lined-list figure:last-child {
	margin-bottom: 0px;
}

.nf-lined-list figure::before {
	background-color: var(--pri-base);
	border-radius: 2px;
	content: "";
	height: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 4px;
}

.nf-lined-list figure h3 {
	color: var(--abs-black);
	margin: 0 0 6px 0;
}

.nf-lined-list figure p {
	color: var(--sec-neutral);
	margin: 0px;
}

.nf-lined-list--grid {
	display: grid;
	row-gap: 36px;
}

.nf-lined-list--grid .nf-row {
	align-items: center;
	column-gap: 32px;
	display: grid;
	grid-template-columns: minmax(180px, 1fr) repeat(4, minmax(160px, 1fr));
	margin: 0px;
	padding-left: 16px;
	position: relative;
	row-gap: 16px;
}

.nf-lined-list--grid>.nf-row::before {
	background-color: var(--pri-base);
	border-radius: 2px;
	content: "";
	height: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 4px;
}

.nf-lined-list--grid>.nf-row h3 {
	color: var(--abs-black);
	margin: 0;
}

.nf-logos {
	display: grid;
	grid-template-rows: repeat(2, auto);
	row-gap: 22px;
}

.nf-logo {
	align-items: center;
	display: flex;
	justify-content: center;
}

.nf-logo img,
.nf-logo svg {
	max-height: 28px;
	max-width: 100%;
	width: auto;
}

@media (max-width:1024px) {
	.nf-lined-list--grid>.nf-row {
		column-gap: 24px;
		grid-template-columns: minmax(200px, 1fr) repeat(3, minmax(140px, 1fr));
	}

}

@media (max-width:768px) {
	.nf-lined-list--grid {
		row-gap: 24px;
	}

	.nf-lined-list--grid>.nf-row {
		grid-template-columns: 1fr;
		row-gap: 14px;
	}

	.nf-logos {
		column-gap: 20px;
		grid-auto-rows: auto;
		grid-template-columns: repeat(2, minmax(120px, 1fr));
	}

}

@media (max-width:480px) {
	.nf-logo img,
	.nf-logo svg {
		max-height: 24px;
	}

	.nf-logos {
		grid-template-columns: repeat(2, minmax(100px, 1fr));
	}

}

/* -------------------------------------------------------------------------------- */
/*                                      Media                                       */
/* -------------------------------------------------------------------------------- */

.nf-media {
	display: flex;
	flex-direction: row !important;
	align-items: flex-start;
	gap: 24px;
}

.nf-media > iframe {
	display: block;
	flex: 0 0 750px;
	max-width: 750px;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

.nf-media > div {
	flex: 1 1 0;
	min-width: 280px;
}

@media (max-width:1100px) {
	.nf-media {
		flex-direction: column !important;
	}

	.nf-media > iframe {
		max-width: 100%;
		flex-basis: auto;
	}

}

/* -------------------------------------------------------------------------------- */
/*                                  Input / Search                                  */
/* -------------------------------------------------------------------------------- */
.form-group {
	margin-bottom: 20px;
	width: 100%;
}

.form-row {
	align-items: center;
	display: flex;
	gap: 24px;
}

.form-row > *:last-child {
	margin-left: auto;
}

.nf-select {
	display: inline-block;
	position: relative;
}

.nf-select::before,
.nf-select::after {
	color: var(--pri-base);
	content: "";
	font-family: "Font Awesome 6 Free";
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
	position: absolute;
	right: 12px;
}

.nf-select::before {
	content: "\f077";
	top: 8px;
}

.nf-select::after {
	bottom: 8px;
	content: "\f078";
}

.nf-select select {
	-webkit-appearance: none;
	appearance: none;
	background-image: linear-gradient(var(--pri-base), var(--pri-base));
	background-position: right 36px center;
	background-repeat: no-repeat;
	background-size: 1px 60%;
	background: var(--abs-white);
	border-radius: 8px;
	border: 2px solid var(--pri-base);
	color: var(--abs-black);
	cursor: pointer;
	font: inherit;
	height: 38px;
	line-height: 1.2;
	padding: 0 56px 0 12px;
}

.nf-select select:focus {
	border-color: var(--pri-base);
	box-shadow: 0 0 0 3px rgba(64, 194, 204, .3);
	outline: none;
}

.nf-select select option[disabled][selected] {
	color: #8AA0AD;
}

.nf-input-btn {
	display: flex;
	align-items: center;
	height: 38px;
	border: 2px solid var(--pri-base);
	border-radius: 8px;
	background: var(--abs-white);
	overflow: hidden;
	max-width: 360px;
}

.nf-input-btn input {
	flex: 1;
	min-width: 0;
	border: 0;
	height: 100%;
	padding: 0 12px;
	font: inherit;
	color: var(--abs-black);
	background: transparent;
	outline: none;
}

.nf-input-btn button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 100%;
	border: 0;
	background: var(--abs-white);
	color: var(--pri-base);
	cursor: pointer;
	border-left: 1px solid var(--pri-base);
}

.nf-input-btn button:hover {
	background: var(--pri-base);
	color: var(--abs-white);
}

@media (max-width:640px) {
	.form-row {
		flex-wrap: wrap;
	}

	.form-row > * {
		flex: 1 1 100%;
		margin-left: 0;
	}

}
