@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Remove default margin */
* {
  margin: 0;
}
/* Enable keyword animations */
html {
  interpolate-size: allow-keywords;
}

body {
  /* Add accessible line-height */
  line-height: 1.5;
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/* Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}
/* Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/* Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

:root {
  --color-navy-dark: #17345e;
  --link-color: #0d6efd;
  --border-color-neutral: #909EAE;
	
  --Primary--Navy-Blue-500: #003764;
  --white: #ffffff;	
  --Black-Shades-500: #18191B;
  --Black-Shades-400:#444444;
  --Black-Shades-300: #828282;
  --Bg-light-gray: #EBEDEF;
  --gray-100: #F1F2F3;
  --Alice-Blue : #E7EFF8;
  --Dark-Navy-Blue: #003057;
	
  --Orange-Color: #FF7F2F; 	
  --Green-Color: #4EA685;
  --Lime-Green: #95D600;
  --Yellow-Color: #FFB700;
}
	
html, body {
    font-family: 'Roboto', sans-serif !important;		
}

body a {
    text-decoration: underline;
    color: var(--Primary--Navy-Blue-500);
}

body a:active {
    color: var(--link-color) !important;
}


.header-space {
  height: 90px;
}

.logged-in .main-header {
	top: 30px;
}
		 
.main-header {
  background: #eee;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.main-header .logo a {
  display: block;
}
.main-header .logo a img {
  vertical-align: middle;
  width: 250px;
}

@media only screen and (max-width: 1024px) {
  .desk-menu {
    display: none;
  }
}

.desk-menu {
    width: 100%;
}

.desk-menu ul {
  width: 100%;
  text-align: right;
  margin: 0;
  padding: 0px;
}

.desk-menu ul li {
  display: inline-block;
  margin: 0;
  position: relative;
}

.desk-menu ul li a {
	display: block;
	/* padding: 0 16px; */
	padding: 0 8px;
	line-height: 90px;
    color: var(--color-navy-dark);
}

.desk-menu ul li a:hover {
   color: var(--Black-Shades-500);	
}

.desk-menu>ul.menu>li.menu-item {
color: var(--Black-Shades-500);
font-family: Roboto;
font-size: 15px; 
font-style: normal;
font-weight: 400;
line-height: 140%; /* 23.8px */
text-transform: uppercase;
}

.desk-menu>ul.menu>li.menu-item > a {
  font-weight:500;
  text-shadow: 0px 0.2px 0px #fff;
  animation:none;
}

.desk-menu>ul.menu>li.menu-item:hover > a {
  color: var(--link-color) !important;
  font-weight:500;
  text-shadow: 0px 0.2px 0px #003764;
}

.desk-menu>ul.menu>li.menu-item > a {
    background-color: var(--white);
}

.desk-menu>ul.menu>li.menu-item > a:before {
    content: '';
    width: 0%;
    height: 4px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: var(--link-color);
	transition: width 0.3s;
}

.desk-menu>ul.menu>li.menu-item:hover > a:before {
    content: '';
    width: 100%;
}

.desk-menu>.menu>.menu-item-has-children>a:after {
    content: "\f107" !important;
	display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	padding-left: 8px;
	transition: transform 0.3s ease-in-out;
}

.desk-menu ul li:hover ul {
  display: block;
}

.desk-menu ul li ul {
  display: none;
  position: absolute;
  left: 0;
  text-align: left;
  padding:0px;
  box-sizing:border-box;	
}

.desk-menu > ul > li.menu-item > ul.sub-menu {
 background-color: var(--white);	
}

.desk-menu ul li.mega-menu ul li {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.desk-menu ul li ul li ul li ul{
	padding-left:16px;
}

.desk-menu ul li ul li {
  display: block;
  margin: 0;
}

.desk-menu ul li ul li a {
  line-height: 25px;
  color: var(--Black-Shades-400);
  font-weight:400;
}

.desk-menu>ul.menu>li.menu-item>ul:not(li.menu-item) {
	text-transform: capitalize;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
	padding:16px 16px 20px 16px;
	min-width: 200px;
	margin-top:0.4px;
}

.desk-menu>ul.menu>li.menu-item>ul:not(li.menu-item) a {
    padding: 4px 0px;
	font-size:15px;
}

.desk-menu>ul.menu>li.menu-item>ul:not(li.menu-item) a:hover {
	text-decoration:underline;
}

.desk-menu ul li.mega-menu ul {
    position: relative;
}

.desk-menu > ul > li.mega-menu > ul {
  width:100%;
  height: max-content;	
  background-color: var(--white);
  padding: 20px 30px;
  position: fixed;
  z-index: 99;
  left:0;
  right:0px;
  margin:0.4px auto !important;
  list-style: none;
  box-sizing: border-box;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
}

.desk-menu > ul > li.mega-menu > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 20%;
  background: none;
  float: left;
  padding:0px 8px;
}

.desk-menu > ul > li.mega-menu > ul > li > a {
    font-weight: 600;
	color: var(--color-navy-dark) !important;
	text-transform:uppercase;
}

.desk-menu > ul > li.mega-menu > ul > li > a:hover {
	color: var(--link-color) !important;
}

.mobile-buttons {
  display: none;
  text-align: right;
}


@media screen and (min-width: 2000px) {
	.desk-menu>ul.menu>li.menu-item>ul:not(li.menu-item) {
		padding:3% 5%;
	}
	
	.desk-menu>ul.menu>li.menu-item>ul:not(li.menu-item) a	{
		font-size:16px;
	}
	
	.desk-menu>ul.menu>li.menu-item {
	font-size: 16px; 
	}	
}

@media screen and (max-width: 1436px) {
	.desk-menu>ul.menu>li.menu-item>ul:not(li.menu-item) a {
		font-size: 14px;
		line-height: normal;
		padding-top:4px;
		padding-bottom:4px;
	}
}


@media only screen and (max-width: 1024px) {
  .mobile-buttons {
    display: inline-block;
  }
	.main-header .logo a img {
		min-width: 160px !important;
	}
}

.mobile-buttons a, .mobile-buttons #mob-toggle {
  display: inline-block;
  cursor: pointer;
  width: 50px;
  line-height: 90px;
  text-align: center;
}

.mobile-menu {
  position: fixed;
  top: 90px;
  bottom: 0;
  right: 0;
  width: 400px;
  padding: 20px 0;
  overflow-y: scroll;
  background: #eee;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transform: translateX(400px);
  transition: 0.3s ease;
}

@media only screen and (max-width: 600px) {
	.mobile-menu {
		width: 100%;
		transform: translateX(100%);
		top: 7.5rem !important;
	}
	
	.mobile-menu.active {
		background-color: var(--Primary--Navy-Blue-500) !important;
		top: 7.5rem;
	}
	.topnavmob ul.menu {
		background-color: var(--Primary--Navy-Blue-500) !important;
		color: var(--white);
	}
	
	.topnavmob ul.menu li a {
		color: var(--white) !important;
	}
	
	.mobile-menu ul.menu {
		background-color: var(--white);
		padding:32px 0px !important;
	}
}


@media only screen and (max-width: 1024px) {
  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}


.mobile-menu ul {
  margin: 0;
  padding: 0;
}
.mobile-menu ul li {
  margin: 0;
}

.mobile-menu ul li a {
	padding: 5px 25px;
	display: block;
	/*line-height: 40px; */
	line-height: 30px; 
	text-decoration:none;
	color: var(--Black-Shades-500);
	font-size: 17px;
	font-style: normal;	
}

.mobile-menu > ul > li > a {
	font-weight: 700;	
}

.mobile-menu > ul > li > a {
	text-transform:uppercase;
	color: var(--Black-Shades-500);
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
}

.mobile-menu ul li > ul.sub-menu.active > li a {
    font-weight: 500;
}

.mobile-menu ul li > ul.sub-menu.active ul.sub-menu.active li a {
    font-weight: 400;
}

.mobile-menu ul li ul {
    padding-left: 16px;
    list-style: none;
}

.mobile-menu ul li ul {
  position: relative;
}

.mobile-menu ul li ul.active:before {
  content: "\f068";
}

.mobile-menu ul li ul:before {
    content: "\f107" !important;
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
  position: absolute;
  right: 0;
  top: -44px;
  width: 60px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.mobile-menu ul li ul.active:before {
    rotate: 180deg !important;
}

.mobile-menu ul li ul li {
  display: none;
}

.mobile-menu ul li > ul.sub-menu.active ul.sub-menu.active li a:after {
    border-left: 2px solid #ddd;
    content: '';
    height: 100%;
    position: absolute;
    left: 30px;
    top: 0px;
}

.darkness {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

@media only screen and (max-width: 980px) {
  .darkness.active {
    opacity: 1;
    visibility: visible;
  }
}
	
.header {
    width: 100%;
}

/* Top Bar */
.header-top {
    background-color: var(--Primary--Navy-Blue-500);
    padding: 10px 20px;
}

.header-top-links {
    display: flex;
    align-items: center;
	justify-content: space-between;
    gap: 10px;
}

.header-top-links a, .header-top-links a:hover {
    color: var(--white);
    text-decoration: none;
}
	
.header-top-links ul {
    display: flex;
    list-style: none;
	margin: 0px;
	padding:0px;
}	

.header-top-links .top-nav ul>li>a {
	position: relative;
	padding: 0px 12px;
}	

.header-top-links .top-nav ul.menu li.menu-item ul.sub-menu {
    display: flex;
    flex-direction: column;
    background-color: var(--Primary--Navy-Blue-500);
    padding: 10px 0px;
    border-radius: 3px;
    min-width: 150px;
	display:none;
	height: max-content;
	position: absolute;
    z-index: 1;
}

.header-top-links .top-nav ul.menu li.menu-item ul.sub-menu li a::after {
    content: "\f08e" !important;
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    padding-left: 8px;
	font-size:12px;
}

.header-top-links .top-nav ul.menu li.menu-item ul.sub-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
	padding:4px 16px 4px 12px;
}

.header-top-links .top-nav ul.menu li.menu-item:hover a + ul.sub-menu {
  display:block;
}

.header-top-links .top-nav ul>li>a:hover {
text-decoration:underline;
}	

.header-top-links .top-nav ul>li:not(:last-child)::after {
  content: "|";
  color: var(--white);
  position: absolute;	
}		
	
.header-top-links ul>li.link-external>a:after {
    content: "\f107" !important;
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
	font-weight:normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-left: 8px;
    transition: transform 0.3s ease-in-out;
}
.header-top-links .top-nav ul.menu li.menu-item ul.sub-menu>li:not(:last-child)::after {
    content: none;
}

.social-media-followers .hex-cell a>i {
	width: 26px;
	height: 28px;
	font-size: 15px;
	background-color: var(--Primary--Navy-Blue-500);
	color: var(--white);
	font-weight:600;
}

.social-media-followers .hex-cell a:hover>i {
	color: var(--white);
}

.header-top-links .social-media-followers .fa-brands, .header-top-links .social-media-followers .fab {
    font-weight: 700;
}

.top-nav {
    display: flex;
}
	
.navbar-brand {
padding:2px 0px 8px 0px !important;		
}	
		
.primary-nav {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
    background-color: var(--white);
    padding: 0px;
    width: 100%;
}	
		
.primary-nav a {
    color: #17345e;
    text-decoration: none;
    font-weight: 500;
    position: relative;
	font-family: 'Roboto', sans-serif !important;
}	
	
.primary-nav .search-wrapper div#search-form {
    position: absolute;
    right: 0;
    top: 100.4%;
    border-radius: 0px 0px 8px 8px;
    background: var(--white);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
    width: 100%;
    padding: 32px 32px;	
	z-index:99;
}

.primary-nav .search-wrapper div#search-form form {
    display: flex;
}

.primary-nav .search-wrapper div#search-form input[type="search"] {
    width: 100%;
    display: flex;
    height: 48px;
    padding: 11px 16px;
    align-items: center;
    border-radius: 8px 0px 0px 8px;
    border: 1px solid var(--Primary--Navy-Blue-500);
    background: var(--white);
	border-right:none;
	box-shadow:none;	
}

.primary-nav .search-wrapper div#search-form input[type="search"]:focus {
  outline: none; 
  box-shadow: inset 0 0 0 1px #003764; /* Blue inset glow */	
}

.primary-nav .search-wrapper div#search-form button[type="submit"] {
	display: flex;
	width: 60px;
	height: 48px;
	padding: 19.2px;
	justify-content: center;
	align-items: center;
	border-radius: 0px 8px 8px 0px;
	background: var(--Primary--Navy-Blue-500);
	color: var(--white) !important;
}

.primary-nav .search-wrapper div#search-form button[type="submit"]:focus{
  outline: none; 
  box-shadow: inset 0 0 0 1px #003764; /* Blue inset glow */
}

.primary-nav .search-wrapper div#search-form button[type="submit"] .is-search-icon {
	width:100%;
	height:100%;
	border-radius: 0px 8px 8px 0px;
	border:none;
}

.primary-nav .search-wrapper div#search-form button[type="submit"] .is-search-icon svg {
    width: 32px;
}

.primary-nav .search-wrapper div#search-form button[type="submit"] .is-search-icon {
    padding-top: 0px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
}

.primary-nav .search-wrapper div#search-form button[type="submit"] .is-screen-reader-text {
	background-color:var(--white);
}

.search-wrapper>a {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: 1.5px solid var(--Primary--Navy-Blue-500);
    color: var(--Primary--Navy-Blue-500);
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-wrapper>a:hover {
    color: var(--Primary--Navy-Blue-500);
}

.primary-nav .container {
	position:relative;
}

.navbar-container {
    display: flex;
    justify-content: end;
    width: 100%;
    align-items: baseline;
}

.primary-nav .navbar-nav>.nav-item>a {
    padding: 0px 16px;
	color: var(--Black-Shades-500);
}		
		
.navbar-collapse {
    flex-grow: initial !important;
}	
		
.navbar-brand img {
    max-height: 50px;
}
	
.primary-nav .logo {
	display: flex;
    align-items: center;
}

.search-btn {
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
border: 1.5px solid var(--Primary--Navy-Blue-500);
color: var(--Primary--Navy-Blue-500);
height: 40px;
width: 40px;
}

.search-btn>a {
    height: 100%;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;	
}

.section-heading {
color: var(--Black-Shades-500);
font-family: Roboto;
font-size: 32px !important;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 38.4px */
letter-spacing: 0.16px;
text-transform: uppercase;
position: relative;
padding-bottom: 12px !important;
margin-bottom: 32px !important;
text-align: left;
}

.section-heading:before {
    content: '';
    background-color: var(--Primary--Navy-Blue-500);
    height: 5px;
    width: 120px;
    position: absolute;
    bottom: 0px;
}

.mobile-menu.active {
	background-color: var(--white);
}

@media screen and (min-width: 480px) {
	.desk-menu ul {
		padding-right: 8px;
	}
}




@media screen and (max-width: 1180px) and (min-width: 1025px) {
	.desk-menu ul li a {
		padding: 0 4px !important;
		font-size: 12px !important;
	}
}


@media only screen and (max-width: 1024px) {
	.search-wrapper {
		height: 100%;
		display: flex;
		align-items: center;
	}	
	
	.primary-nav {
		padding: 16px 0px;
	}

	.primary-nav .container {
		display: flex;
		align-items: center;
	}

	.mobile-buttons a, .mobile-buttons #mob-toggle {
		line-height: 100%;
		width: 40px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid red;
		margin: 12px;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px;
		border: 1.5px solid var(--Primary--Navy-Blue-500);
		color: var(--Primary--Navy-Blue-500);		
	}	
	
	.mobile-menu {
		top: 8.8rem;
	}
}	


@media only screen and (max-width: 991px) {
	.top-nav ul.menu {
		display: none;
	}
	.header-top-links {
		justify-content: space-between;
	}
}


@media only screen and (max-width: 580px) {
	.section-heading { 
		font-family: Roboto;
		font-size: 20px !important;
		font-style: normal !important;
		font-weight: 700 !important;
		line-height: 130%; /* 26px */
		letter-spacing: 0.1px;		
	}
	
	.header-top .container {
		padding:0px;
	}	
	.header-top {
		padding: 10px 16px 10px 10px;
	}	
	
}	
	





/* Google Translate Start */
select.gt_selector.notranslate {
  overflow: auto;
}

select.gt_selector.notranslate::-webkit-scrollbar {
 visibility:hidden;
}

select.gt_selector.notranslate::-webkit-scrollbar {
  width: 8px;
  height: 6px;
  background-color: var(--white) !important;
}

select.gt_selector.notranslate::-webkit-scrollbar-thumb {
    background: #8b8b8b  !important;
	border-radius:12px;
}
/* Google Translate End */


.submenu-visible { /*developer */
  display: block !important;
}


