/* Reset Code
   ================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	overflow-y: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Basic Styles
   ================================= */
html {
	height: 100%;
}
body {
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.2px;
	color: var(--color-body);
	-webkit-font-smoothing: antialiased;
	/* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
}

:root {
	--color-heading: #0f172a;
	--color-body: #334155;
	--color-body-soft: #475569;
	--color-surface: #ffffff;
	--color-surface-alt: #f8fafc;
	--color-border: #e2e8f0;
	--color-brand: #16a34a;
	--color-brand-soft: rgba(22, 163, 74, 0.14);
	--focus-ring: #f8fafc;
	--focus-ring-shadow: rgba(22, 163, 74, 0.3);
	--color-link: #0b5f2a;
	--color-link-hover: #084c21;
	--color-error: #b91c1c;
	--color-error-soft: #fee2e2;
	--color-dark: #081120;
	--shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 18px 50px rgba(15, 23, 42, 0.1);
	--radius-md: 16px;
}

/* Typography
   ================================= */
button, input[type="button"], input[type="reset"], input[type="submit"]{
	border: none;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	font-weight: inherit;
	color: #262626;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
	text-decoration: none;
	color: #262626;
	opacity: 0.9;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Montserrat', sans-serif;
	line-height: 1.15;
	margin: 0 0 10px;
	color: var(--color-heading);
}
h1{ letter-spacing: -0.04em; }
h2{ 
	font-size: 36px;
	font-weight: 650;
	line-height: 1.2;
	letter-spacing: -0.04em;
	text-transform: none;
    position: relative;
}
h2:before{
	background-color: var(--color-brand);
    content: '';
	height: 3px;
	width: 64px;
    position: absolute;
    left: 0;
	bottom: -12px;
	border-radius: 999px;
}
h3{
	font-size: 24px;
	font-weight: 650;
	text-transform: none;
}
h3, h4{ letter-spacing: -0.01em; }
h4{
	font-size: 18px;
	font-weight: 575;
	text-transform: none;
}
p{ margin: 0 0 16px; }

/* Links
   ================================= */
a, a:visited, a:focus {
	text-decoration: none;
	outline: 0;
	color: var(--color-link);
}
a:hover {
	text-decoration: underline;
	color: var(--color-link-hover);
}
a[href="#"]{
	pointer-events: none;
	cursor: default;
}
a.text-white:hover{
	text-decoration: none;
	color: #fff;
	opacity: 1;
}
p a, p a:visited {
	line-height: inherit;
}

a:not(.btn):not(.b-btn):not(.btn-brand):not(.btn-outline-light):not(.b-nav-btn) {
	text-decoration-thickness: 1.5px;
	text-underline-offset: 0.16em;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
	outline: 3px solid var(--focus-ring);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px var(--focus-ring-shadow);
}

label,
.form-label {
	display: inline-block;
	margin-bottom: 8px;
	font-weight: 700;
	color: var(--color-heading);
	line-height: 1.4;
}

.form-help,
.field-help,
.help-text {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-body-soft);
}

.form-error,
.field-error,
.error-text,
[role="alert"].form-message-error {
	display: block;
	margin-top: 8px;
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--color-error-soft);
	color: var(--color-error);
	font-weight: 600;
	line-height: 1.55;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"],
.is-invalid {
	border-color: var(--color-error) !important;
	box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.16);
}

/* Placeholder Color
   ================================= */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
   color: #64748b !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder{ /* Firefox 18- */
   color: #64748b !important;  
}
input::-moz-placeholder,
textarea::-moz-placeholder{  /* Firefox 19+ */
   color: #64748b !important;  
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder{  
   color: #64748b !important;  
}

/* Background Color
   ================================= */
.bg-white{ background-color: #fff; }
.bg-grey{ background-color: var(--color-surface-alt); }
.bg-green{ background-color: var(--color-brand); }
.bg-dark{ background-color: var(--color-dark); }

/* Text Color
   ================================= */
.text-white{ color: #fff; }
.text-black{ color: var(--color-heading) }
.text-grey{ color: var(--color-body); }
.text-yellow{ color: var(--color-brand); }
.text-light{ color: rgba(255, 255, 255, 0.98); opacity: 1; }

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
	color: rgba(255, 255, 255, 0.98);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px var(--focus-ring-shadow);
}

label,
.form-label {
	display: inline-block;
	margin-bottom: 8px;
	font-weight: 700;
	color: var(--color-heading);
	line-height: 1.4;
}

.form-help,
.field-help,
.help-text {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-body-soft);
}

.form-error,
.field-error,
.error-text,
[role="alert"].form-message-error {
	display: block;
	margin-top: 8px;
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--color-error-soft);
	color: var(--color-error);
	font-weight: 600;
	line-height: 1.55;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"],
.is-invalid {
	border-color: var(--color-error) !important;
	box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.16);
}

/* Placeholder Color
   ================================= */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
	color: #64748b !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder{ /* Firefox 18- */
	color: #64748b !important;  
}
input::-moz-placeholder,
textarea::-moz-placeholder{  /* Firefox 19+ */
	color: #64748b !important;  
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder{  
	color: #64748b !important;  
}

/* Background Color
   ================================= */
.bg-white{ background-color: #fff; }
.bg-grey{ background-color: var(--color-surface-alt); }
.bg-green{ background-color: var(--color-brand); }
.bg-dark{ background-color: var(--color-dark); }

/* Text Color
   ================================= */
.text-white{ color: #fff; }
.text-black{ color: var(--color-heading) }
.text-grey{ color: var(--color-body); }
.text-yellow{ color: var(--color-brand); }
.text-light{ color: rgba(255, 255, 255, 0.98); opacity: 1; }

/* Border
   ================================= */
.bd{ border: 1px solid #dddddd}
.bd-top{ border-top: 1px solid var(--color-border); }
.bd-bottom{ border-bottom: 1px solid var(--color-border); }
.bd-bottom-white{ border-bottom: 2px solid #fff;}
.bd-grey{ border: 1px solid var(--color-border); }
.bd-top-dark{ border-top: 1px solid #333; }

/* Verticle Align
   ================================= */
.display-table{
    width: 100%;
    height: 100%;
    display: table;
}
.table-cell{
    display: table-cell;
    vertical-align: middle;
}

/* Verticle Align
   ================================= */
.display-block{ display: block; }
.display-inline-block{ display: inline-block; }

.sr-only,
.visually-hidden-focusable:not(:focus):not(:focus-within){
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link{
	position: absolute;
	left: 16px;
	top: -48px;
	padding: 12px 18px;
	background: #ffffff;
	color: var(--color-heading);
	border-radius: 999px;
	box-shadow: var(--shadow-md);
	z-index: 2000;
	font-weight: 700;
	transition: top 0.2s ease;
}

.skip-link:focus{
	top: 16px;
	text-decoration: none;
}

/* Border Radius
   ================================= */
.bdrs-2{ border-radius: 2px; }
.bdrs-3{ border-radius: 3px; }
.bdrs-4{ border-radius: 4px; }
.bdrs-5{ border-radius: 5px; }
.bdrs-10{ border-radius: 10px; }
.bdrs-50{ border-radius: 50%; }

/* Image Width
   ================================= */
.img-w-80{
	width: 80px;
	height: 80px;
}
.img-w-90{
	width: 90px;
	height: 90px;
}
.img-w-100{
	width: 100px;
	height: 100px;
}
.img-w-120{
	width: 120px;
	height: 120px;
}
.img-w-150{
	width: 150px;
	height: 150px;
}

img{
	max-width: 100%;
	height: auto;
}

/* Line Height
   ================================= */
.lh-40{ line-height: 40px; }
.lh-60{ line-height: 60px; }
.lh-80{ line-height: 80px; }
.lh-90{ line-height: 90px; }
.lh-100{ line-height: 100px; }


/* Text Align
   ================================= */
.text-center{ text-align: center; }
.text-left{ text-align: left; }
.text-right{ text-align: right; }

/* Text Align
   ================================= */
.box-shadow{
	-webkit-box-shadow: 0 13px 20px rgba(0, 0, 0, 0.2);
	box-shadow: 0 13px 20px rgba(0, 0, 0, 0.2);
}
.box-shadow-dark{
	-webkit-box-shadow: 1px 1px 10px 0px #999;
	box-shadow: 1px 1px 10px 0px #999;
}

/* Text Transform
   ================================= */
.tt-u{ text-transform: uppercase; }
.tt-c{ text-transform: capitalize; }
.tt-l{ text-transform: lowercase; }

/* Padding
   ================================= */
.padding{ padding: 96px 0; }
.padding-100{ padding: 100px 0; }
.padding-120{ padding: 120px 0; }
.padding-110{ padding: 80px 120px; }
.no-padding{ padding: 0; }
.padding-5{ padding: 5px; }
.padding-10{ padding: 10px; }
.padding-15{ padding: 15px; }
.padding-20{ padding: 20px; }
.padding-25{ padding: 25px; }
.padding-30{ padding: 30px; }
.padding-40{ padding: 40px; }
.padding-50{ padding: 50px; }
.padding-80{ padding: 80px; }
.ptb-10{ padding-top: 10px; padding-bottom: 10px; }
.ptb-15{ padding-top: 15px; padding-bottom: 15px; }
.ptb-20{ padding-top: 20px; padding-bottom: 20px; }
.ptb-25{ padding-top: 25px; padding-bottom: 25px; }
.ptb-30{ padding-top: 30px; padding-bottom: 30px; }
.ptb-35{ padding-top: 35px; padding-bottom: 35px; }
.ptb-40{ padding-top: 40px; padding-bottom: 40px; }
.ptb-45{ padding-top: 45px; padding-bottom: 45px; }
.ptb-50{ padding-top: 50px; padding-bottom: 50px; }
.ptb-55{ padding-top: 55px; padding-bottom: 55px; }
.ptb-60{ padding-top: 60px; padding-bottom: 60px; }
.ptb-65{ padding-top: 65px; padding-bottom: 65px; }
.ptb-70{ padding-top: 70px; padding-bottom: 70px; }
.ptb-75{ padding-top: 75px; padding-bottom: 75px; }
.ptb-90{ padding-top: 90px; padding-bottom: 90px; }
.ptb-95{ padding-top: 95px; padding-bottom: 95px; }
.ptb-100{ padding-top: 100px; padding-bottom: 100px; }
.ptb-115{ padding-top: 115px; padding-bottom: 115px; }
.ptb-140{ padding-top: 140px; padding-bottom: 140px; }
.pb-5{ padding-bottom: 5px; }
.pb-10{ padding-bottom: 10px; }
.pb-15{ padding-bottom: 15px; }
.pb-20{ padding-bottom: 20px; }
.pb-25{ padding-bottom: 25px; }
.pb-30{ padding-bottom: 30px; }
.pb-35{ padding-bottom: 35px; }
.pb-40{ padding-bottom: 40px; }
.pb-45{ padding-bottom: 45px; }
.pb-50{ padding-bottom: 50px; }
.pb-55{ padding-bottom: 55px; }
.pb-60{ padding-bottom: 60px; }
.pb-70{ padding-bottom: 70px; }
.pb-80{ padding-bottom: 80px; }
.pt-5{ padding-top: 5px; }
.pt-10{ padding-top: 10px; }
.pt-15{ padding-top: 15px; }
.pt-20{ padding-top: 20px; }
.pt-25{ padding-top: 25px; }
.pt-30{ padding-top: 30px; }
.pt-35{ padding-top: 35px; }
.pt-40{ padding-top: 40px; }
.pt-45{ padding-top: 45px; }
.pt-50{ padding-top: 50px; }
.pt-55{ padding-top: 55px; }
.pt-60{ padding-top: 60px; }
.pl-30{ padding-left: 30px; }
.pl-35{ padding-left: 35px; }
.pl-40{ padding-left: 40px; }
.pl-45{ padding-left: 45px; }
.pl-50{ padding-left: 50px; }
.pr-15{ padding-right: 15px; }

/* Margin
   ================================= */
.margin-auto{ margin: 0 auto; }
.mb-5{ margin-bottom: 5px; }
.mb-10{ margin-bottom: 10px; }
.mb-15{ margin-bottom: 15px; }
.mb-20{ margin-bottom: 20px; }
.mb-25{ margin-bottom: 25px; }
.mb-30{ margin-bottom: 30px; }
.mb-35{ margin-bottom: 35px; }
.mb-40{ margin-bottom: 40px; }
.mb-45{ margin-bottom: 45px; }
.mb-50{ margin-bottom: 50px; }
.mb-55{ margin-bottom: 55px; }
.mb-60{ margin-bottom: 60px; }
.mb-100{ margin-bottom: 100px; }
.mt-5{ margin-top: 5px; }
.mt-10{ margin-top: 10px; }
.mt-15{ margin-top: 15px; }
.mt-20{ margin-top: 20px; }
.mt-25{ margin-top: 25px; }
.mt-30{ margin-top: 30px; }
.mt-35{ margin-top: 35px; }
.mt-40{ margin-top: 40px; }
.mt-45{ margin-top: 45px; }
.mt-50{ margin-top: 50px; }
.mt-55{ margin-top: 55px; }
.mt-60{ margin-top: 60px; }
.minus-mlr{ margin: 0 -15px; }
.minus-mtb{ margin: -15px 0; }
.minus-ml-15{ margin-left: -15px; }
.minus-mr-15{ margin-right: -15px; }
.minus-mt-20{ margin-top: -20px; }
.minus-mt-30{ margin-top: -30px; }
.minus-mt-40{ margin-top: -40px; }
.minus-mt-50{ margin-top: -50px; }
.minus-mt-60{ margin-top: -60px; }
.mius-mr-15{ margin-right: -15px; }
.no-margin{ margin: 0 !important; }
.ml-10{ margin-left: 10px; }
.ml-15{ margin-left: 15px; }
.ml-20{ margin-left: 20px; }
.ml-100{ margin-left: 100px; }
.mr-10{ margin-right: 10px; }
.mr-15{ margin-right: 15px; }
.mr-20{ margin-right: 20px; }
.mr-25{ margin-right: 25px; }

/* Font Size
   ================================= */
.fz-10{ font-size: 12px; line-height: 1.6; }
.fz-11{ font-size: 12px; line-height: 1.6; }
.fz-12{ font-size: 14px; line-height: 1.65; }
.fz-13{ font-size: 15px; line-height: 1.7; }
.fz-14{ font-size: 16px; line-height: 1.7; }
.fz-15{ font-size: 16px; line-height: 1.7; }
.fz-16{ font-size: 16px; }
.fz-17{ font-size: 17px; }
.fz-18{ font-size: 18px; }
.fz-19{ font-size: 19px; }
.fz-20{ font-size: 20px; }
.fz-21{ font-size: 21px; }
.fz-22{ font-size: 22px; }
.fz-23{ font-size: 23px; }
.fz-24{ font-size: 24px; }
.fz-25{ font-size: 25px; }
.fz-26{ font-size: 26px; }
.fz-27{ font-size: 27px; }
.fz-28{ font-size: 28px; }
.fz-29{ font-size: 29px; }
.fz-30{ font-size: 30px; }
.fz-35{ font-size: 35px; }
.fz-40{ font-size: 40px; }
.fz-45{ font-size: 45px; }
.fz-50{ font-size: 50px; }
.fz-55{ font-size: 55px; }
.fz-60{ font-size: 60px; }

/* Font Weight
   ================================= */
.fw-3{ font-weight: 300; }
.fw-4{ font-weight: 400; }
.fw-5{ font-weight: 500; }
.fw-6{ font-weight: 550; }
.fw-7{ font-weight: 600; }
.fw-8{ font-weight: 700; }
.fw-9{ font-weight: 800; }

/* Hero Height
   ================================= */
.height-300{ min-height: 300px; height: auto; }
.height-500{ min-height: 500px; height: auto; }
.height-550{ min-height: 550px; height: auto; }
.height-600{ min-height: 600px; height: auto; }
.height-650{ min-height: 650px; height: auto; }
.height-660{ min-height: 660px; height: auto; }
.height-670{ min-height: 670px; height: auto; }
.height-700{ min-height: 700px; height: auto; }
.height-750{ min-height: 750px; height: auto; }

/* Transition
   ================================= */
a, a:hover, img, button{
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* Image
   ================================= */
.img-w1,
.img-w1 img{ width: 100%; }
.img-w5 img{ width: 50%; }
.bg-img{
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
}

/* Position
   ================================= */
.pos-relative{ position: relative; }
.pos-absolute{ position: absolute; }
.pos-inherit{ position: inherit; }

/* Overflow
   ================================= */
.ov-hidden{ overflow: hidden; }

/* Button
   ================================= */
.btn-brand,
.btn-outline-light.brand-outline,
.btn-group-left .b-btn{ margin-right: 10px; }
.btn-group-right .b-btn{ margin-left: 10px; }
.btn-group-center .b-btn{ margin: 0 5px; }
.b-btn,
.btn-brand{
	background: linear-gradient(135deg, var(--color-brand), #22c55e);
	display: inline-block;
	min-height: 48px;
	padding: 14px 28px;
	font-size: 15px;
	line-height: 1.2;
	text-transform: none;
	text-align: center;
	color: #081120;
	font-weight: 700;
	letter-spacing: 0.01em;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(22, 163, 74, 0.28);
	border: 0;
}
.b-btn.btn-sm,
.btn-brand.btn-sm{
	padding: 10px 20px;
}
.b-btn:focus,
.b-btn:hover,
.btn-brand:focus,
.btn-brand:hover{
	color: #081120;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(22, 163, 74, 0.34);
}

.b-btn:focus-visible,
.btn-brand:focus-visible,
.btn-outline-light.brand-outline:focus-visible,
.b-nav-btn:focus-visible,
a:focus-visible {
	outline: 3px solid var(--focus-ring);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px var(--focus-ring-shadow);
	text-decoration: none;
}
.b-btn.btn-white,
.btn-outline-light.brand-outline{
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
    background-color: transparent;
	border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
	box-shadow: none;
}
.b-btn.btn-white:focus,
.b-btn.btn-white:hover,
.btn-outline-light.brand-outline:focus,
.btn-outline-light.brand-outline:hover{
	color: #081120;
	background-color: #fff;
}

.btn-outline-light.brand-outline {
	min-height: 48px;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
.b-btn::before,
.btn-brand::before{
	content: '';
	position: absolute; 
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    z-index: -1;
	background-color: rgba(255,255,255,0.25);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: translate(13%,-190%) rotate(30deg);
	transform: translate(13%,-190%) rotate(30deg);
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.b-btn::after,
.btn-brand::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    z-index: -1;
	background-color: rgba(255,255,255,0.25);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: translate(-13%,-190%) rotate(-30deg);
	transform: translate(-13%,-190%) rotate(-30deg);
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.b-btn::before,
.btn-brand::before{
	-webkit-transition-delay: 0.2s; /* Safari */
    transition-delay: 0.2s;
}
.b-btn:hover::before, .b-btn:hover::after,
.btn-brand:hover::before, .btn-brand:hover::after{
	-webkit-transform: translate(0,0);
	transform: translate(0,0);	
}

.learn-more{
    color: var(--color-body-soft);
}
.learn-more:hover{
	color: var(--color-heading);
	text-decoration: underline;
}

/* Preloader Styles */
#preloader{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    height: 100%;
    width: 100%;
    -webkit-transition: all .5s .5s ease;
    -moz-transition: all .5s .5s ease;
    transition: all .5s .2s ease;
}
.loader{
    position:absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    display: block;
    margin: auto;
    margin-top: -30px;
}
body.loaded #preloader{
    opacity: 0;
    visibility: hidden;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.header{
    width: 100%;
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
	background-color: transparent;
	box-shadow: none;
	backdrop-filter: none;
}
.header.nav-hidden{
	transform: translateY(-100%);
}
.fixed-top.header .header-bottom{
	padding: 8px 0;
}
.header.dark-header,
.fixed-top.header{ 
	background-color: rgba(8,17,32,0.96);
	backdrop-filter: blur(14px);
	box-shadow: 0 16px 40px rgba(2, 6, 23, 0.18);
}
.header.rgba-head{
	background-color: rgba(17,17,17,0.8);
}
.fixed-top.header.rgba-head{
	background-color: rgba(17,17,17,1);
}
/* Top Header */
.top-info li{
	display: inline-block;
	color: rgba(255, 255, 255, 0.98);
	margin-right: 15px;
}
.top-info li i{
	display: inline-block;
	width: 23px;
	height: 23px;
	border: 1px solid rgba(255, 255, 255, 0.92);
	color: rgba(255, 255, 255, 0.98);
	font-size: 9px;
	border-radius: 3px;
	text-align: center;
	line-height: 21px;
	margin-right: 5px;
}
.top-info li i.bi{
	font-size: 14px;
	line-height: 21px;
}
.top-info li a{
	color: rgba(255, 255, 255, 0.98);
}
.top-social li{
	margin-left: 5px;
}
ul.top-social li a{
	display: inline-block;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.92);
	color: rgba(255, 255, 255, 0.98);
	font-size: 13px;
	border-radius: 3px;
	text-align: center;
	line-height: 30px;
	opacity: 1;
}
ul.top-social li a:hover{
	background-color: var(--color-brand);
	border: 1px solid var(--color-brand);
}

/* Double Header */
.fixed-top.double-header{
	top: -49px;
	border: none;
}
.header.hide-top .header-top{
	display: none;
}
.fixed-top.header.hide-top{
	top: 0;
}
.header,
.fixed-top.header .header-bottom,
.fixed-top.header,
.fixed-top.double-header,
.header-bottom{
	transition: transform 0.38s ease, background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, top 0.38s ease;
}
/* Transparent Header */
.header-dark ul.nav > li > a,
.transparent-header ul.nav > li > a,
.transparent-header .navbar-links > li > a{
	color: #fff;
	opacity: 0.98;
}
.header-dark ul.nav > li > a:focus,
.header-dark ul.nav > li > a:hover,
.header-dark ul.nav > li.active > a,
.transparent-header ul.nav > li > a:focus,
.transparent-header ul.nav > li > a:hover,
.transparent-header ul.nav > li.active > a,
.transparent-header .navbar-links > li > a:focus,
.transparent-header .navbar-links > li > a:hover,
.transparent-header .navbar-links > li.active > a,
.transparent-header .navbar-links > li.current_page_item > a{
	color: #fff;
	opacity: 1;
}
.fixed-top.transparent-header .navbar-links > li > a,
.fixed-top.transparent-header ul.nav > li > a{
	color: #fff;
	opacity: 0.98;
}
.header-bd{
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fixed-top.transparent-header .social-icon-white li a{ color: #fff; opacity: 0.98; }
.fixed-top.transparent-header .social-icon-white li a:hover{ color: #fff; opacity: 1; }
.navbar{
    border: medium none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    margin: 0;
    position: relative;
}
.navbar-njm{
	background: transparent;
	margin-bottom: 0;
	border: 0;
	min-height: 78px;
	display: flex;
	align-items: center;
}
.transparent-header .navbar-njm{
	background: transparent;
}
.navbar-header{
	padding: 6px 0;
}
.navbar-header .brand{
	font-size: 25px;
	color: #333;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -1px;
	font-weight: 700;
}
.navbar-brand.brand{
	height: auto;
	padding: 0;
	display: inline-flex;
	align-items: center;
	float: none;
}
.transparent-header .navbar-brand.brand,
.transparent-header .navbar-brand.brand:hover,
.transparent-header .navbar-brand.brand:focus{
	color: #fff;
}
.nav-btn {
	background-color: transparent;
	font-size: 22px;
    margin: 3px 0 0 15px;
	padding: 10px;
	border-radius: 1px;
	color: #777;
}
.navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}
.navbar-njm .navbar-collapse{
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	float: right;
	width: calc(100% - 160px);
	padding-left: 20px;
	padding-right: 0;
}
.b-nav-btn{
	background: linear-gradient(135deg, var(--color-brand), #22c55e);
	display: inline-block;
	min-height: 46px;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 22px;
	line-height: 1.2;
	margin: 0 0 0 20px;
	color: #081120;
	text-transform: none;
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(22, 163, 74, 0.28);
}
.navbar-cta{
	flex-shrink: 0;
}
.b-nav-btn:focus,
.b-nav-btn:hover{
	background: linear-gradient(135deg, #15803d, #16a34a);
	color: #081120;
	text-decoration: none;
	transform: translateY(-2px);
}

.bootstrap-card,
.card.njm-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bootstrap-card:hover,
.card.njm-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: rgba(22, 163, 74, 0.22);
}

.section-shell {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.section-shell-sm {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.text-body-soft {
	color: var(--color-body-soft) !important;
}
.mt-125{
	margin-top: 125px;
}
.mt-78{
	margin-top: 78px;
}
/* 1.1 Main Menu
   ================================= */
.navbar-links{
	list-style: none;
	margin: 0;
	padding: 0;
	float: none !important;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
}
.navbar-links > li {
	float: none;
	display: inline-flex;
	position: relative;
}
.navbar-links > li > a {
    color: #fff;
    position: relative;
    display: block;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
	letter-spacing: .02em;
	opacity: 0.88;
	padding: 14px 0;
    font-weight: 600;
	text-transform: none;
	margin-left: 24px;
}
.navbar-links > li > a:focus,
.navbar-links > li > a:hover,
.navbar-links > li.current_page_item > a,
.navbar-links > li.active > a {
	color: #fff;
	opacity: 1;
    text-decoration: none;
	background: transparent !important;
}
.navbar-links > li.current_page_item > a:after,
.navbar-links > li.active > a:after,
.navbar-links > li > a:hover:after,
.navbar-links > li > a:focus:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 100%;
	height: 2px;
	background: var(--color-brand);
	border-radius: 999px;
}
.fixed-top.header .navbar-links > li > a,
.fixed-top.header .navbar-brand.brand,
.fixed-top.header .navbar-brand.brand:hover,
.fixed-top.header .navbar-brand.brand:focus{
	color: #fff;
}
.mainmenu,
.mainmenu ul,
.mainmenu li,
.mainmenu li a,
.mainmenu li ul {
    background: #fff none repeat scroll 0 0;
    left: 0;
    opacity: 0;
	filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    text-align: left;
    top: 100px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 250px;
    z-index: -1;
    /*box-shadow: 0 0 5px #fafafa;*/
}
.mainmenu li ul li {
    display: block;
}
.mainmenu li ul li a {
    color: #262626;
    opacity: 0.7;
    letter-spacing: -0.3px;
    padding: 12px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}
.mainmenu li ul li:last-child a:hover,
.mainmenu li ul li:last-child a{
    border: none;
}
.mainmenu li ul li a:hover{
	background-color: var(--color-brand);
	border-bottom: 1px solid #ddd;
}
.mainmenu li:hover ul {
    opacity: 1;
	filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    z-index: 99;
    top: 68px;
}
.fixed-top .mainmenu li:hover ul{
	top: 63px;
}
.mobile-menu {
    display: none;
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 9
}
/* 1.2 Mobile Menu */
.slicknav_menu {
    background: none;
    padding: 8px 0;
    display:none;
}
.slicknav_nav {
    background-color: #fff;
    margin: 0 -15px;
	border-top: 1px solid var(--color-border);
	box-shadow: var(--shadow-md);
	border-radius: 0 0 18px 18px;
	overflow: hidden;
}
.js .slicknav_menu {
    width: 100%;
    position: absolute;
    right: 0;
    top: 6px;
}
.slicknav_btn{
    background-color: transparent;
    margin: 3px 5px 18px;
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav .slicknav_row, 
.slicknav_nav a,
.slicknav_nav a:hover{
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.slicknav_nav .slicknav_row, 
.slicknav_nav a {
    padding: 10px 15px;
    margin: 0;
	color: var(--color-heading);
}
.slicknav_nav a .caret{
    display: none;
}
.slicknav_nav ul{
    margin: 0;
}
.slicknav_nav ul li a{
    padding-left: 30px;
	font-size: 14px;
	color: var(--color-body-soft);
}
.slicknav_menu .slicknav_icon-bar {
	background-color: #fff;
}
/* =========================================================================
   Mobile Nav Toggle Button
   ========================================================================= */
.mobile-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-left: auto;
	padding: 9px 14px 9px 12px;
	border: 1.5px solid rgba(255, 255, 255, 0.32);
	border-radius: 10px;
	background: transparent;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: background 0.22s ease, border-color 0.22s ease;
	-webkit-tap-highlight-color: transparent;
}
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.6);
	outline: none;
}
.mobile-nav-toggle.is-open {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.55);
}

/* Hamburger icon */
.mobile-nav-toggle__icon {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 16px;
	height: 12px;
}
.mobile-nav-toggle__icon span {
	display: block;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	background-color: #fff;
	transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
	transform-origin: center;
}
/* Middle bar shortens slightly so the X looks cleaner */
.mobile-nav-toggle__icon span:nth-child(2) {
	width: 12px;
}
/* Animate to X on open */
.mobile-nav-toggle.is-open .mobile-nav-toggle__icon span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
	width: 16px;
}
.mobile-nav-toggle.is-open .mobile-nav-toggle__icon span:nth-child(2) {
	opacity: 0;
	width: 16px;
}
.mobile-nav-toggle.is-open .mobile-nav-toggle__icon span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
	width: 16px;
}

/* =========================================================================
   Mobile Nav Dropdown Panel
   ========================================================================= */
.mobile-nav-list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: 0;
	padding: 12px 16px 20px;
	list-style: none;
	background: #0f172a;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
	z-index: 1000;
}
/* Separator line between each item */
.mobile-nav-list > li {
	float: none;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-nav-list > li:last-child {
	border-bottom: none;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-list > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 4px;
	color: rgba(255, 255, 255, 0.98);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-decoration: none;
	transition: color 0.18s ease, padding-left 0.18s ease;
}
/* Chevron arrow on each link */
.mobile-nav-list > li > a::after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 2px solid rgba(255, 255, 255, 0.3);
	border-top: 2px solid rgba(255, 255, 255, 0.3);
	transform: rotate(45deg);
	flex-shrink: 0;
	transition: border-color 0.18s ease;
}
.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > a:focus {
	color: #fff;
	padding-left: 6px;
	outline: none;
}
.mobile-nav-list > li > a:hover::after,
.mobile-nav-list > li > a:focus::after {
	border-color: rgba(255, 255, 255, 0.75);
}
/* Active / current page link */
.mobile-nav-list > li.active > a,
.mobile-nav-list > li.current_page_item > a {
	color: #fff;
}
.mobile-nav-list > li.active > a::after,
.mobile-nav-list > li.current_page_item > a::after {
	border-color: var(--color-primary, #16a34a);
}
/* Last item: full-width CTA button */
.mobile-nav-list > li:last-child > a {
	display: block;
	text-align: center;
	justify-content: center;
	padding: 13px 24px;
	margin-top: 4px;
	border-radius: 10px;
	background: var(--color-primary, #16a34a);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: background 0.2s ease, transform 0.15s ease;
}
.mobile-nav-list > li:last-child > a::after {
	display: none;
}
.mobile-nav-list > li:last-child > a:hover {
	background: #15803d;
	padding-left: 24px;
	transform: translateY(-1px);
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover{
	background-color: transparent;
    color: #262626;
    text-decoration: none;
}


/* Social icons
	================================= */
.social-icon-black li{ display: inline-block; }
.social-icon-black li a{
	display: inline-block;
	font-size: 14px;
	color: #222; 
	opacity: 0.9;
}
.social-icon-black li a:hover{ 
	color: #222; 
	opacity: 1; 
	text-decoration: none; 
}
.social-icon-white li{
	display: inline-block;
}
.social-icon-white li a{
	display: inline-block;
	font-size: 14px;
	color: #fff;
	opacity: 0.98;
}
.social-icon-white li a:hover{ 
	color: #fff; 
	text-decoration: none; 
	opacity: 1;
}
.social-icon-white li a .bi,
.social-icon-black li a .bi{
	font-size: 15px;
	vertical-align: middle;
}
.social-left li{ margin-right: 15px; }
.social-left-25 li{ margin-right: 25px; }
.social-right li{ margin-left: 15px; }
.social-right-25 li{ margin-left: 25px; }
.social-center li{ margin: 0 10px; }

/* Read More
   ================================= */
.read-more{
    font-family: 'Montserrat';
    letter-spacing: -0.04em;
	color: var(--color-link);
    font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(13, 107, 48, 0.35);
	text-underline-offset: 0.18em;
}
.read-more:hover{
	color: var(--color-link-hover);
    opacity: 1;
	text-decoration: underline;
}
.read-more.text-white{
	color: #fff;
	text-decoration-color: rgba(255, 255, 255, 0.9);
}
/* List Items
	================================= */
.list-1 li{
	margin: 0 0 10px;
	position: relative;
	padding-left: 25px;
}
.list-1 li:before{
	background-color: var(--color-brand);
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 6px;
}
.list-1.check li:before{
	background-color: transparent;
    font-family: 'themify';
	color: var(--color-brand);
	content: '\e64c';
	border-radius: none;
	top: 1px;
}
.list-1.angel li{
    display: inline-block;
    width: 49%;
}
.list-1.angel li a{
    color: #fff;
    text-transform: uppercase;
	opacity: 0.92;
}
.list-1.angel li a:hover{
    opacity: 1;
} 
.list-1.angel li:before{
	background-color: transparent;
    font-family: 'themify';
    font-size: 8px;
	width: 8px;
	height: 8px;
    color: #fff;
	content: '\e649';
	border-radius: none;
	top: 1px;
}
.list-1.grey-bullet li:before{
	background-color: #999;
}
/* Video Icon
   ================================= */
.video-icon{
	background-color: transparent;
	display: inline-block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	color: var(--color-brand);
	font-size: 16px;
	border: 2px solid var(--color-brand);   
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}
.video-icon:hover{
	color: var(--color-brand);
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

/* Slider Controllers
   ================================= */
/* Owl Nav 1 */
.owl-nav-1 .owl-nav div{
	background-color: rgba(255,255,255,1);
	display: block;
	text-align: center;
	width: 35px;
	height: 35px;
	line-height: 35px;
	color: #333;
	font-size: 13px;
	position: absolute;
    border: 1px solid #b7b7b7;
	left: -40px;
	top: calc(50% - 17.5px);
	opacity: 0.5;
	transition: all 0.3s linear;
}
.owl-nav-1 .owl-nav div.owl-next{
	left: auto;
	right: -40px;
}
.owl-nav-1 .owl-nav div:hover{
	opacity: 1;
	transition: all 0.3s linear;
}
.owl-nav-2 .owl-nav div{
	background-color: rgba(255,255,255,1);
	display: block;
	text-align: center;
	width: 35px;
	height: 35px;
	line-height: 35px;
	color: #333;
	font-size: 13px;
	position: absolute;
    border: 1px solid #b7b7b7;
	right: 40px;
	bottom: 27px;
	opacity: 0.5;
	transition: all 0.3s linear;
}
.owl-nav-2 .owl-nav div.owl-next{
	right: 0;
}
.owl-nav-2 .owl-nav div:hover{
	opacity: 1;
	transition: all 0.3s linear;
}
/* Owl Nav 3 */
.owl-nav-3 {
    overflow: hidden;
}
.owl-nav-3 .owl-nav div{
	background-color: rgba(255,255,255,0);
	display: block;
	text-align: center;
	width: 60px;
	height: 60px;
	line-height: 56px;
	color: #fff;
	font-size: 13px;
	position: absolute;
    border: 1px solid #b7b7b7;
	left: -100%;
	top: calc(50% - 30px);
	opacity: 0.5;
	transition: all 0.5s ease-in-out;
}
.owl-nav-3.nav-dark .owl-nav div{
	border: 1px solid #777;
	color: #333;
}
.owl-nav-3 .owl-nav div.owl-next{
	left: auto;
	right: -100%;
}
.owl-nav-3 .owl-nav div:hover{
	opacity: 1;
	transition: all 0.5s ease-in-out;
}
.owl-nav-3:hover .owl-nav div{
    left: 20px;
    transition: all 0.9s ease-in-out;
}
.owl-nav-3:hover .owl-nav div.owl-next{
    left: auto;
	right: 36px;
    transition: all 0.9s ease-in-out;
}

/* Owl Dots */
.owl-dots-1 .owl-dots{
	display: block;
	text-align: center;
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 30px;
}
.owl-dots-1 .owl-dots div{
	background-color: transparent;
	width: 12px;
	height: 12px;
    border: 2px solid #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
	transition: all 0.3s linear;
}
.owl-dots-1.nav-dark .owl-dots div{
	border: 2px solid #333;
}
.owl-dots-1 .owl-dots div.active{
	background-color: var(--color-brand);
    border: 2px solid var(--color-brand);
	transition: all 0.3s linear;
}