:root {
	--font-primary: 'Plus Jakarta Sans', Arial, sans-serif;
	--font-secondary: 'Source Sans 3', Helvetica, sans-serif;
	--font-tertiary: 'Nunito', Helvetica, sans-serif;
    --color-primary: #73C6BE;
    --color-secondary: #5782BB;
    --color-tertiary: #00ebff;
    --color-accent1: #DDDDDD;
    --color-accent2: #6B6B6B;
    --color-accent3: #FABE00;
    --color-text1: #000000;
    --color-text2: #333333;
    --color-link: #2a56c6;
    --color-bg-dark: #282828;
	--color-bg-light: #ffffff;
    --color-bg-footer: #f8f9fa;
}
html, body {
	overflow-x: hidden;
    /*-webkit-font-feature-settings: 'liga';*/
	-webkit-font-smoothing: antialiased;
}
body {
	position: relative
}
.navbar {
	box-shadow: 0 2px 6px #00000026;
	font-family: var(--font-secondary);
}
.header-search_collapse {
	background-color: var(--color-bg-light)!important;
	width: 100%;
	margin-top: 0px!important;
}
.header-bg {
	background-color: var(--color-bg-light)!important;
}
header .navbar-brand, header .nav-link {
    padding: 0 4px;
}

/* homepage search bar */
.search {
	flex: 1;
	min-width: 20rem;
	margin-top: .25em;
	position: relative;
	font-family: var(--font-secondary);
}
.search .col-md-9 {
	margin-top: .25em;
}
.search-input {
	border: 1px solid var(--color-primary);
	border-radius: 5px;
	padding: 10px 45px 10px 20px;
	transition: all .3s;
	-webkit-appearance: none !important;
	width: 100%;
	outline: none;
}
[type=search] {
	outline-offset: -2px;
}
input {
	overflow: visible;
	margin: 0;
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
}
.material-symbols-outlined {
	font-family: 'Material Symbols Outlined';
	font-weight: bold;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	font-variation-settings:'FILL'0,'wght'700,'GRAD'0,'opsz'48
}
.search-icon {
	cursor: pointer;
	box-shadow: none;
	background: 0 0;
	border: none;
	margin-top: 2px;
	transition: all .3s;
	position: absolute;
	top: 50%;
	right: 2px;
	transform: translateY(-50%);
}
.col-lg-6,.col-md-4 {
	margin-bottom: 20px;
	/* Space between each row */
}
.card {
	height: 100%;
	/* Ensures equal heights for all cards */
	border-radius: 15px;
	/* Rounded corners for cards */
	margin-bottom: 20px;
	/* Space below each card */
}
.card-body {
	padding: 1.25em 1.25em 0 1.25em;
}
.card-img-top {
	object-fit: cover;
	width: 100%;
	max-height: 200px;
	background-color: var(--color-accent1);
}
.card-title,h1,h2,h3 {
	font-family: var(--font-primary);
	font-weight: 700;
}
.card-text {
	/* Truncate text after 2 lines */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0px;
    font-family: var(--font-secondary);
}
.card-text-large {
	/* Truncate text after 4 lines */
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: var(--font-secondary);
}
footer .nav-item a {
	color: var(--color-text2);
	font-size: .75em;
}
.footer__disclaimer,.footer__copyright {
	margin-bottom: 0;
	padding: .5em 1em;
	font: normal 400 0.75rem/1.5 var(--font-tertiary);
	color: var(--color-text2); /* previously #212529*/
}
.footer__copyright {
	text-align: center;
}
.footer__disclaimer a {
	color: var(--color-text2); /* previously #212529*/
}
.footer-bg {
	background-color: var(--color-bg-footer);
    color: var(--color-accent2); /* previously #72798f*/
    box-shadow: none!important;
}
.footer-bg .nav-item a {
    color: var(--color-text2);
    --bs-nav-link-color: var(--color-text2);
    font-size: .75em;
}
.form form {
	max-width: 100%;
}
body article {
	font-family: var(--font-primary);
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1.8;
	color: var(--color-text2);
}
article .container {
	max-width: 800px!important;
	background: var(--color-bg-light);
	padding: 20px;
}
article .hero-image {
	max-width: 700px;
	max-height: 300px;
	width: 100%;
	object-fit: cover;
	margin-bottom: 20px;
	object-position: 100% 50%;
	border-radius: 15px;
	display: block;
  	margin-left: auto;
  	margin-right: auto;
}
article h1, article h2, article h3, article h4, article h5, article h6 {
    color: var(--color-text1);
	font-family: var(--font-primary);
	font-weight: 600;
    margin: .5em 0;
}
article h1.title {
	font-weight: 700;
	margin-top: 0;
	font-size: 1.25rem;
	font-family: var(--font-primary);
    position: relative;
	padding-bottom: 1rem;
}
.title::after {
	background-color: var(--color-accent3);
	height: 0.125rem;
	content: "";
	width: 5rem;
	bottom: 0;
	left: 0;
	position: absolute;
}
article h2.subtitle {
	color: var(--color-primary);
	font-style: italic;
	margin-bottom: 1em;
	font-size: 1.2rem;
	display: none;
}
article a {
	color: var(--color-text2);
	text-decoration: underline;
}
article p, #relatedsearches1 {
	margin-bottom: 1.2em;
}
.breadcrumb-item+.breadcrumb-item::before {
	content: "/";
}
.breadcrumb-item+.keyword {
	text-transform: capitalize;
}
.breadcrumb {
	font-size: small;
	color: var(--color-text2);
    font-family: var(--font-tertiary);
}
.content h1 {
	font-size: 1.25rem;
}
.content h2 {
	font-size: 1.2rem;
}
.content h3 {
	font-size: 1.125rem;
}
.content h4 {
	font-size: 1rem;
}
.content h5 {
	font-size: .875rem;
}
.content h6 {
	font-size: .75rem;
}

/* C2A button styling */
button.c2a__btn {
	align-items: center;
	color: var(--color-accent3);
	display: flex;
	font-family: var(--font-secondary);
	font-size: 1rem;
	margin-left: auto;
	margin-right: auto;
	padding-top: 3rem;
	padding-bottom: 3rem;
	font-weight: 600;
}
.c2a__btn {
	all: unset;
	cursor: pointer;
}
.hiddenContent {
	display: none;
}
.displayedContent {
	display: block;
}

/* box-style search form */
.search-form__form {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-accent1);
    display: flex;
    border-radius: 2px;
    font-size: 13px;
	margin-block-end: auto;
}
.search-form__form>div, 
.search-form__q {
    display: flex;
    justify-content: space-between;
}
.search-form__form>div {
    flex: 1;
}
.search-form__q {
    background: transparent;
    border: 0;
    color: var(--color-accent2);
    font-size: 15px;
    height: 38px;
    line-height: 2.375;
    margin: 0;
    outline: none;
    padding: 5px 10px 5px 15px;
    min-width: 300px;
	width: 95%;
	max-width: 95%;
}
.search-form__clear, 
.search-form__clear--active {
    background-image: url();
}
.search-form__clear {
    display: none;
    height: 100%;
    width: 5%;
}
.search-form__button {
    background: transparent;
    background-color: var(--color-bg-light);
    border: 0;
    cursor: pointer;
    flex: 0 0 38px;
    font-weight: 400;
    height: 38px;
    width: 40px;
    line-height: 38px;
    padding: 0;
    -webkit-user-select: none;
    user-select: none;
}
.search-form__button .ico {
    background-image: url(/static/img/button-mobile.svg);
    background-size: 48%;
    background-position: 50%;
    background-repeat: no-repeat;
    height: 38px;
    width: 40px;
}

/* SERP Styling */
body.serp {
	background-color: var(--color-bg-light);
}
.serp .form-container {
	margin-top: 8px;
}
.serp-main {
	background-color: var(--color-bg-light);
	margin-top: 10px!important;
	margin-bottom: 10px!important;
}

.search-result p {
	margin-block-end: 1px;
}
.search-result {
	padding: 8px 0;
	font-family: Helvetica, Arial, sans-serif;
    /* font-family: var(--font-secondary); */

}
.search-result h2 {
	font-size: 16px!important;
	margin-bottom: 0px!important;
}
.search-result h2 a {
	font-size: 16px!important;
	margin-block-end: 1px;
	color: var(--color-link);
	font-family: Helvetica, Arial, sans-serif;
    /* font-family: var(--font-secondary); */
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;

}
.search-result .result-url {
	font-size: 13px;
	color: #202124;
	text-decoration: none;
}
.search-result .result-description {
	font-size: 12px;
	color: var(--color-text2);
	/* Truncate text after 2 lines */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	text-overflow: ellipsis;
}
.web-results {
	color: var(--color-text2);
	font-size: 12px;
	margin: 8px 0;
	text-transform: uppercase;
}
#afscontainer1, #afscontainer2 {
	padding-bottom: 10px;
}

/* 	post_recirc.html styling,               *
* 	shown on all "compliant" templates 	*/

div.post-recirc .card-title {
    font-weight: 500;
}

div.post-recirc .card-body {
	padding: 0!important;
	margin-top: .5em;
}

div.post-recirc .card-title:hover {
	text-decoration: underline;
	color: var(--color-secondary);
    font-weight: 700;
}

div.post-recirc .card-subtitle {
	font-size: 12px;
}

div.post-recirc .card {
	border: none!important;
	margin-bottom: 0!important;
}

.post-recirc-heading {
	font-size: 18px!important;
}

@media screen and (max-width: 480px) {
    header .nav-link {
        padding: 4px;
    }
}

@media screen and (min-width: 480px) {
	article .hero-image {
	  max-height: 400px;
	  width: 700px;
	}
}
@media screen and (max-width: 479px) {
	article .hero-image {
	  max-height: 263px;
	  width: 350px;
	}
}