/* home-critical.css — above-fold home / header / hero (blocking on front + home_page template).
 * Mega-menu subset stays in PHP (scanflow_print_megamenu_critical_css); full home.css loads deferred.
 * Keep in sync with overlapping rules in home.css when changing first-screen layout. */

/* --- Base + Bootstrap-like scaffolding (above-fold) --- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
}
html,
body {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: sen, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	line-height: 1.5;
}
a {
	color: #0d6efd;
	text-decoration: none;
}
a:hover {
	color: #0a58ca;
}
img,
svg {
	vertical-align: middle;
}
.img-fluid {
	max-width: 100%;
	height: auto;
}

/* Containers (header uses container-xl / container-fluid) */
.container-fluid {
	width: 100%;
	padding-right: calc(var(--bs-gutter-x, 0.75rem) * 1);
	padding-left: calc(var(--bs-gutter-x, 0.75rem) * 1);
	margin-right: auto;
	margin-left: auto;
}
.container-xl {
	width: 100%;
	padding-right: calc(var(--bs-gutter-x, 0.75rem) * 1);
	padding-left: calc(var(--bs-gutter-x, 0.75rem) * 1);
	margin-right: auto;
	margin-left: auto;
}

/* Display (header / nav) */
.d-none {
	display: none !important;
}
.d-block {
	display: block !important;
}
.d-flex {
	display: flex !important;
}
@media (min-width: 992px) {
	.d-lg-block {
		display: block !important;
	}
	.d-lg-none {
		display: none !important;
	}
}

/* Navbar core */
.navbar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0;
}
.navbar-expand-lg {
	flex-wrap: nowrap;
	justify-content: flex-start;
}
.navbar-brand {
	padding-top: 0.3125rem;
	padding-bottom: 0.3125rem;
	margin-right: 1rem;
	font-size: 1.25rem;
	text-decoration: none;
	white-space: nowrap;
}
.navbar-nav {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav {
		flex-direction: row;
	}
}
.navbar-nav .nav-link {
	padding-right: 0.5rem;
	padding-left: 0.5rem;
}
.navbar-toggler {
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0.375rem;
}
.collapse:not(.show) {
	display: none;
}
@media (min-width: 992px) {
	.navbar-expand-lg .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
}
.navbar-collapse {
	flex-grow: 1;
	align-items: center;
}

.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}
.bg-white {
	background-color: #fff !important;
}
.pt-0 {
	padding-top: 0 !important;
}
.me-auto {
	margin-right: auto !important;
}
.ms-auto {
	margin-left: auto !important;
}
.mt-3 {
	margin-top: 1rem !important;
}

/* Theme header (home.css / common) */
.navbar.padding-value {
	padding: 26px 50px;
	box-shadow: 0 0 81px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991.98px) {
	.navbar.padding-value {
		padding: 16px 20px;
	}
}
.header_menus {
	margin-left: 30px;
}
ul.navbar-nav li:hover .nav-link,
ul.navbar-nav li:focus .nav-link,
ul.navbar-nav li a.nav-link.active {
	color: #2b84ea;
	font-family: sen, sans-serif;
}
body ul.navbar-nav li.menu-item a {
	padding: 9px 12px;
}
body ul.navbar-nav li.current-menu-item a {
	background: #dee5f1;
	color: #2b84ea;
	font-weight: 500;
	padding: 9px 12px;
}
body ul.navbar-nav li a:hover {
	color: #2b84ea;
}
ul.navbar-nav li a {
	font-size: 1rem;
	color: #081b45;
	font-weight: 400;
	font-family: sen, sans-serif;
	white-space: normal;
}
li.nav-item {
	margin-top: 6px;
}
li.navbar-item {
	margin-top: 5px;
	margin-right: 16px;
	cursor: pointer;
}
.navbar-toggler-icon {
	display: inline-block;
	width: 1.9em;
	height: 1.9em;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
button.navbar-toggler,
button.navbar-toggler:focus {
	border: 0;
	color: #000;
	box-shadow: none;
}
.dropdown-menutop .dropdown-toggle::after,
.dropdown-menutop .dropdown-toggle-solution123::after,
.dropdown-menutop .dropdown-toggle-solution::after {
	display: none;
}

/* First-screen hero (home + landing) */
.hero-section {
	background: #081b44;
	margin-top: 77px;
}
.banner-video {
	position: relative;
	margin: 80px 40px 0;
	border-radius: 10px;
	min-height: 240px;
	background: #0a1f4d;
}
.banner-video:before {
	/* Use real <img fetchpriority="high"> for LCP (see home_page.php). */
	background: none !important;
	background-repeat: no-repeat !important;
	border-radius: 10px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 6px;
	content: "";
	max-width: 100%;
	background-size: cover;
	height: 100% !important;
}
picture.banner-video-lcp-wrap {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 6px;
	width: 100%;
	height: 100%;
	z-index: 0;
	max-width: 100%;
	pointer-events: none;
}
.banner-video-lcp {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}
.banner-video .custom-tabs .nav-link {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50px;
	color: #fff;
	font-weight: 600;
	padding: 0.6rem 2rem;
	margin: 0 10px;
	font-family: Figtree, sans-serif;
	letter-spacing: 5px;
	opacity: 0.5;
	font-size: 14px;
	text-transform: uppercase;
}
.banner-video .custom-tabs .nav-link.active {
	color: #fff !important;
	border-color: #fff;
	opacity: 1;
}
.banner-video .main-title {
	font-size: clamp(2rem, 5vw, 65px);
	font-weight: 400;
	color: #fff;
	font-family: Sen, sans-serif;
}
.banner-video .sub-text {
	color: #a2b1cc;
	font-size: clamp(1rem, 2.5vw, 25px);
	margin-top: 15px;
	font-family: Sen, sans-serif;
}
.banner-video-content {
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
	z-index: 1;
}
@media (max-width: 767.98px) {
	.banner-video {
		margin: 60px 16px 0;
		min-height: 200px;
	}
}
