header {
	position: relative;
	/*background-color: rgba(150, 150, 150, 0.5);*/
	/*min-width: 320px;*/
	z-index: 100;
	margin: 0 auto;
	max-width: 1300px;
	height: 330px;
}
.page_home header {
	height: unset;
}
@media only screen and (min-width : 1200px) {
	header::-webkit-scrollbar{
		display: none;
	}
	.not-home-page header::after {
		background-image: url('../images/aside_bg.jpg');
	}
	.is-home-page header::after {
		content: ' ';
		
		top: 1090px;
	}
}

header ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
header ul>li {
	margin: 0;
	padding: 0;
}
header ul>li>a {
	display: block;
	margin: 0;
	padding: 0;
}

/* IE Navbar Search Fix */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	#nav_search {
		margin: -3px;
	}
}

/* header/nav items */
.header-section-nav {
	/*background-color: rgba(0, 0, 0, .35);*/
	background-color: rgba(12, 61, 89, 0.80);
	-webkit-transition: background-color .2s, color .2s;
	transition: background-color .2s, color .2s;
}
.header-section-nav.open {
	background-color: rgba(12, 61, 89, 0.95);
	position: absolute;
	z-index: 9;
	top: 0;
}

@media only screen and (min-width : 1200px) {
	.header-section-nav {
		background-clip: content-box;
		background-color: transparent;
		background-repeat: no-repeat;
		background-position: 0 0;
		height: 80px;
		-webkit-transition: width, opacity, .3s;
		transition: width, opacity, .3s;
		z-index: 8;
	}
	.header-section-nav.open {
		background: transparent;
		position: unset;
	}

	.header-section-nav::-webkit-scrollbar{
		display: none;
	}
}


header .main-toggle-wrap {
	border-bottom: 1px solid transparent;
}
.header-section-nav.open .main-toggle-wrap {
	border-color: rgba(255, 255, 255, .25);
}

header a.items-toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	
	background: transparent url('../images/nav_icon_menu.png') no-repeat 20px center;
	
	border-width: 0;
	cursor: pointer;
	height: 60px;
	margin: 0;
	padding: 0;
	padding-left: 70px;
	
	color: #fff;
	font-size: 22px;
	font-style: italic;
	font-weight: 300;
	text-transform: uppercase;
}

header a.items-toggle:hover, header a.items-toggle:active, header a.items-toggle:focus {
	outline: 0;
	text-decoration: none;
	opacity: 0.8;
}

@media only screen and (min-width : 1200px) {
	.header-section-nav a.items-toggle {
		height: 80px;
		text-indent: -999px;
	}
	.header-section-nav.open a.items-toggle {
		text-indent: 0px;
	}
}
header .main-items-toggle .icon-label {
	display: none;
}
@media only screen and (min-width : 400px) {
	header .main-items-toggle .icon-label {
		display: block;
		padding-left: 10px;
	}
}

header .items-toggle .icon-bar-wrap {
	margin-bottom: -1px;
	/*margin-right: 5px;*/
}
header .items-toggle .icon-bar {
	background-color: #fff;
	display: block;
	width: 18px;
	height: 3px;
	/*border-bottom: 1px solid rgba(0, 0, 0, 0.75);*/
	/*border-right: 1px solid rgba(0, 0, 0, 0.75);*/
	border-radius: 4px;
}
header .items-toggle .icon-bar+.icon-bar {
	margin-top: 2px;
}
header .items-toggle .icon-bar-wrap, header .items-toggle .icon-bar-label { display: inline-block; }

header .items-wrap {
	display: none;
	position: relative;
	z-index: 99;
}
header .nav-section.open>.items-wrap {
	display: block;
}
@media only screen and (min-width : 1200px) {
	header .toggle-wrap {
		display: none;
	}
	header .items-wrap {
		display: block;
	}
}


.header-section-nav ul.main-items>li {
	position: relative;
	
	border-bottom: 1px solid rgba(255, 255, 255, .25);
	-webkit-transition: background-color .2s, color .2s;
	transition: background-color .2s, color .2s;
}
.header-section-nav ul.main-items>li>a {
	background-repeat: no-repeat;
	background-position: 0px center;
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: bold;
	height: 80px;
	line-height: 80px;
	padding: 0 10px;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.25);
	text-transform: uppercase;
}
@media (min-width: 1200px) {
	.header-section-nav ul.main-items>li>a {
		color: #222C36;
	}
	.header-section-nav ul.main-items>li>a:hover, .header-section-nav ul.main-items>li>a:active, .header-section-nav ul.main-items>li>a:focus {
		color: #222C36;
		text-decoration: none;
	}
}

.header-section-nav ul.main-items>li.open, .header-section-nav ul.main-items>li:hover, .header-section-nav ul.main-items>li:active, .header-section-nav ul.main-items>li:focus {
	background-color: #c4c4c444;
}

.header-section-nav ul.main-items>li.has-children .expand {
	position: absolute;
	top: 0;
	right: 0;
	
	background-image: url('../images/carat_nav_open.png');
	background-repeat: no-repeat;
	background-position: center;
	height: 80px;
	opacity: .6;
	width: 58px;
}
.header-section-nav.open ul.main-items>li.has-children .expand:hover {
	opacity: 1;
}
.header-section-nav.open ul.main-items>li.has-children.open .expand {
	background-image: url('../images/carat_nav_close.png');
	opacity: 1;
}
.header-section-nav ul.main-items>li.open>a {
	border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.header-section-nav .main-items>li>ul.child-items {
	display: none;
	padding: 20px 20px 20px 45px;
}
.header-section-nav.open .main-items>li.has-children.open>ul.child-items {
	display: block;
}
.header-section-nav ul.child-items>li>a {
	background: transparent url('../images/carat_nav_right.png') no-repeat left center;
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: bold;
	height: fit-content;
	padding-left: 22px;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
	-webkit-transition: background-color .2s, color .2s;
	transition: background-color .2s, color .2s;
	padding: 10px 15px;
}
.header-section-nav ul.child-items>li>a, .header-section-nav ul.child-items>li>a:link, .header-section-nav ul.child-items>li>a:visited {
	color: #fff;
	opacity: .85;
}
.header-section-nav ul.child-items>li>a:hover, .header-section-nav ul.child-items>li>a:active, .header-section-nav ul.child-items>li>a:focus {
	color: #fff;
	opacity: 1;
	text-decoration: none;
}


.header-section-nav ul.main-items>li#nav_search a { display:none; }

@media (min-width:1200px) {
	.header-section-nav ul.main-items:before, .header-section-nav ul:after { content: ""; display: table; }
	.header-section-nav ul.main-items:after { clear: both; }

	.header-section-nav ul.main-items>li { float: left; border-bottom:0; }
	.header-section-nav ul.main-items>li.has-children .expand { display:none; }
	.header-section-nav .main-items>li.has-children:hover>ul.child-items {
		display: block;
	}
	.header-section-nav .main-items>li>ul.child-items {
		position: absolute;
		top: 80px;
		left: 0;
		padding: 0;
		background: white;
		filter: drop-shadow(10px 10px 10px rgba(0,0,0,.25));
	}
	.header-section-nav ul.child-items>li>a {
		height: auto;
		min-width: 300px;
		padding:5px 20px;
		background: none;
		text-shadow: none;
		font-weight: 300;
		text-transform: uppercase;
		white-space: nowrap;
		line-height: 40px;
	}
	.header-section-nav ul.child-items>li>a, .header-section-nav ul.child-items>li>a:link, .header-section-nav ul.child-items>li>a:visited {
		color: inherit;
		opacity: 1;
	}
	.header-section-nav ul.child-items>li>a:hover, .header-section-nav ul.child-items>li>a:active, .header-section-nav ul.child-items>li>a:focus {
		color: inherit;
		text-decoration: none;
		background: rgba(0,0,0,0.1);
	}

	.header-section-nav ul.main-items>li#nav_search { float: right; }
	.header-section-nav ul.main-items>li#nav_search a { display:block; }
}

.header-section-nav .nav_search form {
	position: relative;
	
	display: -webkit-box;
	
	display: -ms-flexbox;
	
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	
	background-image: url('../images/nav_icon_search.png');
	background-repeat: no-repeat;
	background-position: 20px center;
	
	/*color: #fff;*/
	font-size: 22px;
	font-weight: normal;
	height: 80px;
	/*line-height: 80px;*/
	padding: 0 18px 0 80px;
	/*opacity: .65;*/
}
/*.header-section-nav .nav_search form:hover {
	opacity: 1;
}*/
.header-section-nav .nav_search label {
	color: #fff;
}
.header-section-nav .nav_search input {
	border: 0;
	border-radius: 5px;
	height: 50px;
	line-height: 50px;
	padding: 0 10px;
	width: 100%;
}
.header-section-nav .nav_search button {
	position: absolute;
	top: 0;
	right: 18px;
	bottom: 0;
	
	background: transparent url('../images/carat_newsletter.png') no-repeat center center;
	border: 0;
	border-radius: 0 3px 3px 0;
	/*display: none;*/
	text-indent: -9999px;
	width: 38px;
}
.header-section-nav .nav_search button:active, .header-section-nav .nav_search button:focus { outline: 0; }

/*.header-section-nav.open .nav_search input, .header-section-nav.open .nav_search button { display: block; }*/

@media (min-width: 1200px) {
	.header-section-nav ul.main-items>li.nav_search>a {
		text-indent: -9999px;
		background-image: url('../images/2021/icon-search.svg');
		background-repeat: no-repeat;
		background-position: center center;
		width: 60px;
		height: 80px;
		/*line-height: 80px;*/
		padding: 0;
	}
	.search-toggle-menu {
		display: none;
		min-width: 300px;
		position: absolute;
		top: 80px;
		right: 0;
		padding: 0;
		background: rgba(0,0,0,0.7);
	}
	
	.header-section-nav ul.main-items>li.open .search-toggle-menu {
		display: block;
	}
	.header-section-nav .nav_search form {
		background: none;
		padding: 0 15px;
	}
}

/* header/site title */
.site-title { padding: 30px 0; }
.site-title a {
	background: transparent url('../images/2021/logo.svg') no-repeat scroll center center;
	background-size: 90%;
	display: block;
	height: 140px;
	text-indent: -9999px;
}

@media (min-width: 900px) {
	.site-title a {
		background-size: auto;
	}
}
@media only screen and (min-width : 1200px) {
	.site-title a {
		height: 170px;
	}
}


/* SOCIAL */
.header-section-social {
	text-align: center;
	margin-right: 20px;
}

.header-section-social .social-link {
	display: inline-block;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	height: 22px;
	text-indent: -9999px;
	width: 21px;
}
.header-section-social .social-link, .header-section-social .social-link:link, .header-section-social .social-link:visited {
	background-color: transparent;
}

.header-section-social .social-link-facebook {
	background-image: url('../images/2021/icon-social-facebook.svg');
}
.header-section-social .social-link-instagram {
	background-image: url('../images/2021/icon-social-intagram.svg');
}
.header-section-social .social-link-twitter {
	background-image: url('../images/2021/icon-social-twitter.svg');
}
.header-section-social .social-link-youtube {
	background-image: url('../images/2021/icon-social-youtube.svg');
}
.social-link + .social-link { margin-left: 15px; }
.social-link:hover { filter: brightness(.5); background-color: transparent; transition: .2s ease;}

/* SERVCES */
.header-section-services {
	display: none;
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 20px;
	margin-bottom: 30px;
}
.is-home-page .header-section-services {
	display: block;
}
.header-section-services .inner {
	overflow: hidden;
}
.header-section-services .service-items {
	margin: 0 -2px -1px 0;
}
.header-section-services .service-items .service-item {
	background-color: rgba(13,69,102,0.8);
	border: 1px solid rgba(255,255,255,0.3);
	border-width: 0 1px 1px 0;
}

.header-section-services .service-title {
	display: none;
}

.header-section-services .service-title h2 {
	color: #262626;
	font-size: 22px;
	line-height: 24px;
	margin: 0;
	text-transform: uppercase;
}
@media (min-width: 1200px) {
	.header-section-services {
		padding: 0;
		margin-bottom: 30px;
	}
	.header-section-services .service-title {
		display: block;
	}
	.header-section-services .service-title h2 {
		background-color: rgba(255, 255, 255, .9);
		font-weight: 500;
		height: 50px;
		line-height: 50px;
		text-align: center;
		width: 399px;
	}

}

.header-section-services .service-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	    flex-flow: row wrap;
	background: rgba(12,61,89,0.8);
	/*justify-content: space-between;*/
	/*align-items: stretch;*/
	/*align-content: center;*/
}
.header-section-services .service-items .service-item {
	position: relative;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	/*max-width: 150px;*/
	width: 50%;
	max-height: 180px;
}

@media only screen and (min-width : 480px) {
	.header-section-services .service-items .service-item {
		width: 33%;
	}
}
@media only screen and (min-width : 992px) {
	.header-section-services .service-items .service-item {
		width: auto;
	}
}

.header-section-services .service-items .service-item::before{
	content: " ";
	
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 60%;
}

.header-section-services .service-items .service-item a i { 
	display: inline-block; 
	width: 40px;
	height: 40px; 
	margin-bottom: 5px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.contact-service-item a i { background-image: url('../images/2021/icon-services-contact.svg'); }
.casework-service-item a i { background-image: url('../images/2021/icon-services-casework.svg'); }
.flag-requests-service-item a i { background-image: url('../images/2021/icon-services-flag.svg'); }
.visit-service-item a i { background-image: url('../images/2021/icon-services-tour.svg'); }
.veterans-service-item a i { background-image: url('../images/2021/icon-services-veterans.svg'); }
.academy-nominations-service-item a i { background-image: url('../images/2021/icon-services-academy.svg'); }

.header-section-services .service-items .service-item a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	overflow: hidden;
	text-align: center;
	text-shadow: 1px 1px 0px rgba(0, 55, 125, 0.5);
	text-transform: uppercase;
	
	display: -webkit-box;
	
	display: -ms-flexbox;
	
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.header-section-services .service-items .service-item a, .header-section-services .service-items .service-item a:link, .header-section-services .service-items .service-item a:visited {
	color: #fff;
}
.header-section-services .service-items .service-item a:hover, .header-section-services .service-items .service-item a:active, .header-section-services .service-items .service-item a:focus {
	background-color: rgba(255, 255, 255, .15);
	color: #fff;
	text-decoration: none;
}
.header-section-services .service-items .service-item a .service-span {
	padding: 0 0;
	font-size: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header-section-services .service-items .service-item a .service-span i {
	margin-bottom: 10px;
}
.header-section-services .service-items .service-item a .service-span strong {
	margin-top: 5px;
}
.header-section-services .service-items .service-item a span em {
	font-style: italic;
	font-weight: 400;
}

@media (min-width: 480px) {
	.header-section-services .service-items .service-item::before {
		padding-top: 100%;
	}
}
@media (max-width: 400px), (min-width: 641px) and (max-width: 767px), (min-width:1200px) and (max-width:1419px) {
	.header-section-services .service-items .service-item a {
		font-size: 14px;
	}
}
@media only screen and (max-width : 991px) {
	.header-section-services .service-items .service-item a .abbrev { display: none; }
}

@media (min-width: 1200px) {
	.header-section-services .service-items {
		background:none;
	}
	.header-section-services .service-items .service-item::before {
		box-shadow: none;
	}
	.header-section-services .service-items .service-item a {
		border-width: 0;
	}
}



/* SUBSCRIBE */

.header-section-subscribe {
	display: none;
	max-width: 970px;
	margin: 0 auto;
	padding: 0 20px;
}
.is-home-page .header-section-subscribe {
	display: block;
}
@media (max-width: 1199px) {
	.header-section-subscribe {
		margin-top: 20px;
	}
}
@media (min-width: 1200px) {
	.header-section-subscribe {
		display: block;
		position: absolute;
		top: 90px;
		right: 0px;
		
		height: 120px;
		margin: 0;
		padding: 0;
		width: 399px;
	}
}

.header-section-subscribe .subscribe-inner {
	position: relative;
	padding: 15px;
}
.header-section-subscribe .subscribe-inner::before{
	content: " ";
	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	
	display:block;
	background-color: rgba(12, 61, 89, 0.70);
}

.header-section-subscribe .subscribe-title {
	display: block;
}
.header-section-subscribe .subscribe-title h2 {
	color: #fff;

	font-size: 30px;
	font-weight:300;
	line-height: 34px;
	margin: 0;
	text-transform: uppercase;
}
@media (min-width: 641px) {
}
@media (min-width: 1200px) {
	.header-section-subscribe .subscribe-inner {
		padding: 0 15px 30px;
	}
	.header-section-subscribe .subscribe-title h2 {
		height: 40px;
		text-align: center;
	}
}
.header-section-subscribe .subscribe-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	    flex-flow: row wrap;
	/*justify-content: space-between;*/
	/*align-items: stretch;*/
	/*align-content: center;*/
}

.header-section-subscribe form {
	position: relative;
	
	display: block;
	height: 50px;
	margin: 0;
	padding: 0;
}
.header-section-subscribe label {
	display: none;
}
.header-section-subscribe input {
	border: 0;
	height: 50px;
	line-height: 50px;
}
.subscribe-btn {
	color: white;
	background-color: #661241;
	display: flex;
	align-items: center;
	padding: 9px 19px;
	font-size: 20px;
	font-weight: bold;
}
.subscribe-btn:hover {
	color: white;
	background-color: #450d2d;
	transition: .2s ease;
}
.signup-icon {
	height: 21px;
	width: 20px;
	background: url('../images/2021/icon-newsletter-signup.svg');
	background-size: contain;
	display: block;
	margin-right: 10px;
}

@media (min-width: 1200px) {
	.header-section-subscribe form {
		width: 310px;
		margin: 0 auto;
	}
}


/* NEW STYLES 2021 */

.top-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 62px;
}

@media(min-width: 1400px) {
	.top-menu { padding: 10px 0; max-width: 1400px;}
}

.header-right {
	display: none;
}
@media(min-width: 768px) {
	.header-right {
		display: flex;
		align-items: center;
		position: absolute;
		right: 10px;
    top: 5px;
	}
	.top-menu {
		border-bottom: 1px solid #222C3644;
	}
}
@media(min-width: 1200px) {
	.top-menu { padding: 10px 30px; }
	.header-right {
		position: unset;
	}
}
@media(min-width: 1400px) {
	.top-menu { padding: 10px 0;}
}
