/* Theme Variables */
@font-face {
  font-family: 'exo'; 
  src: url('https://dfacxoaxr5wom.cloudfront.net/04d633f973990882ce2302062e7ad64d/50cac820bf5c752d1e33ab4ee250e4d7/Linkforce_fonts/Exo-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
:root {
    /* Typography */
    --font-family-body: "open sans", sans-serif;
    --font-family-heading: "exo", sans-serif; 
    
    --font-size-h1: 48px; 
    --font-size-h2: 34px; 
    --font-size-h3: 30px; 
    --font-size-h4: 26px; 
    --font-size-h5: 18px; 
    --font-size-h6: 16px; 
    --font-size-paragraph: 15px;
    
    /* Colors */
    --primary-color: #0092c8;
    --secondary-color: #022A3A;
    --dark-color: #022A3A;
    --light-color: #ffffff;
    --input-border-colour:#c9c9c9;
 
	/* Other variables */
  	--border-radius: 5px;
  	--box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Border Radius & Padding */
    --btn-border-radius: 4px;
    --input-border-radius: 4px;
    --input-padding: 10px 28px;

    /* Primary Button */
    --primary-btn-bg: #0092c8;
    --primary-btn-color: #ffffff;
    --primary-btn-border-color: #ffffff;
    
    /* Primary Button Hover */
    --primary-btn-bg-hover: #022A3A;
    --primary-btn-color-hover: #ffffff;
    --primary-btn-border-color-hover: #022A3A;
    
    /* Secondary Button */
    --secondary-btn-bg: #546670;
    --secondary-btn-color: #ffffff;
    --secondary-btn-border-color: #546670;
    
    /* Secondary Button Hover */
    --secondary-btn-bg-hover: #546670;
    --secondary-btn-color-hover: #ffffff;
    --secondary-btn-border-color-hover: #546670;
 
    /* Button One */
    --button-one-bg: #0092c8;
    --button-one-color: #ffffff;
    --button-one-border-color: #ffffff;

    /* Button One Hover */
    --button-one-bg-hover: #022a3a;
    --button-one-color-hover: #ffffff;
    --button-one-border-color-hover: #0092c8;

    /* Button Two */
    --button-two-bg: #022A3A;
    --button-two-color: #ffffff;
    --button-two-border-color: #ffffff;

    /* Button Two Hover */
    --button-two-bg-hover: #ffffff;
    --button-two-color-hover: #022A3A;
    --button-two-border-color-hover: #022A3A;

    /* Button Three */
    --button-three-bg: #ffffff;
    --button-three-color: #022a3a;
    --button-three-border-color: #0092c8;

    /* Button Three Hover */
    --button-three-bg-hover: #022A3A;
    --button-three-color-hover: #ffffff;
    --button-three-border-color-hover: #ffffff;

    /* Button Four */
    --button-four-bg: #FFFFFF;
    --button-four-color: #022A3A;
    --button-four-border-color: #0092c8;

    /* Button Four Hover */
    --button-four-bg-hover: #022A3A;
    --button-four-color-hover: #0092c8;
    --button-four-border-color-hover: #ffffff;
  
	/* Cards */
	--card-background-colour: #ffffff;
	--card-border-colour: #c9c9c9;
	--card-padding: 30px 30px;
	--card-border-radius: 10px;

    /* Layout Settings */
    --card-columns: 33.333%;
    --filter-columns: 25%;
	
    /* Spacing */
	--bs-spacer-0: 0;
	--bs-spacer-1: 0.25rem;
	--bs-spacer-2: 0.5rem;
	--bs-spacer-3: 1rem;
	--bs-spacer-4: 1.5rem;
	--bs-spacer-5: 3rem;
	--bs-spacer-6: 6rem;	
  
    --motion-duration: .2s;
    --motion-ease: cubic-bezier(.2,.7,.3,1);
}

/*** Global Theme ***/
body {
	background: #fff;
	color: var(--dark-color);
	line-height: 1.4;
	font-family: var(--font-family-body);
	font-weight: 400;
	font-size: var(--font-size-paragraph);
	overflow-x: hidden;
}
/** Typography **/

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-family-heading);
	font-weight: 600;
	letter-spacing: normal;
}
.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);
}
/* Responsive Typography */

@media (max-width: 768px) {
	.h1, h1 {
		font-size: calc(var(--font-size-h1) * 0.9);
	}
	.h2, h2 {
		font-size: calc(var(--font-size-h2) * 0.9);
	}
	.h3, h3 {
		font-size: calc(var(--font-size-h3) * 0.9);
	}
	.h4, h4 {
		font-size: calc(var(--font-size-h4) * 0.9);
	}
}
@media (max-width: 576px) {
	.h1, h1 {
		font-size: calc(var(--font-size-h1) * 0.8);
	}
	.h2, h2 {
		font-size: calc(var(--font-size-h2) * 0.8);
	}
	.h3, h3 {
		font-size: calc(var(--font-size-h3) * 0.8);
	}
	.h4, h4 {
		font-size: calc(var(--font-size-h4) * 0.8);
	}
}
.hero-h1 h1 {
	font-size: 56px;
}
.hero-h2 h2 {
	font-size: 46px;
}
@media (max-width: 576px) {
	.hero-h1 h1 {
		font-size: calc(var(--font-size-h1)* 0.6);
		padding-left: 15px;
		padding-right: 15px;
	}
	.hero-h2 h2 {
		font-size: calc(var(--font-size-h1)* 0.6);
		padding-left: 15px;
		padding-right: 15px;
	}
}
a, a:visited {
  color: var(--dark-color);
  text-decoration: underline;
}
a:hover {
	color: var(--primary-color);
}
/** Navigation **/

.nav-link {
	color: var(--dark-color) !important;
	font-size: 14px;
	font-weight: 400;
	padding: 0 16px !important;

}
@media (min-width: 992px) {
    .nav-link {
        padding: 0 24px !important;
    }
}
.nav-link:hover {
	color: var(--primary-color) !important;
    text-decoration: none;
}
.dropdown-item {
    font-size: 14px;
    text-align: left;
    float: none;
}
/* Logos */

.navbar-brand-logo {
	width: 100%;
	max-width:250px;
}
.footer-brand-logo {
	width: 100%;
	max-width: 250px;
}
@media (max-width: 576px) {
	.navbar-brand-logo {
		max-width: 185px;
	}
}
@media (max-width: 576px) {
	.footer-brand-logo {
		max-width: 155px;
	}
}
.no-gutters .col-md-12 {
	padding: 0px;
}
/*** Buttons ***/

.btn, button, a.button {
	font-weight: 600;
	font-family: inherit;
	text-transform: inherit;
	line-height: 1.5;
	padding: var(--input-padding) !important;
	-webkit-transition: background .25s linear;
	-moz-transition: background .25s linear;
	-o-transition: background .25s linear;
	transition: background .25s linear;
	border-radius: var(--btn-border-radius) !important;
	font-size: 15px;
	text-transform: inherit;
}
.btn-primary {
	background: var(--primary-btn-bg);
	color: var(--primary-btn-color);
	border: 1px solid var(--primary-btn-border-color);
}
.btn-primary:hover, .btn-primary:first-child:active, .btn-primary:focus-visible {
	background: var(--primary-btn-bg-hover);
	color: var(--primary-btn-color-hover);
	border: 1px solid var(--primary-btn-border-color-hover);
}
.btn-primary:visited, .btn-primary:active, .btn-primary:focus {
	background: var(--primary-btn-bg);
	color: var(--primary-btn-color);
	border: 1px solid var(--primary-btn-border-color);
}
.btn-success {
	background: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
	border: 1px solid var(--secondary-btn-border-color);
}
.btn-success:hover {
	background: var(--secondary-btn-bg-hover);
	color: var(--secondary-btn-color-hover);
	border: 1px solid var(--secondary-btn-border-color-hover);
}
.btn-success:visited, .btn-success:active, .btn-success:focus {
	background: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
	border: 1px solid var(--secondary-btn-border-color);
}
.btn-info {
	background: var(--primary-btn-bg);
	color: var(--primary-btn-color);
	border: 1px solid var(--primary-btn-border-color);
}
.btn-info:hover, .btn-info:visited, .btn-info:active, .btn-info:focus {
	background: var(--primary-btn-bg-hover);
	color: var(--primary-btn-color-hover);
	border: 1px solid var(--primary-btn-border-color-hover);
}
.candidate-favourite:hover, .view-favourites:hover {
    text-decoration: none;
}	
/* Candidate setting buttons */

.label {
	background: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
	border: 1px solid var(--secondary-btn-bg);
	padding: 4px 12px;
	font-size: 13px !important;
	margin-bottom: 4px;
	display: inline-block;
	border-radius: var(--btn-border-radius);
    text-decoration: underline;
}
/* custom buttons */

a.button.button1 {
	background: var(--button-one-bg);
	color: var(--button-one-color) !important;
	border: 1px solid var(--button-one-border-color);
}
a.button.button1:hover {
	background: var(--button-one-bg-hover);
	color: var(--button-one-color-hover);
	border: 1px solid var(--button-one-border-color-hover);
}
a.button.button2 {
	background: var(--button-two-bg);
	color: var(--button-two-color);
	border: 1px solid var(--button-two-border-color);
}
a.button.button2:hover {
	background: var(--button-two-bg-hover);
	color: var(--button-two-color-hover);
	border: 1px solid var(--button-two-border-color-hover);
}
a.button.button3 {
	background: var(--button-three-bg);
	color: var(--button-three-color);
	border: 1px solid var(--button-three-border-color);
}
a.button.button3:hover {
	background: var(--button-three-bg-hover);
	color: var(--button-three-color-hover);
	border: 1px solid var(--button-three-border-color-hover);
}
a.button.button4 {
	background: var(--button-four-bg);
	color: var(--button-four-color);
	border: 0px solid var(--button-four-border-color);
	padding: 0px;
}
/*a.button.button4:hover {
  background:var(--button-four-bg);
  color:var(--button-four-color);
  border:0px solid var(--button-four-border-color-hover);
  padding:0px;
}*/

/* Input group fix */

.input-group input, .input-group-btn button {
	height: auto !important;
	padding: var(--input-padding) !important;
}
/* Bootstrap Card */

.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);
}
	
/* Search / CTA input */

.job-search-control .near-me-control {
	margin-left: 0;
}
.job-search-control .input-group-btn {
	margin-left: 15px !important;
}
@media (max-width: 576px) {
	.job-search-control .form-control, .job-search-control .input-group-btn, .job-search-control .input-group-btn .btn, .job-search-control .btn, .job-search-control .col-2 {
		width: 100%;
	}
	.job-search-control .input-group-btn {
		margin: 5px 0 !important;
	}
}
.call-to-action .form-control {
    border-radius: var(--input-border-radius) !important;
}
.form-control {
    background-color: inherit;
}
.job-search-control input {
	background: var(--light-color);
}
.call-to-action .form-control {
	border-radius: var(--input-border-radius);
}
.call-to-action-form input, .call-to-action-form select {
    background: var(--light-color);
}
.form-call-to-action input[type=file].form-control {
    padding: 6px 10px;
}
.selectize-control.multi .selectize-input>div {
	background-color: var(--primary-color);
	color: var(--light-color);
	border-radius: var(--btn-border-radius);
}
.selectize-dropdown-content .option.active {
	background-color: var(--primary-color);
}
.selectize-input {
    border-radius: var(--input-border-radius) !important;
}
.cta-left-align .block-call-to-action form {
	margin: 0 auto 0 0;
}
.cta-right-align .block-call-to-action form {
	margin: 0 0 0 auto;
}
/** Job Search page **/

/* Job Search table */

.job-search-filter-header {
	font-size: 20px !important;
}
/* 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);
	}
}
.job-search-results-card {
	border: 1px solid #ececec;
	border-radius: var(--border-radius);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	margin-bottom: 6px;
}
.job-search-results-card-title a {
	color: #022A3A;
	font-size: 22px;
}
.job-search-results-card-body {
	padding: 0px;
}
.job-search-results-footer {
	background: var(--card-background-colour);
	border-top: 0px;
	padding: 10px 0px;
}
.job-search-results-footer a {
	background: var(--card-background-colour);
	color: var(--primary-color);
     font-weight: 600;
}
.job-search-results-card {
	background: var(--card-background-colour);
}

/** 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(--input-border-radius) !important;
	border: 1px solid var(--input-border-colour);
}
.job-search-dropdown-filters select {
	padding: 10px 10px;
	margin-bottom: 6px;
	border-radius: var(--input-border-radius);
	border: 1px solid var(--input-border-colour);
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	color: var(--dark-color);
	background-color: var(--light-color);
}
.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 **/

.job-title {
	font-size: 26px;
	color:var(--primary-color);
}
/* Side panels */

.side-panel {
	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: 2px;
	padding-top: 2px;
}
/* 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;
    border-radius: 8px;
}
.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;
    border-radius: 6px;
}
@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;
}
.job-list-cards .job-summary {
	padding-top: 12px;
	color: #444444 !important;
}
/* Jobs list content block table style */

.job {
	background: transparent;
	padding: 0px;
}
.job .job-title {
	margin-bottom: 10px;
	color:var(--primary-color);
}
.job-summary {
	padding-top: 12px;
	color: #444444 !important;
}
.block-jobs .job {
	margin-bottom: 16px;
}
/* Employee Referral Link */

/* 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='%23ffffff'%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='%23ffffff'%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: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 50% 50%;
    border-radius: 2rem;
    background-color: #0092c8;
    padding: 16px;
}
.carousel-indicators button {
    padding: 2px !important;
    height: 2px !important;
    background-color: #0092c8 !important;
    width: 20px !important;
    border-radius: 6px !important;
}
.carousel-indicators {
    margin-bottom: 0 !important;
}
.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;
}
@media (min-width: 768px) {
	.carousel-control-prev, .carousel-control-next {
		width: 3%;
	}
}
.carousel-item-block.col-6,
.carousel-item-block.col-4 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .carousel-item-block.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .carousel-item-block.col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
.carousel-item-block-image { 
  border-radius: 6px;
}
/** 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;
	background:#ffffff;
}
.posts-cards .posts-card {
	border-radius: 10px;
}
.posts-cards .posts-card-body {
	height: auto;
	padding: 20px 0px;
	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: #0092c8;
}
footer * {
	color: #fff;
}
footer *:hover, footer *:visited {
	color: #fff;
}
.social a {
	font-size: 16px;
}
/** Cookie consent **/

.offcanvas.offcanvas-bottom, .offcanvas.offcanvas-top {
    height: fit-content !important;
}
.consent-modal .image-wrapper {
	width: 100%;
	text-align: left;
}
.consent-reject, .reject-performance-cookies {
	background: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
	border: 1px solid var(--secondary-btn-border-color);
}
.consent-agree, .consent-confirm {
	background: var(--primary-btn-bg);
	color: var(--primary-btn-color);
	border: 1px solid var(--primary-btn-border-color);
}
.consent-reject:hover,
.reject-performance-cookies:hover,
.consent-reject:focus,
.reject-performance-cookies:focus,
.consent-reject:active,
.reject-performance-cookies:active,
.consent-reject:disabled,
.reject-performance-cookies:disabled {
	background: var(--secondary-btn-bg-hover);
	color: var(--secondary-btn-color-hover);
	border: 1px solid var(--secondary-btn-border-color-hover);
}
.consent-agree:hover,
.consent-confirm:hover,
.consent-agree:focus,
.consent-confirm:focus,
.consent-agree:active,
.consent-confirm:active,
.consent-agree:disabled,
.consent-confirm:disabled {
	background: var(--primary-btn-bg-hover);
	color: var(--primary-btn-color-hover);
	border: 1px solid var(--primary-btn-border-color-hover);
}
@media (max-width: 767.98px) {
    #cookie_consent_description {
        font-size: 15px;
    }
    #implied_consent_footer {
        height: auto;
    }
}
.cookie-description * {
    color: var(--dark-color);
}

/* Candidate Settings */

.candidate-settings-panel {
	background-color: #f9f9f9;
	padding: 30px 42px;
}
.candidate-settings {
	background: #f0f0f0;
	margin: 10px 0px;
	padding: 50px;
}
.candidate-settings-panel i {
	color: var(--dark-color);
}
.candidate-settings-panel h3 {
	font-size: 22px;
}
/* Accessibility */

:where(a, button, .btn):focus-visible{
  outline: 2px solid color-mix(in oklch, var(--primary-btn-bg), white 20%);
  outline-offset: 3px;
}
/* Alignment / Spacing / Order */

/* 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;
}
/* adds padding to the bottom of every col */

@media (max-width: 768px) {
	.row>.col-md-2, .row>.col-md-3, .row>.col-md-4, .row>.col-md-6, .row>.col-md-8 {
		padding-bottom: 1.5rem !important;
	}
}
/* treat col-md-2 as col-md-4 on tablets and smaller desktops */

@media (min-width: 768px) and (max-width: 991px) {
	.col-md-2 {
		flex: 0 0 auto;
		width: 33.333333%;
	}
}
/* 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;
	}
}

/** Rounded class for images **/
.rounded-0 .image-uncropped-full-width,
.rounded-0 .block-image-cover {
    border-radius: 0 !important;
}

.rounded-1 .image-uncropped-full-width,
.rounded-1 .block-image-cover {
    border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 .image-uncropped-full-width,
.rounded-2 .block-image-cover {
    border-radius: var(--bs-border-radius) !important;
}

.rounded-3 .image-uncropped-full-width,
.rounded-3 .block-image-cover {
    border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 .image-uncropped-full-width,
.rounded-4 .block-image-cover {
    border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 .image-uncropped-full-width,
.rounded-5 .block-image-cover {
    border-radius: var(--bs-border-radius-xxl) !important;
}
/** Negative spacing utilites **/

.mt-n1 {
	margin-top: calc(var(--bs-spacer-1) * -1) !important;
}
.mt-n2 {
	margin-top: calc(var(--bs-spacer-2) * -1) !important;
}
.mt-n3 {
	margin-top: calc(var(--bs-spacer-3) * -1) !important;
}
.mt-n4 {
	margin-top: calc(var(--bs-spacer-4) * -1) !important;
}
.mt-n5 {
	margin-top: calc(var(--bs-spacer-5) * -1) !important;
}
.mt-n6 {
	margin-top: calc(var(--bs-spacer-6) * -1) !important;
}
.me-n1 {
	margin-right: calc(var(--bs-spacer-1) * -1) !important;
}
.me-n2 {
	margin-right: calc(var(--bs-spacer-2) * -1) !important;
}
.me-n3 {
	margin-right: calc(var(--bs-spacer-3) * -1) !important;
}
.me-n4 {
	margin-right: calc(var(--bs-spacer-4) * -1) !important;
}
.me-n5 {
	margin-right: calc(var(--bs-spacer-5) * -1) !important;
}
.me-n6 {
	margin-right: calc(var(--bs-spacer-6) * -1) !important;
}
.mb-n1 {
	margin-bottom: calc(var(--bs-spacer-1) * -1) !important;
}
.mb-n2 {
	margin-bottom: calc(var(--bs-spacer-2) * -1) !important;
}
.mb-n3 {
	margin-bottom: calc(var(--bs-spacer-3) * -1) !important;
}
.mb-n4 {
	margin-bottom: calc(var(--bs-spacer-4) * -1) !important;
}
.mb-n5 {
	margin-bottom: calc(var(--bs-spacer-5) * -1) !important;
}
.mb-n6 {
	margin-bottom: calc(var(--bs-spacer-6) * -1) !important;
}
.ms-n1 {
	margin-left: calc(var(--bs-spacer-1) * -1) !important;
}
.ms-n2 {
	margin-left: calc(var(--bs-spacer-2) * -1) !important;
}
.ms-n3 {
	margin-left: calc(var(--bs-spacer-3) * -1) !important;
}
.ms-n4 {
	margin-left: calc(var(--bs-spacer-4) * -1) !important;
}
.ms-n5 {
	margin-left: calc(var(--bs-spacer-5) * -1) !important;
}
.ms-n6 {
	margin-left: calc(var(--bs-spacer-6) * -1) !important;
}

/** Theme Specific **/
.list-item-check li, .list-item-circle-check li {
	list-style: none;
}
.list-item-check li::before {
    content: "00c";
    color: #000;
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    margin-right: 8px;
}
.list-item-circle-check li::before {
    content: "058";
    color: #000;
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    margin-right: 8px;
}
.eyebrow h5 {
    background: #fcfcfc;
    display: inline-block;
    padding: 7px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 35px;
    box-shadow: 0px 1px 3px #2e2f3130;
}
.section-one-background {
    background-color: #f1f6fb;
    background-image: url(https://cdn.prod.website-files.com/656d63a5a8c1cffefeee75a0/656eb9324bc9f3abbb604420_pattern-1.png);
    background-position: 0 0;
    background-size: auto;
}
.benefit-card img {
    width: 100%;
    max-width: 90px !important;
    height: auto;
}
/** Custom Career Site CSS **/

.negative-ml .col-md-6:nth-of-type(2) {
  margin-left: -60px;
  z-index: 99;
}
.negative-mr .col-md-6:nth-of-type(1) {
  margin-right: -60px;
  z-index: 99;
}
/* childcare cards */

.childcare-card {
  box-shadow: 0 2px 15px 0 rgba(26, 26, 26, .1);
  height: 100%;
  margin-bottom: 10px;
  border-radius: 8px;
}
.childcare-card img {
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0px 0px;
}
.childcare-card p a {
  color: #0097A9;
  margin-top: 30px !important;
  display: block;
}
.childcare-card .page-block>*:first-child {
  padding-left: 0;
  padding-right: 0;
}
.childcare-card .page-block>*:not(:first-child) {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 16px;
  padding-bottom: 22px;
  color: var(--light-color);
}
.info-card {
  margin-bottom: 5px;
}
.info-card img {
  width: 100%;
  height: auto;
}
.bg-blue {
  background-color: rgb(0, 146, 200);
}
.health-card .card {
  background: #fff;
  border-radius: 8px;
}
.health-card .card img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}
.section-one-background {
  background-color: #f1f6fb;
  background-image: url(https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/8fef6cd7d07646ce6c2ab834f90a9419/images/files/6c001ecdb3641202b931347dc2544fcb/original/Linkforce-background-navy-1920-400.png?1761790515);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-two-background {
  background-color: #f1f6fb;
  background-image: url(https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/8fef6cd7d07646ce6c2ab834f90a9419/images/files/f94437a7a148bf1e66ffab8756c215f9/original/Linkforce-background-grey-1920-400.png?1761790516);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-three-background {
  background-color: #f1f6fb;
  background-image: url(https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/8fef6cd7d07646ce6c2ab834f90a9419/images/files/885f7ea27e8dbd8853ab451976cf9645/original/Linkforce-background-mix-1920-400.png?1761790516);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-four-background {
  background-color: #f1f6fb;
  background-image: url(https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/8fef6cd7d07646ce6c2ab834f90a9419/images/files/28e335cd11fb99b2e61725da093d4744/original/Linkforce-uncover-your-true-potenial-banner-1920x400px.jpg?1761796918);
  background-position: 40% 20%;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-one {
  /* The image used */
  background-image: url("https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/8fef6cd7d07646ce6c2ab834f90a9419/images/files/ab02156b828624d709d73f3241439338/original/Linkforce-background-navy-1600-800.png?1761790516");
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-two {
  /* The image used */
  background-image: url("https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/8fef6cd7d07646ce6c2ab834f90a9419/images/files/5dbc34174cbe47e7735447f2555cdd9d/original/Linkforce-background-grey-1600-800.png?1761790516");
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-three {
  /* The image used */
  background-image: url("https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/8fef6cd7d07646ce6c2ab834f90a9419/images/files/8a69314ce89412544502a86b6050487b/original/Linkforce-background-mix-1600-800.png?1761790516");
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-four {
  /* The image used */
  background-image: url("https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/8fef6cd7d07646ce6c2ab834f90a9419/images/files/65a614e3d5a2b7e676d1bb8be4eca7f4/original/Linkforce-uncover-your-true-potenial-banner-1600x800px.jpg?1761796918");
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
a.nav-link.login_btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
  display: inline-block;
  border-radius: 4px;
}
/* dropdown css*/

ul.dropdown-menu {
  padding: 0;
}
ul.dropdown-menu li {
  margin: 0;
}
a.dropdown-item:hover {
  color: var(--light-color);
  background-color: var(--primary-color);
}
a.dropdown-item {
  padding: 12px 24px;
  border-radius: 0.375rem;
}
li.job-component-icon-and-text i, .job-component-list i {
  color: var(--primary-color);
}
.navbar {
  min-height: 40px;
}
  body {
    padding-top: 60px;
  }
@media (min-width: 768px) {
  body {
    padding-top: 100px;
  }
  .navbar {
    min-height: 100px;
    padding: 0;
  }
  .navbar-collapse {
    display: flex;
    flex: 1;
  }
  .navbar-nav {
    min-height: 100px;
    display: flex;
    align-items: center;
    flex: 0 1 auto;
  }
  .nav-item {
    margin: 0px;
    display: flex;
    flex: 1;
    min-height: 100px;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 4px solid transparent;
  }
  .nav-item a {
    display: flex;
    flex: 1;
    align-items: center;
    white-space: nowrap;
    font-weight: bold;
  }
  .dropdown-toggle::after {
    display: none;
  }
  .nav-item:hover {
    border-bottom: 4px solid #0092c8;
  }
  .nav-link:hover {
    border-bottom: none;
  }
  .dropdown-menu {
    border-radius: 0 0 0.25rem 0.25rem;
    border-color: transparent;
    overflow: hidden;
    top: 99px !important;
    margin: 0 !important;
    z-index: 2000;
  }
  .dropdown-menu li {
    border-radius: 0 !important;
  }
  .dropdown-menu li a {
    border-radius: 0 !important;
  }
  .dropdown-menu li a:hover {
    text-decoration: none !important;
  }
}
@media (max-width: 768px) {
  .navbar-toggler {
    border: none !important;
  }
  .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
  }
}
.zoom {
  transition: transform .5s;
  /* Animation */
}
.zoom:hover {
  transform: scale(1.02);
}
.job-search-results-card, .job-list-cards .job {
  transition: background-color var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.job-list-cards .job {
  border: 1px solid #f2f2f2;
  transition: background-color var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.job-search-results-card:hover, .job-list-cards .job:hover {
  border: 1px solid #0092c8;
}
.block-jobs .job span.job-field {
  margin-right: 10px;
  color: #022a3a;
  display: block;
  margin-top: 6px;
  font-size: 14px;
}
.job-list-cards .job .job-title {
  color: #022A3A;
}
.job-location::before, .job-department::before, .job-category::before, .job-employment-type::before {
  font-family: var(--fa-family, var(--fa-style-family, "Font Awesome 7 Free"));
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
  color: var(--primary-color);
}
.job-location::before {
  content: "\f124";
}
.job-department::before {
  content: "\f500";
}
.job-category::before {
  content: "\f275";
}
.job-employment-type::before {
  content: "\f017";
}

@media (max-width: 767px) {
  .button {
    display: block;
    width: 100%;
    text-align: center;
  }
  .nav-link {
    padding: 10px 8px !important;
  }
  .navbar-nav .nav-item:first-child {
    margin-top: 20px;
  }
  .nav-link {
    display:inline-block;
  }
}
.dropdown-menu {
    border: 0;
    box-shadow: none !important;
}

@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}
.dropdown-toggle::after {
  display: none;
}
.nav-link-toggle i {
  font-size: 12px;
  margin-left: 2px;
}
.chatbot-launcher-button {
    padding: 0 !important;
}

/**recruitment-carousel**/

.recruitment-carousel .row {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

.recruitment-carousel .carousel-item-block {
  background: #0092C8;
  border-radius: 6px;
  padding: 20px 35px;
  height: 500px;
  margin-bottom: 10px;
}

.recruitment-carousel .carousel-caption * {
  color: #ffffff !important;
}

.recruitment-carousel .carousel-caption a {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: underline;
}

.recruitment-carousel .carousel-item-block-image {
  width: 100%;
  max-width: 75px !important;
  height: auto;
  margin-bottom: 25px !important;
}

.recruitment-carousel .carousel-caption {
  padding: 0px;
}

.recruitment-carousel .carousel-indicators {
  margin-bottom: -25px !important;
}

.recruitment-carousel .carousel-item-block.col-6 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .recruitment-carousel .carousel-item .row {
    column-gap: 16px;
  }
  .recruitment-carousel .carousel-item-block.col-6 {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
footer a {
  text-decoration:none;
}
.social a, .social a:hover {
  text-decoration:none;
}
