:root {
	--primary-color-hex: var(--purple);
	--primary-color-hex: #4d6baf;
	--primary-color: var(--primary-color-hex);
	--primary-color-text: #fff;

	--secondary-color-hex: #fbc662;
	--secondary-color: var(--secondary-color-hex);
	--secondary-color-text: #111719;

	--purple: #4d6baf;
	--yellow: #fbc662;
	--charcoal: #111719;
	--navy: #0e2537;
	--nav-background: #fff);
	--nav-text: var(--charcoal);
	--grey: #808983;
	

	
	--section-padding-top: 3rem;
	--section-padding-bottom: 3rem;
	
	--footer-background-color: var(--charcoal);
	--footer-text-color: #fff;

	--copyright-background-color: #202020;
	
	--font-primary: 'Bodoni Moda', Bodoni MT, Didot, Didot LT STD, Hoefler Text, Garamond, Times New Roman, serif;
	--font-secondary: 'Montserrat', Helvetica, Arial, sans-serif;
	
	--header_spacer_height: 0px;
}


/* Default Styles
   ========================================================================== */


article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:active,
a:hover,
a:visited:hover,
a:active:hover {
    text-decoration: none;
    outline-width: 0
}

b,
strong {
    font-weight: inherit
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

a img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

.p_form {
	line-height: 1.5 !important;
}

.p_form .fld_check input, .p_form .fld_radio input {
	margin-top: 5px !important;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0
}

optgroup {
    font-weight: bold
}

button,
input {
    overflow: visible
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

html {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  /* Page Layout & Utility
   ========================================================================== */

body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  background: #353535;
  -ms-font-feature-settings: 'liga' 1, 'kern';
   -o-font-feature-settings: 'liga' 1, 'kern'; /* FF old */
      font-feature-settings: 'liga' 1, 'kern';
}

.main-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 0;
  margin: 0 auto;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 400;
  color: var(--charcoal);
}

.wide {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.container {
  position: relative;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}


.mobile {
  display: none !important;
}
.divider {
	 padding: 0px 3px
}

@media (max-width: 768px) {
  .wide, .main-container {
    width: 100%;
    min-width: 0;
  }

/*
  .container {
    width: 540px;
  }
*/
/*
.flex.stacked {
	margin-right: auto !important;
}
*/
.divider {
	 padding: 5px 3px
}
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*  Header
   ========================================================================== */
#header_spacer {
	position: relative;
	height: var(--header_spacer_height);
}

.primary {
	position: fixed;
	display: block;
	z-index: 3000;
	background-color: #fff;
	transition: .3s;
}
.primary:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
	background: linear-gradient(90deg, rgba(255,255,255,1) 13%, rgba(77,109,175,1) 13%, rgba(77,109,175,1) 87%, rgba(255,255,255,1) 87%);
    /* top: -30px; */
    left: 0;
    clear: both;
}

	.primary.scrolled {
/*
		padding-top: 10px;
		padding-bottom: 10px;
*/
		background-image: none;
		box-shadow: 0 -5px 10px #000;
		background-color: #fff;
	}

.primary > .container {
  width: 87%;
  padding-left: 0;
  padding-right: 0;
  padding-top: 40px;
  display: table;
  vertical-align: middle;
}

#logo {
  display: table-cell;
  transition: .25s ease-out;
  line-height: 1;
  vertical-align: middle;
}

#logo a {
  display: block;
}

#logo img {
	padding: 30px 0 30px;
	width: 410px;
	max-width: 410px;
	height: auto;
	transition: .3s;
	
/* 	filter: invert(1); */
}

	.primary.scrolled #logo img {
	    padding: 23px 0;
	    max-width: 300px;
/* 		filter: invert(0); */
	}
	
	.primary.scrolled > .container {
		padding-top: 0px;
	}
	.primary.scrolled:before {
		display: none;
	}

/*
.site-header.wide {
	border-bottom: 15px solid var(--orange);
}
*/

@media (max-width: 1024px) {
	:root {
		--header_spacer_height: 0;
	}

	#logo img {
	    max-width: 300px;
	    padding: 15px 0;
	}
	.primary.scrolled #logo img {
	    padding: 17px 0;
	    max-width: 260px;
	    /* filter: invert(0); */
	}	
  .primary {
/*     padding: 10px 0; */
    display: block;
  }
}

/*
@media (max-height: 600px) {
  .primary {
    position: relative;
    padding: 0;
  }
  
  	.primary.scrolled {
	  	padding: 0;
  	}
  
  .primary > .container {

    width: 100%;
    padding: 0;
  }
  
  #logo {
    float: left;
    display: block;
    margin-left: 2%;
    padding: 12px 0;
    width: 70%;
    max-width: 300px;
    
    float: none;
  }
  
  	#logo img {
	  	width: 100%;
  	}
}
*/
  
/*  Navigation
   ========================================================================== */
   
   
   
/*  OneCast
   ========================================================================== */
	.media-library-category-container .media-library-category-container-wrapper {
	   background-color: #fafafa !important;
	   color: var(--charcoal) !important;
	   border-top: none !important;
	}
	.media-library-category-container h2 {
	   color: var(--charcoal) !important;
	   	   font-family: var(--font-primary);
	}
	.media-library-item-container.active::before, .media-library-item-container.active::after {
		border-color: transparent !important;
	}


/*  General Content Styles
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#content .cb-body img {
  max-width: 100%;
  height: auto;
}


.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

a.btn, a.btn:visited,
span.btn {
    position: relative;
    padding: 10px 13px;
    font-size: clamp(13px, 3.55vw, 15px);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .4s;
    opacity: 1;
    display: inline-block;
    margin-bottom: 0.5em;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
}


	a.btn.purple, a.btn.purple:visited,
	span.btn.purple {
	    color: var(--primary-color-text);
	    background: var(--primary-color);
	}

	a.btn.yellow, a.btn.yellow:visited,
	span.btn.yellow {
	    color: var(--secondary-color-text);
	    background: var(--secondary-color);
	}

	a.btn.charcoal, a.btn.charcoal:visited,
	span.btn.charcoal {
	    color: #fff;
	    background: var(--charcoal);
	}
	a.btn.gray, a.btn.gray:visited,
	span.btn.gray {
	    color: #fff;
	    background: var(--grey);
	}	
	a.btn.white, a.btn.white:visited,
	span.btn.white {
	    color: var(--charcoal);
	    background: #fff;
	}

		a.btn span,
		span.btn span {
			position: relative;
			display: inline-block;
			transition: .2s;
		}


  	a.btn:hover,
  	span.btn:hover {
		filter: brightness(110%);
	}
	
		a.btn:hover span,
		span.btn:hover span {
			transform: translateX(4px);
		}


/*  Footer
   ========================================================================== */

#bottom {
	background-color: var(--footer-background-color);
	height: auto;
	padding-top: var(--section-padding-top);
}

	#bottom > .container {
		width: 81%;
		max-width: 1500px;
		padding-bottom: var(--section-padding-top);
	}

#bottom .contact_container {

}

	#bottom img {
		width: 60%;
	    max-width: 610px;
	    margin: 45px auto;
	    min-width: 230px
	}
	.footer-info .container {
		padding-bottom: 15px;
		width: 74%;
	    justify-content: space-between;		
	}
		.site-footer:before {
		    content: '';
		    position: absolute;
		    width: 100%;
		    height: 30px;
			background: linear-gradient(90deg, rgba(17,23,25,1) 13%, rgba(77,109,175,1) 13%, rgba(77,109,175,1) 87%, rgba(17,23,25,1) 87%);
		    bottom: 0;
		    left: 0;
		    clear: both;
			z-index: 1;
		}
.footer-copyright {
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
/*     max-width: 600px; */
}

.footer-copyright p {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 100;
  color: #fff;
  vertical-align: middle;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-copyright a,
.footer-copyright a:visited{
  color: #fff;
  text-decoration: none;
} 
	#bottom .footer-copyright img {
	    margin: 10px auto;
	    filter: invert(1) brightness(1.4);
	    min-width: 100px;
	    max-width: 100px;
	}	
		.footer-eeoc {
		    text-align: center;
		    align-items: center;
		    justify-content: flex-end;
		}
			.footer-eeoc a {
			    FONT-WEIGHT: 100;
			    font-size: 13px;	
			    padding-left: 7%;
			    padding-right: 7%;
			}
			
			.footer-eeoc a:last-child {
			    padding-left: 7%;
			    padding-right: 0px;	
			}			
#bottom .columns {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 60px 0 60px 10px;
	flex: 1 1 auto;
}


.columns .col {
	position: relative;
	min-height: 150px;
	height: auto;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
/*     text-transform: uppercase; */
}

	.columns .col:last-child {
		margin-left: 20px;
		padding-left: 50px;
	}

.col h5 {
	position: relative;
	margin: 0 0 0.5em;
	color: var(--footer-text-color);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 5px;
	text-transform: uppercase;
}

	.col h5 a {
		color: var(--footer-text-color);
		text-decoration: none;
	}

		.col h5 a:hover {
			text-decoration: underline;
		}

.col p {
	position: relative;
    margin: 0 0 .75em;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.25;
    text-transform: uppercase;
}

	.col p a {
		color: var(--footer-text-color);
		text-decoration: none;
	}
	
		.col p a:hover {
			color: var(--primary-color);
			text-decoration: underline;
		}


.footer-background {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 110%;
    height: 250%;
    background-image: var(--background-image);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: contrast(0);
    opacity: .3;
    pointer-events: none;
}

.site-footer a {
		color: var(--footer-text-color);
		text-decoration: none;
		white-space: nowrap;
}

.site-footer .location-info {
    position: relative;
    font-size: 24px;
    margin-right: 1.5em;
    display: flex;
    }
	.site-footer .location-info p {
		margin: 0;
		font-family: var(--font-secondary);
		font-size: clamp(.8rem, 1.55vw, 1.19rem);
		font-weight: 400;
		color: var(--footer-text-color);
		text-transform: uppercase;
		line-height: 1.5;
		white-space: nowrap;
		letter-spacing: 1px;
	}

	.site-footer .contact-info {
		position: relative;
		margin-top: 3em;
	}

		.site-footer .contact-info p {
		    margin: 0;
		    font-size: 1.4rem;
		    font-weight: 600;
		    color: var(--footer-text-color);
		    text-transform: uppercase;
		    line-height: 1.2;
			white-space: nowrap;
		}
		
			.contact-info a[href^='tel'] {
				font-size: 35px;
				font-weight: 400;
			}
	
			.contact-info a[href^='mailto:'] {
				font-size: 18px;
			}
	

.site-footer {
	background-image: var(--background-image);
	background-position: center bottom;
	background-size: cover;
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  overflow: hidden;
  padding: 0;
}

.footer-row {
  margin: 5em auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-flex-flow: row nowrap;
          flex-flow: row;
  -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}

.footer-column {
  font-size: 1.4em;
  line-height: 1.6;
}

.footer-column p {
  margin: .2em 0;
}

.footer-column a:not(.button) {
  color: #fff;
}

.footer-column strong {
  font-size: 1.14em;
}

.footer-column strong,
.footer-column strong a {
  color: #dea92c !important;
  font-weight: 600;
}

.footer-column a:not(.button):not(.social-link):hover {
  text-decoration: underline;
}

.footer-column a.button {
  font-size: 14px;
  margin: 1em 0;
}

#search {
  position: relative;
  width: 260px;
  margin: 0;
}

.search-input {
  position: relative;
  width: 100%;
  padding: 8px 48px 8px 8px;
  font-size: 16px;
  line-height: 16px;
  background: #404140;
  color: #fff;
  outline: 0;
  box-sizing: border-box;
}
	
	.search-btn,
	.search-input {
	  margin: 0;
	  border: 0;
	  border-radius: 0;
	  -webkit-appearance: none;
	}
	
		.search-btn {
		  position: absolute;
		  top: 0;
		  right: 0;
		  bottom: 0;
		  width: 40px;
		  background: var(--primary-color);
		  color: #fff;
		  font-size: 13px;
		}

.footer-info {
  padding: 2em 0;
}

	.footer-info::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--footer-background-color);
	}

	.social_container {
		color: var(--red);
		font-size: 45px;
		display: flex;
	}
	
		.social_container a {
			color: var(--secondary-color);
			text-decoration: none;
			transition: .2s;
		}
		
			.social_container a:not(:first-child) {
				padding-left: 40px;
			}
		
			.social_container a:hover {
				color: var(--primary-color);
			}
@media (max-width:1024px) {
	.primary > .container {
		padding-top: 0;
	}	
		#logo img {
		    max-width: 200px;
		    padding: 25px 0;
		}
		.primary.scrolled #logo img {
		    padding: 25px 0;
		    max-width: 170px;
		    /* filter: invert(0); */
		}
		.primary:before {
		    content: none;
		    position: relative;
		    width: 0%;
		    height: 0px;
			background: linear-gradient(90deg, rgba(255,255,255,1) 13%, rgba(77,109,175,1) 13%, rgba(77,109,175,1) 87%, rgba(255,255,255,1) 87%);
		    /* top: -30px; */
		    left: 0;
		    clear: both;
		}	
		.footer-eeoc {
		    max-width: 180px;
		}
}	
@media (max-width: 950px) {
	#bottom .flex {
	    flex-direction: column;
	    align-items: center;
	}
	#bottom .grid-50 {
	    width: 100%;
	}	
	#bottom > .container {
		width: 95%;
		align-items: center;
		padding-bottom: 0;
	}
	
		#bottom > .container > div {
			width: 100%;
			align-items: center;
			padding: 0;
		}

		.site-footer .contact-info p {
			text-align: center;
		}

	.columns .col {
	    width: 90%;
	    margin: 0 auto 2rem;
	}
	.columns .col.column-one {
	    width: 90%;
	    margin-bottom: 30px;
	}
	
	#bottom .columns {
	    display: flex;
	    justify-content: center;
	    flex-direction: column;
	    text-align: center;
	}

		#bottom .columns .col:last-child {
			margin-left: auto;
			padding: 0;
		}
		
			.footer-background {
				left: 50%;
				transform: translate(-50%, -50%);
				background-position: center;
			}
			.footer-eeoc a:last-child {
			    padding-left: 7%;
			    padding-right: 7%;
			}
			.social_container {
				padding-top: 20px;
			}
				
}

@media (max-width: 768px) {
	.flex.stacked > img {
	    margin: 0 auto;
	}		
	#bottom .contact_container {
		padding: 60px;
	}
	
		#bottom .contact_container img {
			padding-right: 0;
		}

	#bottom > .container {
		width: 100%;
		align-items: center;
	}
	
		#bottom > .container > div {
			width: 100%;
			align-items: center;
		}

		.site-footer .contact-info p {
			text-align: center;
		}

	.columns .col {
	    width: 90%;
	    margin: 0 auto 2rem;
	}
	.columns .col.column-one {
	    width: 90%;
	    margin-bottom: 30px;
	}
	
	#bottom .columns {
	    display: flex;
	    justify-content: center;
	    flex-direction: column;
	    text-align: center;
	}

		#bottom .columns .col:last-child {
			margin-left: auto;
			padding: 0;
		}
		
			.footer-background {
				left: 50%;
				transform: translate(-50%, -50%);
				background-position: center;
			}
			.footer-info .container {
				width: 100%;
			}
			.site-footer .location-info {
				margin-right: 0;
			}
	#search {
	    position: relative;
	    width: 100%;
	    margin: 0;
	}


	body.modal_active #modal_container {
		overflow: hidden;
	}
	
	#modal_container[data-modal] .modal_window {
		width: 100%;
		height: 100%;
		top: 0;
		padding-bottom: 0;
	}
	
	#modal_container .modal_window .modal_body {
		overflow: auto;
	}
	.site-footer .location-info {
		flex-direction: column;
		align-items: center;
    }
    .site-footer .location-info p {
	    padding: 8px 0;
    }
    span.divider {
	    display: none;
    }
}	
	
@media (max-width: 640px) {
  .footer-row {
    -ms-flex-flow: column;
        -webkit-flex-flow: column;
            flex-flow: column;
    text-align: center;
  }
  
  	.social_container {
	  	font-size: 30px;
  	}

	.site-footer .location-info p {
		text-align: center;
		white-space: normal;
	}



  .footer-column {
    margin: 1em 0;
    font-size: 1.4em;
    line-height: 2;
  }
  
  #bottom .floating-icon-container {
	  width: 50%;
	  max-width: 160px;
  }

  #search {
    width: 100%;
  }


  .footer-copyright {
    text-align: center;
    
  }
  .site-footer a {
	  white-space: normal;
  }

  .footer-copyright p {
    display: block;
    margin: 20px auto;
  }

	#section-social .right {
		text-align: right;
		justify-content: center;
		font-size: 32px;
		color: #fff;
		text-align: center;
	}
}

@media (max-width: 500px) {
	#bottom .contact_container {
		padding: 0;
	}
}