/* This stylesheet is RENDER-BLOCKING */
/* Only add priority styles that occur near the top of the page and/or prevent page jitter */

/*
CORE
HEADER
MENUS
BANNER
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
	font-size: 15px;
	--body-text-color: #5f6272;
	--primary-color: #070b2e;
	--secondary-color: #f26522;
	--alternate-color: #f26522;
	--gray-color: #c0c3d3;
	--light-gray-color: #e9f5f7;
	--body-font-family: "Poppins", sans-serif;
	--heading-font-family: 'Lora', serif;
	--gutter-size: 15px;
}

@media screen and (min-width: 768px) {
	/*TABLET*/
	:root {
		font-size: 16px;
	}
}

#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
	min-height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

main {
	padding: 40px 0;
	min-height: 450px;
	display: block;
	width: 100%;
	overflow: hidden;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.no-banner main {
	padding-top: 180px;
}

html {
	box-sizing: border-box;
}

body {
	display: block !important;
	line-height: 1.6;
	color: #111;
	font-size: 1rem;
	font-family: var(--body-font-family);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*:focus {
	outline: auto;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/* CORE > Headings and Paragraphs */


h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px;
	color: #070b2e;
	font-weight: 400;
	font-family: var(--heading-font-family);
	line-height: 1.2;
}

h1 {
	font-size: 2.4rem;
}

h2 {
	font-size:1.6rem;
}

h3 {
	font-size: 1.3rem;
}

h4 {
	font-size: 1.1rem;
}

h5,
h6 {
	font-size: 0.8765rem;
}

h2 strong,
h3 strong {
	font-weight: 700;
}

h1 span.subtitle,
h2 span.subtitle {
	display: block;
	color: #f26522;
	font-size: 50%;
}

p {
	margin: 0 0 30px;
	font-size: 1rem;
	color: #111;
}

ul {
	list-style: none;
}

/* CORE > Links and Buttons */
a {
	color: #f26522;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #365a73;
	text-decoration: none!important;
}

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: none!important;
	color:#365a73;
}

a,
button,
.button {
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button, .button {
	font-family: var(--body-font-family);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 12px 25px;
	text-align: center;
	display: inline-block;
	color: #fff;
	background-color: #f26522;
	text-decoration: none;
	text-decoration: none !important;
}

button:active,
.button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
	background-color: #062352;
	color: #fff;
}

button.alt-01,
.button.alt-01 {
	background-color: #f26522;
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
	background-color: #070b2e;
	color: #fff;
}

button.alt-02,
.button.alt-02 {
    background-color: #000;
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
	background-color: #f26522;
	color: #fff;
}
button.outline,
.button.outline {
	background: none;
	border: 2px solid #f26522;
	color: #f26522;
}
button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	background: #f26522;
	color: #fff;
}
button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	border-color: #fff;
	color: #fff;
}
button.outline.outline-alt-01:hover,
button.outline.outline-alt-01:focus,
.button.outline.outline-alt-01:hover,
.button.outline.outline-alt-01:focus {
	background: #fff;
	color: #070b2e;
}
button.no-button,
.button.no-button {
	padding: 0;
	background: none;
	color: #f26522;
	text-transform: none;
}
button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
	color: #000;
	text-decoration: underline;
}
/* CORE > Layout */
.columns,
.column {
	padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-narrow {
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}
.row-narrow {
	max-width: 1024px;
}
.row-wide {
	max-width: 1599px;
}
.row:after {
	clear: both;
}

.row:not(.main-inner):before,
.row:not(.main-inner):after {
	display: table;
	content: " ";
	flex-basis: 0;
	order: 1;
}

.row.main-inner:before,
.row.main-inner:after {
	display: none;
}

/* CORE > Utility Classes */


.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-margin-last > p:last-of-type {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-transition {
	transition: none !important;
}

.no-min-height {
	min-height: 0;
}

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.hr-after {
	position: relative;
}

.block {
	display: block;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.center,
.align-center,
.text-center {
	text-align: center;
}

.right,
.align-right,
.text-right {
	text-align: right;
}

.body-font {
	font-family: var(--body-font-family);
}

.header-font {
	font-family: var(--heading-font-family);
}

.uppercase {
	text-transform: uppercase;
}

.show-in-pdf,
.hide {
	display: none !important;
}

.overflow-hidden {
	overflow: hidden;
}

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.flex-container {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.flex-align-vertical {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-align-horizontal {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	text-align: center;
}

.two-buttons-container a,
.two-buttons-container button {
	display: block;
	margin-bottom: 10px;
}
.small-text {
	font-size: 0.9rem;
}
.larger-text {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.bold,
.font-bold {
	font-weight: 700;
}

.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}
.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb60 {
	margin-bottom: 60px;
}
.mb70 {
	margin-bottom: 70px;
}
.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;	
}

.pt30 {
	padding-top: 30px;
}

.pt40 {
	padding-top: 40px;
}

.pt50 {
	padding-top: 50px;
}

.pt60 {
	padding-top: 60px;
}

.pt70 {
	padding-top: 70px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.pb30 {
	padding-bottom: 30px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb50 {
	padding-bottom: 50px;
}

.pb60 {
	padding-bottom: 60px;
}

.pb70 {
	padding-bottom: 70px;
}

.small-margin-left {
	margin-left: 10px;
}

.small-margin-right {
	margin-right: 10px;
}

.no-background {
	background: none !important;
}

.animate-in-view,
.opacity0 {
	opacity: 0;
}
.opacity1 {
	opacity: 1 !important;
}

.pointer-events-none {
	pointer-events: none;
}

.transition-all {
	transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.z-index-over {
	position: relative;
	z-index: 1;
}

.background-center {
	background-position: center center !important;
}

.background-y-bottom {
	background-position-y: 100%;
}

.background-y-top {
	background-position-y: 0%;
}

.background-cover {
	background-size: cover;
	background-repeat: no-repeat;
}

.background-transparent {
	background: transparent;
}

.light-text,
button.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li,
.light-text label {
	color: #fff;
}

@media screen and (min-width: 450px) {
	.two-buttons-container {
		display: flex;
		justify-content: center;
	}

	.two-buttons-container a,
	.two-buttons-container button {
		margin: 0 5px;
	}
}

@media (min-width: 768px) {
	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0px), screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: transparent;
	z-index: 2;
	border-bottom: 2px solid transparent;
	transition: border-color 200ms ease-out;
}

body.scrolled .header {
	border-color: #f26522;
	background: #385f79;
}

.header > .row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 8px 0 8px 8px;
}

.header-logo img {
	max-width: 100%;
	height: auto;
	width: 350px;
}
 
.header-mobile-inner {
	display: flex;
	min-height: 70px;
	padding: 5px;
	position:relative;
	z-index:1
}
#header-mobile::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	background: transparent;
	background: linear-gradient( 0deg, rgba(255, 255, 255, 0) 17%, rgba(13, 13, 13, 0.5) 80% );
	pointer-events: none;
}
.header-mobile-buttons {
	display: flex;
	margin-left: 4%;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
	display: flex;
	font-size: 1.3rem;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 50px;
	width: 50px;
	height: 50px;
}

.mega-menu {
	display: none;
}

@media screen and (min-width: 500px) {

.header-mobile-buttons a,
.header-mobile-buttons button {
	width: 60px;
	max-width: 60px;
	height: 60px;
	font-size: 1.6rem;
}

}

@media screen and (min-width: 1025px) {

.header-mobile {
	display: none;
}

.header-desktop {
	display: block;
}

.header-logo {
	padding: 0;
}

}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
}

.main-navigation-menu > li {
	padding: 0 0 20px 0;
	margin-right: 35px;
}

.main-navigation-menu > li:last-of-type {
	margin-right: 0;
}

.main-navigation-menu > li:last-of-type > a {
	margin-right: 0;
}

.main-navigation-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 300px;
	margin: 0;
	left: 0px;
}

.main-navigation-menu > a:hover + .mega-menu,
.main-navigation-menu > a:focus + .mega-menu,
.main-navigation-menu > li.active > .mega-menu,
.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideDown 200ms both;
	animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
	color: #f26522;
	text-decoration: none;
}

.main-navigation-menu > li > a {
	position: relative;
	display: block;
	height: 100%;
	color: #fff;
	line-height: 1;
	font-size: 17px;
	text-decoration: none;
	text-transform:uppercase;
	font-weight:600;
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li,
.mega-menu li {
	background: #385f79;
	padding-left: 32px;
	transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
}

#mega-menu li a,
#desktop-navigation .sub-menu li a {
	color: #fff;
	font-size: 0.9rem;
	display: block;
	padding: 12px;
	padding-left: 0;
	line-height: 1.3;
	text-decoration: none;
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
	background: #f26522;
}

.mega-menu li::before, #desktop-navigation .sub-menu li::before {
	content: "\f105";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	left: 12px;
	top: 9px;
	color: #f26522;
	pointer-events: none;
	transition: color 200ms ease-out;
}

.mega-menu li.active:before,
#desktop-navigation .sub-menu li.active:before {
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children > a:after {
	content: "\f101";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	right: 10px;
	color: #f26522;
}

#desktop-navigation .sub-menu .menu-item-has-children.active > a:after {
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	left: 100%;
	top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
	display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideRight 200ms both;
	animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
	display: none;
}

/*******************************************************************************************
BANNER - Page-top image and title
*******************************************************************************************/

.banner {
	height: 225px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
}

.banner,
.banner-xl {
	margin-top: 65px;
}

.banner:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(27, 28, 34, 0.5);
	pointer-events: none;
}

.banner img {
	position: relative;
	width: 100%;
}

.banner > .row {
	height: 100%;
}

.banner-inner {
	position: relative;
	z-index: 1;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 100%;
	float: none;
	padding-top: 150px;
}

.banner-title {
	text-align: center;
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 0;
	font-family: var(--heading-font-family);
	font-weight: 600;
	text-shadow: 0 0 5px #464646;
}

@media screen and (min-width: 920px) {
	.banner-title {
		font-size: 3.2rem;
	}
}

@media screen and (min-width: 1025px) {
	.banner {
		height: 350px;
	}

	.banner,
	.banner-xl {
		margin-top: 00px;
	}
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
	.banner {
		height: 350px;
	}
}



@media screen and (min-width: 280px) and (max-width: 767px) {
.header-logo img {
	max-width: 100%;
	height: auto;
	width: 150px;
}	
.header-mobile-buttons {
	column-gap: 5px;
}	
.banner, .banner-xl {
	margin-top: 0;
	height: 300px;
}

.contact-social {
	margin-top: 30px;
}
	
}


@media screen and (min-width: 767px) and (max-width:1024px) {
	.banner, .banner-xl {
	margin-top: 0;
	height: 300px;
}

.header-logo img {
	max-width: 100%;
	height: auto;
	width: 170px;
}

.header-mobile-buttons {
	column-gap: 10px;
}
.sidebar h2 {
	font-size: 1.8rem;
}
 
	
}

.hero_image img{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
}