@charset "utf-8";
/* CSS Document */
html, body {
	height: 100%;
	margin: 0px;
	background-color: white;
	color: black;
}



/* navbar */

.space-for-nav {
	padding-top: 85px;
}

.site-header-logo {
	height: 50px;
	width: 50px;
	margin: 5px;
}

/* index testing page */

.navtheme {
	background: #002259;
}

/*padding for just the navbar*/
.navbar-padding {
	padding-left: 10%;
	padding-right: 10%;
}

.nav-pills > button.nav-link {
	color: black;
	align-self: start;
}

/* vertical navigation */
.nav-pills > button.nav-link.active {
	background-color: hsl(28, 38%, 73.26%);
	color: black;
}



/* main */

* {
	box-sizing:border-box
}


/* images */

.image {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
}

/* image overlay for news preview */

.wrapper {
	position: relative;
}

.hover-img {
	display: block;
	width: 100%;
}

.overlay-content {
	position: absolute;
	top: 0;
	left: 0;
	padding: 2rem;
	width: 100%;
	height: 100%;
	background: rgba(0, 34, 89, 0.6);
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .4s;
}

.overlay-content > *{
	transform: translateY(20px);
	transition: transform 0.25s;
}

.overlay-content:hover {
	opacity: 1;
}

.overlay-content:hover > *{
	transform: translateY(0);
}

.hover-title {
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}

.hover-content {
	font-size: 1.25rem;
	margin-top: 0.25rem;
}

.latest {
	font-size: 1.2rem;
	font-weight: 700;
	margin-left: 1.5rem;
}

/* news articles */

.outline-article {
	border: 1px solid black;
}

.rounded {
	border-radius: 10px;
}

/* positioning */

.center {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.leftside-heading-index {
	position: absolute;
	left: 7%;
	top: 25%;
}


/* for the image collections on who-we-are, careers, and index */

.image-grid {
	--gap: 16px;
	--num-cols: 4;
	--row-height: 300px;
	
	box-sizing: border-box;
	padding: var(--gap);
	
	display: grid;
	grid-template-columns: repeat(var(--num-cols), 1fr);
	grid-auto-rows: var(--ro-height);
	gap: var(--gap);
}

.image-grid>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-grid-col-2 {
	grid-column: span 2;
}

.image-grid-row-2 {
	grid-row: span 2;
}

/*anything wider 1024px*/
@media screen and (max-width: 1024px) {
	.image-grid {
		--num-cols: 2;
		--row-height: 200px;
	}
}


/*scrolling of industry leaders*/
.scroller {
	max-width: 1500px;
}

.scroller[data-animated="true"] {
	overflow: hidden;
	
	-webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
	mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller-inner {
	width: max-content;
	flex-wrap: nowrap;
	animation: 
		scroll 
		var(--_animation-duration, 80s) 
		var(--_animation-direction, forwards)
		linear 
		infinite;
}

.scroller[data-direction="right"] {
	--_animation-direction: reverse;
}

.scroller[data-direction="left"] {
	--_animation-direction: forwards;
}

@keyframes scroll {
	to {
		transform: translate(calc(-50% - 0.5rem));
	}
}


/* scrolling animation for scroll animated sections */

@media (prefers-reduced-motion: no-preference) {
	.scroll-image {
		scale: .8; opacity: 0;
		animation: fade-in linear forwards;
		animation-timeline: view();
		animation-range: 15% 35%;
	}

	@keyframes fade-in {
		to {
			scale: 1; opacity: 1;
		}
	}
}


 
/*size of logos for scrolling industry leaders*/
.infinite-svg {
	height: 5em;
}

.scroller-inner {
	padding-block: 1rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
}


/* link styling */

a:link,
a:visited {
	text-decoration: none;
}

button>a:link,
button>a:visited {
	color: white;
}


/* text styling */

.subhead {
	font-size: 1.2rem;
}

.article-title {
	font-size: 3rem;
	color: #0047bb;
}

/*headings on images not at the header*/
.midsize-heading {
	font-size: 2.5rem;
}

.blue-text {
	color: #0047bb;
}

.no-bullets {
	list-style-type: none;
}

/* margins */

.section-break {
	margin-top: 5%;
}


/* padding */

/*padding on top of any element*/
.topside {
	padding-top: 5%;
}

/*padding at the bottom of any element*/
.bottom-spacing {
	padding-bottom: 4%;
}

/* padding for the body of every page */
.blog-padding {
	padding-left: 15%;
	padding-right: 15%;
}

/* news article padding */
.article-padding {
	padding-left: 25%;
	padding-right: 25%;
}


/* containers */

/*top of page image container*/
.containertop {
	display: flex;
	flex: auto;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

/*container for large image with text*/
.img-container {
	display: flex;
	flex: auto;
	align-items: center;
	flex-direction: column;
	position: relative;
	width: 100%;
}


/* svg styling */

.benefit-svg {
	height: 4em;
	width: 4em;
}

.button-svg {
	height: 2.2em;
	width: 2.2em;
}

.light-svg {
	fill: white;
	height: 10em;
	width: 10em;
}

.lg-svg {
	fill: white;
	height: 18em;
	width: 18em;
}


/* card styling */

.card-pad {
	padding: 1rem;
}

.card {
	/*added shadows to create the card effect*/
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
}

/*deeper shadow with hover*/
.card:hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}


/* SLICwave LC page */

.swlc-modules-graphic {
	display: block;
	margin: 0 auto;
	height: 500px;
	width: 500px;
}

/*smaller graphic for the smaller image map*/
.yes-smallmobile {
	display: none;
}


/* tables */
table,
th,
td {
	border: 1px solid black;
    border-collapse: collapse;
    padding: 0.5em;
}

thead {
	background-color: hsl(0, 0%, 81.18%);
}

.alternate {
	background-color: #ececec;
}

/* enlarged text to have a focus point in news articles */
.popout {
	font-size: x-large;
	font-weight: 500;
	background-color: #80B0FF;
	border-radius: 1em;
	padding: 1em;
}

.emphasis {
	background-color: #ececec;
	padding: 1em 2em 1em 2em;
	border-radius: 1em;
	border: solid 1px black;
}


/* backgrounds */

.low-opacity-blue {
	background-color: rgba(0, 34, 89, 50%);
}

.gray-background {
	background-color: #ececec;
}

.background-iss-gradient {
	background: rgb(0,15,40);
	background: linear-gradient(199deg, rgba(0,15,40,1) 0%, rgba(0,34,89,1) 35%, rgba(0,71,187,1) 100%); 
}

.darker-gradient {
	background: #00348A;
	background: linear-gradient(136deg, rgba(0, 52, 138, 1) 0%, rgba(0, 34, 89, 1) 66%, rgba(0, 15, 40, 1) 100%);
}

.light-gradient {
	background: #80B0FF;
	background: linear-gradient(169deg, rgba(128, 176, 255, 1) 0%, rgba(0, 71, 187, 1) 100%);
}

.light-low-opacity {
	background: #80B0FF;
background: linear-gradient(169deg, rgba(128, 176, 255, 0.29) 0%, rgba(128, 176, 255, 0.52) 100%);
}

.light-low-opacity-gradient {
	background: #80B0FF;
	background: linear-gradient(169deg, rgba(128, 176, 255, 0.73) 0%, rgba(0, 71, 187, 1) 100%);
}

.swlc-background-img {
	background-image: url("../images/index/background-20-opacity.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.background-careers-img {
	background-image: url("../images/careers/career-background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.background-apache-img {
	background-image: url("../images/who-we-are/background-apache.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.white-texture {
	background-image: url("../images/index/fade-angles-horizontal-crop.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


.dropdown-width {
	max-width: 300px;
}

.buffer {
	margin-top: -150px;
	padding-bottom: 150px;
	display: block;
}


/* footer */

footer {
    position: relative;
	padding: 2rem 0 2rem 0;
	font-size: 13px;
	background-color: #000f28;
	width: 100%;
}

footer a:link,
footer a:visited {
	color: white;
	text-decoration: none;
}

.footer-icon {
	width: 1.5rem;;
	height: auto;
}




/* breakpoints */

@media (max-width: 1399.98px) {
	.midsize-heading {
		font-size: 2em;
	}
	.article-title {
		font-size: 3.5em;
	}
	.subhead {
		font-size: 1.17em;
	}
	.scroller {
		max-width: 1200px;
	}
	.infinite-svg {
		height: 4em;
	}
	.md-btn {
		font-size: 1em;
	}
	.hover-title {
		font-size: 1.25rem;
	}
	.hover-content {
		font-size: 1rem;
	}
}

@media (max-width: 1199.98px) {
	.article-title {
		font-size: 3em;
	}
	.subhead {
		font-size: 1.1em;
	}
	.scroller {
		max-width: 1000px;
	}
	.infinite-svg {
		height: 3.5em;
	}
	.benefit-svg {
		height: 3em;
		width: 3em;
	}
	.lg-svg {
		height: 15em;
		width: 15em;
	}
	.hexagon-detail {
		display: none;
	}
	.popout {
		font-size: 1.4em;;
	}
}

@media (max-width: 991.98px) {
	.subhead {
		font-size: 1.05em;
	}
	.scroller {
		max-width: 800px;
	}
	.infinite-svg {
		height: 3em;
	}
	.card-pad {
		padding: 1.25em;
	}
	.small {
		font-size: 0.9em;
	}
	.benefit-icon-text {
		font-size: 0.9em;
	}
	.lg-svg {
		height: 13em;
		width: 13em;
	}
	.popout {
		font-size: 1.2em;
	}
	.image-tablet {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 767.98px) {
	.nomobile {
		display: none;
	}
	.article-title {
		font-size: 2.5em;
	}
	.subhead {
		font-size: 0.9em;
	}
	.card-text {
		font-size: 0.9em;
	}
	.scroller {
		max-width: 600px;
	}
	.infinite-svg {
		height: 2.5em;
	}
	.visible-md {
		display: block;
	}
	.card-pad {
		padding: 0.7em;
	}
	.light-svg {
		height: 8em;
		width: 8em;
	}
}

@media (max-width: 575.98px) {
	.no-smallmobile {
		display: none;
	}
	.yes-smallmobile {
		display: block;
		width: 100%;
		height: auto;
		position: relative;
	}
	.small-tablet {
		font-size: 0.9em;
	}
	.subhead {
		font-size: .8em;
	}
	.scroller {
		max-width: 400px;
	}
	.infinite-svg {
		height: 2em;
	}
	.swlc-modules-graphic {
		height: 240px;
		width: 240px;
	}
	.light-svg {
		height: 6em;
		width: 6em;
	}
	.article-padding {
		padding-right: 15%;
		padding-left: 15%;
	}
	.popout {
		font-size: large;
	}
	.hover-title {
		font-size: 1rem;
	}
	.hover-content {
		font-size: 0.75rem;
		margin-top: 0.15rem;
	}
}

@media (max-width: 375px) {
	.phone-btn {
		font-size: 0.8em;
		padding: 3%;
	}
	.article-title {
		font-size: 2.25em;
	}
	.subhead {
		font-size: 0.75em;
	}
	.small-tablet {
		font-size: 0.8em;
	}
	.scroller {
		max-width: 200px;
	}
	.infinite-svg {
		height: 1.5em;
	}
	.light-svg {
		height: 5em;
		width: 5em;
	}
	.small {
		font-size: 0.8em;
	}
	.card-pad {
		padding: 0.5em;
	}
	.ex-title {
		font-size: 0.75em;
	}
	.lg-svg {
		height: 8em;
		width: 8em;
	}
	.hover-title {
		font-size: 0.5rem;
	}
	.hover-content {
		font-size: 0.25rem;
		margin-top: 0.25rem;
	}
}