@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	/* Colors */
	--primary-color: #002856;
	--secondary-color: #7badd3;
	--accent-color: #ba0c2f;
	--dark-color: #000000;
	--light-color: #ffffff;
	--input-border-colour: #c9c9c9;

	/* Other variables */
	--border-radius: 5px;
	--img-border-radius: 15px;
	--box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	--padding: 10px 28px;
	--button-border-radius: 0px;

	/* Cards */
	--card-background-colour: #ffffff;
	--card-border-colour: #c9c9c9;
	--card-padding: 30px 30px;

	/* Fonts */
	--font-family-body: 'Open Sans', Helvetica, Arial, sans-serif;
	--font-family-heading: 'EB Garamond', Garamond, Times, serif;
	--font-family-serif: 'EB Garamond', Garamond, Times, serif;
	--font-size-h1: 60px;
	--font-size-h2: 34px;
	--font-size-h3: 30px;
	--font-size-h4: 26px;
	--font-size-h5: 18px;
	--font-size-h6: 16px;

	/* Search page columns Job Search cards layout, change 100% for 1 job, 33% for 3, 25% for 4 */
	--card-columns: 33%;
	--filter-columns: 25%;
}

/*** Global Theme ***/
body {
	background: #fff;
	color: var(--dark-color);
	line-height: 1.5;
	font-family: var(--font-family-body);
	font-weight: 400;
	font-size: 16px;
}
/** Typography **/
h1,
h2,
h3 {
	color: var(--primary-color);
}
.h1,
.h2,
.h3,
h1,
h2,
h3 {
	font-family: var(--font-family-heading);
}
.h4,
.h5,
.h6,
h4,
h5,
h6 {
	font-family: var(--font-family-body);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
	font-weight: 600;
}
.h1,
h1 {
	font-size: var(--font-size-h1);
}
.h2,
h2 {
	font-size: var(--font-size-h2);
}
.h3,
h3 {
	font-size: var(--font-size-h3);
}
.h4,
h4 {
	font-size: var(--font-size-h4);
}
.h5,
h5 {
	font-size: var(--font-size-h5);
}
.h6,
h6 {
	font-size: var(--font-size-h6);
}
p,
span {
	font-size: 16px;
	letter-spacing: -0.05px;
}
a,
a:active,
a:visited,
a:focus {
	color: var(--primary-color);
}
a:hover {
	color: var(--primary-color);
}
.hero-h1 h1 {
	font-size: 56px;
}
.hero-h2 h2 {
	font-size: 46px;
}
/** Navigation **/
.nav-item {
	margin: 0px;
}
.nav-link {
	/* color: var(--dark-color) !important; */
	font-size: 14px;
	font-weight: 600;
	padding: 8px 14px !important;
}
.dropdown .dropdown-item {
	color: var(--dark-color) !important;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 14px !important;
}

/* Logos */
.navbar-brand-logo {
	width: 100%;
	max-width: 350px;
	padding: 0;
    height: auto;
}
.footer-brand-logo {
	width: 100%;
	max-width: 350px;
}

/*** Buttons ***/
.btn,
button,
a.button {
	font-weight: 600;
	font-family: inherit;
	text-transform: inherit;
	line-height: 1.5;
	padding: var(--padding);
	-webkit-transition: background 0.25s linear;
	-moz-transition: background 0.25s linear;
	-o-transition: background 0.25s linear;
	transition: background 0.25s linear;
	border-radius: var(--button-border-radius);
	font-size: 18px;
	text-transform: inherit;
}
.btn-primary {
	background: var(--primary-color);
	color: var(--light-color);
	border: 1px solid var(--primary-color);
}
.btn-primary:hover,
.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus {
	background: var(--secondary-color);
	color: var(--light-color);
	border: 1px solid var(--secondary-color);
}
.btn-success {
	background: var(--secondary-color);
	color: var(--light-color);
	border: 1px solid var(--secondary-color);
}
.btn-success:hover,
.btn-success:visited,
.btn-success:active,
.btn-success:focus {
	background: var(--primary-color);
	color: var(--light-color);
	border: 1px solid var(--primary-color);
}
.btn-info {
	background: var(--primary-color);
	color: var(--light-color);
	border: 1px solid var(--primary-color);
}
.btn-info:hover,
.bbtn-info:visited,
.btn-info:active,
.btn-info:focus {
	background: var(--secondary-color);
	color: var(--light-color);
	border: 1px solid var(--secondary-color);
}
/* custom buttons */
a.button.button1,
a.button.button1:visited,
.btn-primary,
.btn-primary:visited {
	background-color: #003057;
	color: #fff;
	text-decoration: none;
	border: none;
	border-radius: var(--button-border-radius);
	font-weight: 700;
	line-height: normal;
	transition: all 0.2s ease-in-out;
}

a.button.button1:hover,
a.button.button1:active,
.btn-primary:hover,
.btn-primary:active {
	background-color: #003057;
	color: #fff;
	text-decoration: none;
	border: none;
	border-radius: var(--button-border-radius);
	filter: brightness(160%);
	font-weight: 700;
	line-height: normal;
	transition: all 0.2s ease-in-out;
}

a.button.button1:focus,
a.button.button1:focus-visible,
.btn-primary:focus,
.btn-primary:focus-visible {
	background-color: #003057;
	color: #fff;
	text-decoration: none;
	border: none;
	border-radius: var(--button-border-radius);
	filter: brightness(160%);
	font-weight: 700;
	line-height: normal;
	outline-offset: -5px;
}
a.button.button2 {
	background: #3d7cc9;
	color: #fff;
	border: 2px solid #3d7cc9;
	border-radius: var(--button-border-radius);
}
a.button.button2:hover {
	background: #fff;
	color: #002856;
	border: 2px solid #3d7cc9;
}
a.button.button3 {
	background: #cda31f;
	color: #fff;
	border: 2px solid #cda31f;
	border-radius: var(--button-border-radius);
}
a.button.button3:hover {
	background: #cda31f;
	color: #fff;
	border: 2px solid #cda31f;
	border-radius: var(--button-border-radius);
	filter: brightness(120%);
}
a.button.button4 {
	color: #000000;
	border: 0;
	padding: 0;
	font-weight: 600;
	font-size: 15px;
}

/* UTILITY / HELPERS */
/* image rounded corners */
.img-rounded-corners .block-image-cover,
.img-rounded-corners .page-block img {
	border-radius: var(--img-border-radius);
}
/* margin bottom mobile viewports */
@media (max-width: 767.8px) {
	.mb-mobile .col-md-4,
	.mb-mobile .col-md-8,
	.mb-mobile .col-md-2,
	.mb-mobile .col-md-6,
	.mb-mobile .col-md-3 {
		margin-bottom: 1.5rem;
	}
}
/* Input group fix */
.input-group input,
.input-group-btn button {
	height: auto !important;
	padding: var(--padding) !important;
	min-height: 50px;
}
/* HERO SEARCHBAR PLACEHOLDER TEXT  */
.hero-search input[id^='search_control_query']::placeholder {
	color: #fff !important;
	font-weight: 600;
}

/* hero section - stack buttons vertically on smaller viewports */
@media (max-width: 474.8px) {
  .stacked-buttons-mobile .block-image-text h4 {
      display: flex;
      flex-direction: column;
      justify-content: center !important;
      align-items: center;
  }
}

/* hero section - responsive font size through smaller breakpoints */
.hero-responsive-text .block-image-text {
    padding: 0.5rem;
}
.hero-responsive-text .block-image-cover {
    height: 540px;
}
@media (max-width: 767.8px) {
    .hero-responsive-text .block-image-text h1 {
        font-size: 3rem;
        line-height: 3.25rem;
    }
    .hero-responsive-text .block-image-text h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }   
}
@media (max-width: 325px) {
    .hero-responsive-text .block-image-text h1 {
        font-size: 2.5rem;
        line-height: 2.75rem;
    }
    .hero-responsive-text .block-image-text h2 {
        font-size: 1.75rem;
        line-height: 2rem;
    }
}
/* CITADEL owned button-row block - responsive styling */
@media (max-width: 1199.8px) {
    .button-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start;
    }
    .button-row .button {
        margin-bottom: 0.5rem;
    }
}
/* AWARDS BADGES */
.award-badges .page-block img {
    max-width: 100%;
    max-height: 125px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* LABEL BADGES */
.label-info {
	background-color: #003057;
}
.bg-brand-primary {
	background-color: #003057;
}
.bg-brand-secondary {
	background-color: #828a8f;
}
.bg-brand-accent {
	background-color: #98c5ea;
}
/** Job Search page **/
/* .job-search-control .input-group input {
	border-bottom: 1px solid var(--primary-color) !important;
} */
.job-search-control .input-group input::placeholder {
	color: var(--primary-color) !important;
}

/* Job Search table */

/* Job Search cards */
@media (min-width: 992px) {
	.job-search-results-card-col {
		flex: 0 0 var(--card-columns);
		max-width: var(--card-columns);
	}
}
@media (min-width: 768px) {
	.job-search-results-dropdown-filter-col {
		flex: 0 0 var(--filter-columns);
		max-width: var(--filter-columns);
	}
}
.card:not(.job-search-results-card) {
	border: 1px solid #444444;
	border-radius: var(--border-radius);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	margin-bottom: 6px;
}
/** Job Search page filters / inputs */
.block-job-search-results .job-search-results .job-search-filter-groups {
	width: 100%;
}
.job-search-control input {
	border-radius: var(--border-radius) !important;
	border: 1px solid var(--input-border-colour);
}
.job-search-dropdown-filters select {
	padding: 10px 10px;
	margin-bottom: 6px;
	border-radius: var(--border-radius);
	border: 1px solid var(--input-border-colour);
}
.badge {
	background-color: var(--primary-color) !important;
	border-radius: var(--border-radius);
	color: var(--light-color);
}
.page-item.active .page-link {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--light-color);
}
.page-link {
	color: var(--primary-color);
}
@media only screen and (max-width: 576px) {
	.pagination li:not(:first-child):not(:last-child) {
		display: none;
	}
}

/** Job Advert **/
/* Side panels */
.side-panel {
    background-color: #f7f7f8;
	box-shadow: 0 5px 9px 0 rgb(0 0 0 / 10%);
	padding: 40px 25px;
	margin-bottom: 20px;
	border-radius: 6px;
}
.side-panel .job-title {
	font-size: 22px !important;
	font-weight: 500 !important;
	margin-bottom: 10px !important;
}
.side-panel .job-field {
	color: #484848;
	font-size: 14px;
	font-weight: 600;
}
.side-panel h3 {
	font-size: 24px;
}
.side-panel .job-summary {
	margin-top: 12px;
	font-size: 16px;
	line-height: 1.2;
}
/* Jobs list content block card style */
.job-list-cards .jobs-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-left: -15px;
	margin-top: -15px;
	align-items: stretch;
}
.job-list-cards .job {
	background: #ffffff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 30px;
	width: calc(33.333% - 30px);
	margin-left: 15px;
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	margin-bottom: 0px !important;
}
@media (max-width: 768px) {
	.job-list-cards .job {
		width: calc(50% - 30px);
	}
}
@media (max-width: 480px) {
	.job-list-cards .job {
		width: calc(100% - 30px);
	}
}
.job-list-cards .job .job-title {
	margin-bottom: 10px;
	color: #202e49 !important;
}
.job-list-cards .job-summary {
	padding-top: 12px;
	color: #444444 !important;
}
/* Jobs list content block table style */
.job {
	background: #ffffff;
	padding: 30px;
}
.job .job-title {
	margin-bottom: 10px;
	color: #202e49 !important;
}
.job-summary {
	padding-top: 12px;
	color: #444444 !important;
}
/* Employee Referral Link */

/** CTAs **/

/* Search Bar */
.job-search-control .near-me-control {
	margin-left: 0;
}
.job-search-control .input-group-btn {
	margin-left: 15px !important;
}
/* Cards */
.card:not(.job-search-results-card) {
	border: 1px solid var(--card-border-colour);
	border-radius: var(--border-radius);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	margin-bottom: 6px;
	background: var(--card-background-colour);
	padding: var(--card-padding);
}
.card:not(.job-search-results-card) .card-body {
	padding: 0px;
}
.card:not(.job-search-results-card) .card-footer {
	background: var(--card-background-colour);
	border-top: 0px;
	padding: 10px 0px;
}
/* Carousel */
.carousel-caption {
	position: relative;
	right: 0 !important;
	bottom: 1.25rem;
	left: 0 !important;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	color: #fff;
	text-align: center;
	padding-left: 40px;
	padding-right: 40px;
}
.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 60% 60%;
	border-radius: 2rem;
	background-color: #fff;
	padding: 2rem;
}
.carousel-item-caption-header {
	text-shadow: none !important;
	color: var(--dark-color) !important;
}
.carousel-item-caption-detail * {
	text-shadow: none !important;
	color: var(--dark-color) !important;
	font-size: 1.2rem;
}
@media (min-width: 768px) {
	.carousel-control-prev,
	.carousel-control-next {
		width: 3%;
		box-shadow: none;
	}
}
img.carousel-item-block-image {
	border-radius: var(--img-border-radius);
}
@media (max-width: 991.8px) {
	.carousel-inner .carousel-item > .row {
		flex-direction: column-reverse;
	}
	.carousel-inner .carousel-item .carousel-item-block {
		width: 100%;
	}
}

/** Video **/
/*** video fixes ***/
@media (min-width: 576px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 292px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 292px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 292px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 292px;
	}
}
@media (min-width: 768px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 392px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 258px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 190px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 122px;
	}
}
@media (min-width: 992px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 526px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 348px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 256px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 166px;
	}
}
@media (min-width: 1200px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 628px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 414px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 310px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 200px;
	}
}
@media (min-width: 1400px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 730px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 482px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 358px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 234px;
	}
}
.vjs-youtube .vjs-poster {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.video-player-wrapper .vjs-poster img {
	object-fit: contain;
	height: inherit;
	width: 100%;
}
/** Teams **/
/*** Team Member Quote ***/
.team-member-bio {
	text-align: left !important;
}
.team-member-image {
	margin-bottom: 10px;
}
.team-member-bio .name {
	font-size: 17px;
	font-weight: 600;
}
.team-member-bio .title {
}
.team-member-bio .bio {
}
.team-member-bio .social-links i {
	margin-right: 8px !important;
}
/** Blogs **/
.posts-cards .posts-cards-cols {
	display: flex;
	flex-wrap: wrap;
	gap: inherit;
}
.posts-card {
	flex: 0 calc(33.33% - 2rem);
	margin: 1rem;
}
.posts-cards .posts-card {
	border-radius: 10px;
}
.posts-cards .posts-card-body {
	height: auto;
	padding: 20px 0px;
	background: rgba(236 236 236 / 0%);
}
.card {
	background: rgba(236 236 236 / 0%);
}
.posts-cards .posts-card .card-title {
	font-size: 18px;
	font-weight: 600;
}
.posts-cards .posts-card-link {
	color: #202e49 !important;
	font-weight: 600;
	font-size: 16px;
	margin-top: 10px;
	text-decoration: underline;
}
.badge.post-tag {
	background: #202e49 !important;
	padding: 6px 10px;
	font-weight: 600;
	text-transform: uppercase;
}
.posts-card-body .post-tags {
	display: none;
}
.posts-cards .posts-card-footer {
	padding: 10px 30px;
	background: none;
}
.posts-card-image {
	transition: transform 0.3s ease;
	border-radius: 8px;
}
@media only screen and (max-width: 768px) {
	.posts-cards .posts-cards-cols {
		flex-direction: column;
	}
}
/** FAQs Accordion **/
.accordion-item:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.accordion-item:last-of-type {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.accordion-item {
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #333;
}
.accordion-button:not(.collapsed) {
	color: #333;
	background-color: #ececec;
	box-shadow: unset;
}
.accordion-item:first-of-type .accordion-button {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.accordion-button:focus {
	z-index: 3;
	border-color: transparent;
	outline: 0;
	box-shadow: unset;
}
.accordion-button {
	font-size: 16px;
	padding: 20px;
}
.accordion-body {
	padding: 20px;
}
/** Footer **/
footer {
	background-color: #1f3a60;
}
.footer-top {
	padding: 0 5.62vw;
}
footer :is(h1, h2, h3, h4, h5, p, a) {
	color: #ffffff;
}
a.footer-link,
a.footer-link:visited {
    color: #fff;
}
.footer-col-title {
	border-bottom: 5px solid #fff;
	padding-bottom: 0.56rem;
	max-width: 90%;
}
.footer-bottom {
	background: #003057;
	padding-top: 10px;
	padding-bottom: 10px;
}
.footer-bottom * {
	color: #ffffff;
}
.footer-bottom a {
	color: #ffffff;
}
.footer-bottom .list-inline {
	margin-bottom: 0;
}
.footer-bottom .list-inline-item {
	margin-bottom: 0;
}
footer .social {
	padding-left: 1rem;
}
footer .social a[href] {
    color: #fff;
}
footer .social > a:hover {
	text-decoration: none;
}
footer .social :is(i) {
	font-size: 24px;
}
footer address {
	color: #ffffff;
	padding-left: 1rem;
	margin-top: 1.25rem;
}
footer .phone {
	padding-left: 1rem;
}
/** Candidate consent **/
.consent-modal .image-wrapper {
	width: 100%;
	text-align: left;
}
.consent-reject {
}
.consent-agree {
}
/** Mobile styles **/

/* My Settings */
.candidate-settings-panel {
	background-color: #f9f9f9;
	padding: 30px 42px;
}
.candidate-settings {
	background: #f0f0f0;
	margin: 10px 0px;
	padding: 50px;
}
/* Alignment */
/* Vertical Alignment add my-auto to ROW */
.my-auto .col-md-6,
.my-auto .col-md-8,
.my-auto .col-md-4 {
	margin-top: auto !important;
	margin-bottom: auto !important;
}
/* text left alignment sits within container on fullwidth page */
@media (min-width: 576px) {
	.hero-banner .block-image-text * {
		width: 540px;
		margin-right: auto;
		margin-left: auto;
	}
}
@media (min-width: 768px) {
	.hero-banner .block-image-text * {
		width: 720px;
		margin-right: auto;
		margin-left: auto;
	}
}
@media (min-width: 992px) {
	.hero-banner .block-image-text * {
		width: 960px;
		margin-right: auto;
		margin-left: auto;
	}
}
@media (min-width: 1200px) {
	.hero-banner .block-image-text * {
		width: 1140px;
		margin-right: auto;
		margin-left: auto;
	}
}
@media (min-width: 1400px) {
	.hero-banner .block-image-text * {
		width: 1320px;
		margin-right: auto;
		margin-left: auto;
	}
}

/* Spacing */

/* horizontal scroll fix */
.hero-no-gutter .page-row-container .col-md-12 {
	padding-left: 0;
	padding-right: 0;
}
.hero-no-gutter .page-row-container .block-image {
	margin-left: 0;
	margin-right: 0;
}

/** CTA select dropdowns **/
.selectize-control.multi .selectize-input > div {
	background-color: var(--primary-color);
	color: var(--light-color);
	border-radius: var(--border-radius);
}
.selectize-dropdown-content .option.active {
	background-color: var(--primary-color);
}
.selectize-input {
	border-radius: var(--border-radius);
}
.candidate-settings-panel i {
	color: var(--dark-color);
}

/* Page Sepcific */
/* Home */
.hero-text {
	color: #fff;
	font-size: 6em;
	line-height: 1.1;
	font-weight: 800;
}
.sub-text {
	color: #fff;
	font-size: 1.6em;
	line-height: 1.3;
	width: 60%;
	margin-bottom: 50px !important;
}
.hero-search {
	width: 100%;
	max-width: 62%;
}
form.hero-search .easy-autocomplete input {
	color: #fff;
}
.side-panel .form-control {
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .15);
}
/* .form-control:not(.side-panel .form-control) {
	background: #fff0 !important;
	border: 0 !important;
	border-bottom: 1px solid #fff !important;
	border-radius: 0px !important;
} */
.job-search-control input {
	border-radius: 0px !important;
	padding: 10px 0px !important;
}
.form-control.historical::placeholder {
	color: white;
}
.form-control.historical::-webkit-input-placeholder {
	color: white;
}
.form-control.historical:-ms-input-placeholder {
	color: white;
}
.form-control.historical::-ms-input-placeholder {
	color: white;
}
.form-control.historical::placeholder {
	color: white;
}
.video-container,
.hero-search-container {
	position: relative;
	height: 90vh;
	width: 100%;
	overflow: hidden;
}

.video-container video,
.hero-search-container img {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	transform: translate(-50%, -50%);
}
.hero-search-container img {
	object-fit: cover;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	color: white;
	z-index: 1;
}
.scroll-arrow {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: white;
	font-size: 2rem;
}

.scroll-arrow i {
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* ==== STYLED PAGE ELEMENTS ============ */
/* BENEFIT CARDS */
.benefit-card {
	background-color: #ffffff;
}
.benefit-card {
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	height: 100%;
}
/* FAQ ACCORDION */
.accordion-body ol,
.accordion-body ul {
	padding-left: 0;
}
.accordion-item {
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid var(--primary-color);
}
.accordion-button:not(.collapsed) {
	background-color: transparent;
	padding: 20px 20px 0px 20px;
}
.accordion-button {
	background-color: transparent;
	color: var(--primary-color);
	box-shadow: none;
	font-family: var(--font-family-body);
}
.faq-accordion {
	.accordion-button.icon-plus::before,
	.accordion-button.icon-plus::after {
		color: var(--primary-color);
	}
}
.accordion-item:last-of-type {
	border-bottom: 0;
}
/*DEPARTMENT CARDS*/
.department-cards {
	.block-wrapper {
		border: 3px solid var(--primary-color);
		border-bottom-right-radius: 1.5rem;
	}
	img {
		border-radius: 1.5rem;
        width: 100%;
        height: auto;
        object-fit: cover;
	}
	h4,
	h4 > strong {
		color: var(--primary-color);
		font-size: 22px;
	}
}
@media (max-width: 1199.8px) {
  .department-cards .col-md-3 {
      width: 50%;
      margin-bottom: 1rem;
  }
}
@media (max-width: 767.8px) {
  .department-cards .col-md-3 {
      width: 100%;
  }
}
/* CITADEL CARD - IMG/TEXT CARD */
.citadel-card {
	color: #fff;
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
	height: 100%;
	margin-bottom: 10px;
	border-radius: 22px;
}
.citadel-card img {
	width: 100%;
	height: auto;
	border-radius: 22px 22px 0px 0px;
}
.citadel-card p {
	color: #fff;
	font-weight: 600;
}
.citadel-card p a {
	color: #fff;
	margin-top: 30px !important;
	display: block;
}
.citadel-card .page-block > *:first-child {
	padding-left: 0;
	padding-right: 0;
}
.citadel-card .page-block > *:not(:first-child) {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 16px;
	padding-bottom: 22px;
}
/* ==== MULTI-PART HEADER / NAV ============ */
/* main header (with logo) */
.main-header {
	background-color: #1f3a60;
}
.main-header-container {
	padding: 0 5.62vw;
}
.main-header-right-inner .main-header-right-title {
	font-family: var(--font-family-serif);
	color: #fff;
}
@media (min-width: 992px) {
	.main-header-right-wrapper {
		justify-content: flex-end;
	}
	.main-header-right-inner {
		text-align: right;
	}
	.main-header-right-inner .navbar-nav {
		justify-content: flex-end;
	}
	.main-header-right-inner .main-header-right-title {
		font-size: 1.5rem;
		margin-bottom: 0.35rem;
	}
}
/* @media (max-width: 499.8px) {
    .main-header-container {
        flex-wrap: nowrap !important;
    }
} */
a.button.button1.search-all-jobs-button,
a.button.button1.search-all-jobs-button:active,
a.button.button1.search-all-jobs-button:visited,
a.button.button1.search-all-jobs-button:hover,
a.button.button1.search-all-jobs-button:focus {
	background-color: #fff;
	color: #3975b7 !important;
	font-size: 1.15rem !important;
	text-transform: uppercase;
	filter: brightness(1);
	padding: 0.75rem 1.15rem !important;
	margin: 0.5rem;
	border-radius: 0;
}
a.button.button1.applicant-login-button,
a.button.button1.applicant-login-button:active,
a.button.button1.applicant-login-button:visited,
a.button.button1.applicant-login-button:focus {
	background-color: #3975b7;
	color: #fff !important;
	font-size: 1.15rem !important;
	text-transform: uppercase;
	filter: brightness(1);
	padding: 0.75rem 1.15rem !important;
	margin: 0.5rem 0.5rem 0.5rem 0.5rem;
	border-radius: 0;
}
a.button.button1.applicant-login-button:hover {
	background-color: #fff;
	color: #3975b7 !important;
	font-size: 1.15rem !important;
	text-transform: uppercase;
	filter: brightness(1);
	padding: 0.75rem 1.15rem !important;
	margin: 0.5rem 0.5rem 0.5rem 0.5rem;
	border-radius: 0;
}
a.button.button1.candidate-settings-button,
a.button.button1.candidate-settings-button:active,
a.button.button1.candidate-settings-button:visited,
a.button.button1.candidate-settings-button:focus {
	background-color: #3975b7;
	color: #fff !important;
	font-size: 1.15rem !important;
	text-transform: uppercase;
	filter: brightness(1);
	padding: 0.75rem 1.15rem !important;
	margin: 0.5rem 0 0.5rem 0.5rem;
	border-radius: 0;
}
a.button.button1.candidate-settings-button:hover {
	background-color: #fff;
	color: #3975b7 !important;
	font-size: 1.15rem !important;
	text-transform: uppercase;
	filter: brightness(1);
	padding: 0.75rem 1.15rem !important;
	margin: 0.5rem 0 0.5rem 0.5rem;
	border-radius: 0;
}
.main-header .navbar-toggler {
    background-color: #fff;
    border-radius: 0;
}


/* CITADEL PROVIDED CSS  */
/* Bottom Section/Navigation = Main-Nav */

.main-nav {
	background-color: #3975b7;
	bottom: 72px;
	max-height: calc(100vh - 72px);
	overflow-y: auto;
	padding: 0;
	position: fixed;
	width: 100%;
}

@media only screen and (min-width: 768px) {
	.main-nav {
		bottom: auto;
		max-height: unset;
		overflow-y: visible;
		position: relative;
		z-index: 9;
	}
}
.main-nav .navbar-toggler {
    background-color: #fff;
    border-radius: 0;
    margin: 0.5rem;
}
.main-nav > ul {
	border-top: 1px solid #fff;
}

@media only screen and (min-width: 768px) {
	.main-nav > ul {
		border-top: none;
		display: flex;
		padding: 0 5.62vw;
	}
}

@media only screen and (min-width: 768px) {
	.main-nav > ul:before {
		background-color: #3975b7;
		content: '';
		height: 100%;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
		width: 100%;
		z-index: -1;
	}
}

@media only screen and (min-width: 768px) {
	.main-nav > ul > li {
		flex-grow: 1;
		font-size: 0.84rem;
	}
}

.main-nav > ul > li > a {
	border-bottom: 1px solid #fff;
	color: #fff;
	text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
	.main-nav .navbar-nav > li > a {
		background-color: transparent;
		border-bottom: none;
		transition: all ease 0.4s;
	}

	.main-nav .navbar-nav > li > a:hover,
	.main-nav .navbar-nav > li > a:focus {
		background-color: rgba(255, 255, 255, 0.8);
		color: #3975b7;
	}
}

@media only screen and (min-width: 768px) {
	.main-nav > ul > li > .sub-menu {
		display: none;
		z-index: -3;
	}
}

.main-nav > ul > li.menu-item-has-children > a:after {
	content: '';
	font-family: 'Font Awesome 5 Free', sans-serif;
	font-weight: 900;
	margin-left: 0.42rem;
}

@media only screen and (min-width: 768px) {
	.main-nav > ul > li.active {
		background-color: #fff;
	}

	.main-nav > ul > li.active > a {
		color: #3975b7;
	}

	.main-nav > ul > li.active > .sub-menu {
		display: block;
		z-index: -2;
	}
}

@media only screen and (min-width: 768px) {
	.main-nav > ul > li.wide-nav > .sub-menu {
		border-bottom: 2px solid #3975b7;
		display: none;
		left: 0;
		padding: 1.77rem calc(5.62vw - 1rem);
		position: absolute;
		top: 100%;
		width: 100%;
	}

	.main-nav > ul > li.wide-nav > .sub-menu > li {
		flex: 1;
		padding: 0 1rem;
	}

	.main-nav > ul > li.wide-nav > .sub-menu > li a {
		border-bottom: none;
		font-size: 0.84rem;
		line-height: 1.3;
		margin-top: 1rem;
		padding: 0;
		text-align: left;
	}

	.main-nav > ul > li.wide-nav > .sub-menu > li > a {
		border-bottom: 5px solid #1f3a60;
		color: #1f3a60;
		cursor: default;
		font-family: var(--font-family-serif);
		font-size: 1.13rem;
		margin-top: 0;
		padding: 0 0 0.63rem;
	}

	.main-nav > ul > li.wide-nav > .sub-menu > li > a:hover,
	.main-nav > ul > li.wide-nav > .sub-menu > li > a:focus {
		color: #1f3a60;
	}

	.main-nav > ul > li.wide-nav > .sub-menu > li > a:after {
		display: none;
	}

	.main-nav > ul > li.wide-nav > .sub-menu > li .menu-item-desc {
		display: block;
		line-height: 1.3;
	}

	.main-nav > ul > li.wide-nav > .sub-menu .sub-menu {
		background-color: transparent;
		display: block;
	}
}

/*mobile edits for menu and IOS 16 */

.main-nav > ul > li.wide-nav.active > .sub-menu,
.main-nav > ul > li:not(.wide-nav).active > .sub-menu {
	z-index: 99999;
}

.main-nav > ul > li.wide-nav.active > .sub-menu {
	display: flex;
}

@media only screen and (max-width: 768px) {
	body .uwy.userway_p3 .uai {
		bottom: 80px !important;
	}
}
/*end ios changes*/

@media only screen and (min-width: 768px) {
	.main-nav > ul > li:not(.wide-nav) {
		position: relative;
	}
}
@media only screen and (min-width: 768px) {
	.main-nav > ul > li:not(.wide-nav) > .sub-menu {
		border: 2px solid #3975b7;
		border-top: none;
		display: none;
		left: -2px;
		padding: 0.47rem 0;
		position: absolute;
		top: 100%;
		width: calc(100% + 4px);
	}

	.main-nav > ul > li:not(.wide-nav) > .sub-menu a {
		border-bottom: none;
	}
}

.main-nav > ul > li:not(.wide-nav).active > .sub-menu {
	display: block;
}

.main-nav a {
	border-bottom: 1px solid #3975b7;
	display: block;
	font-weight: bold;
	line-height: 1.3;
	padding: 0.56rem 0.47rem;
	text-align: center;
	text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus {
	text-decoration: underline;
}
@media only screen and (min-width: 768px) {
	.main-nav a:hover,
	.main-nav a:focus {
		text-decoration: none;
	}
}

#mobile-nav {
	background-color: #fff;
	border-top: 1px solid #cec7bf;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	width: 100%;
	z-index: 100;
}

@media only screen and (min-width: 768px) {
	#mobile-nav {
		display: none;
	}
}

#mobile-nav ul {
	display: flex;
}

#mobile-nav li {
	display: flex;
	flex-grow: 1;
}

#mobile-nav li.active {
	background-color: rgba(206, 199, 191, 0.4);
}

#mobile-nav button {
	border: none;
	font-size: 0.84rem;
	margin-bottom: 0;
	padding: 0.56rem;
	text-align: center;
	width: 100%;
}

#mobile-nav button i {
	display: block;
	font-size: 1.5rem;
	margin: 0 auto 5px;
}

.main-nav {
	display: none;
	z-index: 9;
}

.main-nav.active {
	display: block;
	z-index: 10;
}
@media only screen and (min-width: 992px) {
	.main-nav {
		display: block;
	}
}

/* ==== NEW MAIN NAV ============ */
.new-main-nav .navbar-nav {
	width: 100%;
	justify-content: space-around;
	padding: 0 5.62vw;
}
.new-main-nav li.nav-item {
	background-color: transparent;
	flex-grow: 1;
}
.new-main-nav li.nav-item .nav-link {
	color: #fff;
	text-transform: uppercase;
}
.new-main-nav .dropdown-toggle::after {
	border: none !important;
	font: var(--fa-font-solid);
	content: '\f107';
	vertical-align: 0;
}
.new-main-nav .dropdown-toggle.show::after {
	font: var(--fa-font-solid);
	content: '\f106' !important;
}
.new-main-nav .dropdown-menu.show {
	width: 100%;
	border-radius: 0;
	padding-top: 0;
	padding-bottom: 0;
}
.new-main-nav .dropdown-menu li {
	margin-bottom: 0;
}
.new-main-nav .dropdown-menu .dropdown-item {
	text-align: left;
	padding: 8px 2rem !important;
}

/* JOB SEARCH RESULTS CARD SYTLING */
@media (min-width: 768px) {
	.job-search-results .job-search-results-card-col {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 0.5rem !important;
	}
	.job-search-results .job-component-details {
		display: flex;
	}
	.job-search-results .job-component-details .job-component-list * {
		font-size: 0.875rem;
	}
	.job-search-results .job-component-details div.job-component-list span::after {
		content: " | ";
		margin: 0 1rem;
		display: inline-flex;
		position: relative;
	}
	.job-search-results .job-component-details div.job-component-list .job-component-dropdown-field-1 span::after {
		display: none;
	}
	.job-search-results .job-search-results-card-col h3.card-title {
		margin-bottom: 0;
	}
	.job-search-results .job-search-results-card-col h3.card-title a {
		font-size: 1.4rem;
        font-weight: 700;
	}
	.job-search-results .job-search-results-card {
		border-radius: 0;
		border: none;
		border-bottom: 1px solid #bbbbbb;
	}
	.job-search-results .job-search-results-card .card-body {
		padding: 1rem 0 0 0;
	}
	.job-search-results .job-search-results-card .card-body .job-component-icon-and-text > i {
		width: initial;
	}
	.job-search-results .job-search-results-card .card-footer {
		background-color: transparent;
		border-top: none;
		margin-bottom: 1rem;
		padding: 0.75rem 0;
	}
    .job-search-results .job-search-results-card .card-footer a {
		font-weight: 700;
	}
}

/* RESUME FILE SELECT BUTTON */
.form-control::file-selector-button {
    background-color: #dddddd;
}

/* FORM INPUT - BLUE HIGHLIGHT - ALL STATES */
.form-control {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    border-color: rgb(134, 182.5, 254);
}

/* ==== SEARCH RESULTS PAGE (FEATURED) - HIDE FILTER COLUMN ============ */
.search-results-wrapper.search-page-featured .col-md-3 {
    display: none;
}
.search-results-wrapper.search-page-featured .col-md-9 {
    width: 100%
}

/*Additional CSS*/
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text p,
.white-text span
{
  color: #fff;
}

/* ==== ADDITIONAL NAVIGATION UPDATES 06182025 ============ */
.navbar-toggler:focus {
    color: #3975b7;
}
@media (max-width: 991.8px) {
	.main-header-brand-toggler {
		display: flex;
		justify-content: space-between;
		width: 100%;
		align-items: center;
	}
	.main-header-right-inner a.nav-link.button.button1 {
		width: 98%;
	}
	a.button.button1.candidate-settings-button,
	a.button.button1.candidate-settings-button:active,
	a.button.button1.candidate-settings-button:visited,
	a.button.button1.candidate-settings-button:focus {
		padding: 0.75rem 1.15rem !important;
		margin: 0.5rem 0.5rem 0.5rem 0.5rem;
	}
	h2.main-header-right-title {
		font-size: clamp(20px, calc(1.25rem + ((1vw - 2.75px) * 2.8398)), 34px);
		min-height: 0vw;
		margin: 0.5rem;
		line-height: 1.25;
	}
}
.citadel-mobile-nav-links {
	background-color: #3975b7;
	padding: 0.75rem 1.15rem !important;
	margin: 0.5rem 0.5rem 0.5rem 0.5rem;
	width: 98%;
}
.citadel-mobile-nav-links a[href].nav-link {
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
}

.citadel-mobile-nav-links a[href].nav-link:hover {
	background-color: #fff;
	color: #3975b7;
	font-weight: 700;
    text-decoration: none;
}