@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

/* Theme Variables */
:root {
    /* Typography */
    --font-family-body: "Inter Tight", serif;
    --font-family-heading: "Inter Tight", serif;
    
    --font-size-h1: 38px;
    --font-size-h2: 34px;
    --font-size-h3: 30px;
    --font-size-h4: 26px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
    --font-size-paragraph: 16px;
    
    /* Colors */
    --primary-color: #002f48;
    --secondary-color: #6c757d;
    --dark-color: #000000;
    --light-color: #ffffff;
    --input-border-color:#ced4da;
	--input-bg-color:#ffffff;
 
	/* Other variables */
  	--border-radius: 10px;

    /* Border Radius & Padding */
    --btn-border-radius: 35px;
    --input-border-radius: 5px;
    --input-padding: 14px 28px;

    /* Primary Button */
    --primary-btn-bg: #002F48;
    --primary-btn-color: #ffffff;
    --primary-btn-border-color: #002F48;
    
    /* Primary Button Hover */
    --primary-btn-bg-hover: linear-gradient(90deg, #7ed957 0%, #18d2c3 100%);
    --primary-btn-color-hover: #003b57;
    --primary-btn-border-color-hover: transparent;
    
    /* Secondary Button */
    --secondary-btn-bg: #ffffff;
    --secondary-btn-color: #002F48;
    --secondary-btn-border-color: #002F48;
    
    /* Secondary Button Hover */
    --secondary-btn-bg-hover: linear-gradient(90deg, #7ed957 0%, #18d2c3 100%);
    --secondary-btn-color-hover: #003b57;
    --secondary-btn-border-color-hover: transparent;
    
    /* Button One */
    --button-one-bg: transparent;
    --button-one-color: #ffffff;
    --button-one-border-color: #ffffff;
    
    /* Button One Hover */
    --button-one-bg-hover: linear-gradient(90deg, #7ed957 0%, #18d2c3 100%);
    --button-one-color-hover: #ffffff;
    --button-one-border-color-hover: transparent;
    
    /* Button Two */
    --button-two-bg: #01579b;
    --button-two-color: #ffffff;
    --button-two-border-color: #01579b;
    
    /* Button Two Hover */
    --button-two-bg-hover: linear-gradient(90deg, #7ed957 0%, #18d2c3 100%);
    --button-two-color-hover: #003b57;
    --button-two-border-color-hover: transparent;

    /* Button Three */
    --button-three-bg: #01579b;
    --button-three-color: #ffffff;
    --button-three-border-color: #01579b;

    /* Button Three Hover */
    --button-three-bg-hover: #014f8c;
    --button-three-color-hover: #ffffff;
    --button-three-border-color-hover: #014f8c;

    /* Button Four */
    --button-four-bg: transparent;
    --button-four-color: #002F48;
    --button-four-border-color: transparent;

    /* Button Four Hover */
    --button-four-bg-hover: transparent;
    --button-four-color-hover: #002F48;
    --button-four-border-color-hover: transparent;
	
	/* Cards */
	--card-background-color: #ffffff;
	--card-border-color: #c9c9c9;
	--card-padding: 30px 30px;
	--card-border-radius: 22px;
	--card-box-shadow:none;

	/* Navbar */
	--navbar-background: #ffffff;
	--navbar-color: #010101;

	/* Footer */
	--footer-background: #002f48;
	--footer-color: #ffffff;

    /* Layout Settings */
    --card-columns: 25%;
    --filter-columns: 33.333%;

	/* 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: #4D4D4F;
	line-height: 1.5;
	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: 300;
	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);
}
.h1 strong, h1 strong, .h2 strong, h2 strong, .h3 strong, h3 strong {
  	font-weight: 300;
}
/* 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: clamp(2.75rem, 1.55rem + 3vw, 4.5rem);
	line-height: 0.98;
}
.hero-h2 h2 {
	font-size: 42px;
}
@media (max-width: 576px) {
	.hero-h2 h2 {
		font-size: calc(var(--font-size-h2)* 0.7);
	}
  	.hero-h1 .container-fluid h1,
  	.hero-h2 .container-fluid h2,
	.hero-h1 .container-fluid p,
  	.hero-h2 .container-fluid p {
		padding-left: 15px;
		padding-right: 15px;
  }
}
a, a:visited {
	color: var(--primary-color);
}
a:hover {
	color: var(--primary-color);
}

/** Navigation **/

.navbar {
    background: var(--navbar-background);
    border-bottom: 1px solid #e0e6e9;
}
.nav-item {
	margin: 0px;
	margin-top: auto !important;
	margin-bottom: auto !important;
}
.nav-link {
	color: var(--navbar-color) !important;
	font-size: 16px;
	font-weight: 400;
	padding: 8px 20px !important;
}
.nav-link:visited {
	color: var(--navbar-color) !important;
}
.nav-link:hover {
	color: var(--primary-color) !important;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: var(--dark-color);
    background-color: #ececec;
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--dark-color);
    background-color: #ececec;
}
@media (max-width: 767px) {
  .nav-link {
    padding: 10px 8px !important;
  }
  .navbar-nav .nav-item:first-child {
    margin-top: 20px;
  }
}
/* Logos */

.navbar-brand-logo {
	width: 100%;
	max-width: 155px;
}
.footer-brand-logo {
	width: 100%;
	max-width: 155px;
}
@media (max-width: 576px) {
	.navbar-brand-logo {
		max-width: 115px;
	}
}
@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;
	line-height: 1.5;
	padding: var(--input-padding);
	transition:
		color var(--motion-duration) var(--motion-ease),
		box-shadow var(--motion-duration) var(--motion-ease);
	border-radius: var(--btn-border-radius) !important;
	border: none;
	font-size: 15px;
	text-transform: inherit;
	text-decoration: none !important;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.btn::before,
a.button::before,
.consent-agree::before,
.consent-confirm::before,
.consent-reject::before,
.reject-performance-cookies::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: var(--button-hover-surface, transparent);
	transform: translateX(-102%);
	transition: transform 0.42s var(--motion-ease);
	z-index: -1;
	pointer-events: none;
}

.btn:hover::before,
.btn:focus-visible::before,
a.button:hover::before,
a.button:focus-visible::before,
.consent-agree:hover::before,
.consent-agree:focus::before,
.consent-confirm:hover::before,
.consent-confirm:focus::before,
.consent-reject:hover::before,
.consent-reject:focus::before,
.reject-performance-cookies:hover::before,
.reject-performance-cookies:focus::before {
	transform: translateX(0);
}

.btn-primary {
	background: var(--primary-btn-bg);
	--button-hover-surface: var(--primary-btn-bg-hover);
	color: var(--primary-btn-color);
	border: none;
	box-shadow: inset 0 0 0 1px var(--primary-btn-border-color);
}
.btn-primary:visited, .btn-primary:active, .btn-primary:focus {
	background: var(--primary-btn-bg);
	color: var(--primary-btn-color);
	box-shadow: inset 0 0 0 1px var(--primary-btn-border-color);
}
.btn-primary:hover, .btn-primary:first-child:active, .btn-primary:focus-visible {
	background: var(--primary-btn-bg);
	background-color: var(--primary-btn-bg);
	color: var(--primary-btn-color-hover);
	box-shadow: none;
}

/* Primary button inside a form group gets a white border */
.form-group .btn-primary {
	box-shadow: inset 0 0 0 1px #ffffff;
}
.form-group .btn-primary:hover,
.form-group .btn-primary:focus-visible,
.form-group .btn-primary:first-child:active {
	box-shadow: none;
}

.btn-success {
	background: var(--secondary-btn-bg);
	--button-hover-surface: var(--secondary-btn-bg-hover);
	color: var(--secondary-btn-color);
	box-shadow: inset 0 0 0 1px var(--secondary-btn-border-color);
}
.btn-success:visited, .btn-success:active, .btn-success:focus, .btn:first-child:active {
	background: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
	box-shadow: inset 0 0 0 1px var(--secondary-btn-border-color);
}
.btn-success:hover {
	background: var(--secondary-btn-bg);
	background-color: var(--secondary-btn-bg);
	color: var(--secondary-btn-color-hover);
	box-shadow: none;
}

.btn-info, .btn-danger {
	background: var(--primary-btn-bg);
	--button-hover-surface: var(--primary-btn-bg-hover);
	color: var(--primary-btn-color);
	box-shadow: inset 0 0 0 1px var(--primary-btn-border-color);
}
.btn-info:hover, .btn-info:visited, .btn-info:active, .btn-info:focus,
.btn-danger:hover, .btn-danger:visited, .btn-danger:active, .btn-danger:focus {
	color: var(--primary-btn-color-hover);
	box-shadow: none;
}

.candidate-favourite:hover, .view-favourites:hover {
	text-decoration: none;
}

@media (max-width: 768px) {
	.candidate-favourite, .view-favourites {
		margin-bottom: 5px;
	}
}

/* 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);
}
/* 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);
}
/* custom buttons */

a.button.button1 {
	background: var(--button-one-bg);
	--button-hover-surface: var(--button-one-bg-hover);
	color: var(--button-one-color);
	box-shadow: inset 0 0 0 1px var(--button-one-border-color);
}
a.button.button1:hover {
	color: var(--button-one-color-hover);
	box-shadow: none;
}
a.button.button2 {
	background: var(--button-two-bg);
	--button-hover-surface: var(--button-two-bg-hover);
	color: var(--button-two-color);
	box-shadow: inset 0 0 0 1px var(--button-two-border-color);
}
a.button.button2:hover {
	color: var(--button-two-color-hover);
	box-shadow: none;
}
a.button.button3 {
	background: var(--button-three-bg);
	color: var(--button-three-color);
	box-shadow: inset 0 0 0 1px var(--button-three-border-color);
}
a.button.button3:hover {
	background: var(--button-three-bg-hover);
	color: var(--button-three-color-hover);
	box-shadow: inset 0 0 0 1px var(--button-three-border-color-hover);
}
a.button.button4 {
	background: var(--button-four-bg);
	color: var(--button-four-color);
	padding: 0;
	border-radius: 0 !important;
	text-decoration: underline !important;
}
a.button.button4:hover {
	background: var(--button-four-bg-hover);
	color: var(--button-four-color-hover);
}
/* Input group */

.call-to-action .form-control {
    border: 1px solid var(--input-border-color);
    background: var(--input-bg-color);
    padding: 10px 14px;
}
.selectize-input, .selectize-control.multi .selectize-input.has-items {
    border: 1px solid var(--input-border-color);
    background: var(--input-bg-color);
    padding: 10px 14px;
}
.input-group input, .input-group-btn button {
	height: auto !important;
	padding: var(--input-padding) !important;
}
/* Bootstrap Card */

.card {
	border: 1px solid var(--card-border-color);
	border-radius: var(--border-radius);
	box-shadow: var(--card-box-shadow);
	margin-bottom: 6px;
	background: var(--card-background-color);
	padding: var(--card-padding);
}
.card-title {
    line-height: 1.1;
}
/* Search / CTA input */
.job-search-control .form-control {
    border-radius: var(--input-border-radius) !important;
}
.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: var(--input-bg-color);
}
.job-search-control input {
	background: var(--input-bg-color);
}
.job-search-control .easy-autocomplete {
  	background:transparent;
}
.call-to-action .form-control {
	border-radius: var(--input-border-radius);
}
.call-to-action-form input, .call-to-action-form select {
    background: var(--input-bg-color);
}
.form-call-to-action input[type=file].form-control {
    padding: 6px 10px;
}
.selectize-control.multi .selectize-input>div {
    background-color: #e0e6e9;
    color: var(--primary-color);
    border-radius: 3px;
    padding: 2px 10px;
}
.selectize-dropdown-content .option.active {
	background-color: var(--primary-color);
    color:var(--light-color);
}
.selectize-dropdown .option {
    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 content block **/
.easy-autocomplete-container .eac-category {
    color: #000000 !important;
}
.easy-autocomplete-container .eac-item * {
    color: #000000 !important;
}

/** Job Search page **/

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 7l4.5 4.5L13.5 7' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}
/* Job Search table */

.job-search-results-table .job-search-results-title a {
    color:var(--primary-color);
}
.job-search-filter-header {
	font-size: 20px !important;
}
.block-job-search-results .job-search-results table, .block-job-search-results .job-search-results .table-counts {
    font-size: inherit !important;
}
.table>:not(caption)>*>* {
    padding: 0.7rem 0.5rem;
}
/* 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: var(--card-box-shadow);
	margin-bottom: 6px;
}
.job-search-results-card-title a {
	color: #000000;
	font-size: 22px;
}
.job-search-results-summary {
    font-size: 16px;
}
.job-search-results-card-body {
	padding: 0px;
}
.job-search-results-footer {
	background: var(--card-background-color);
	border-top: 0px;
	padding: 10px 0px;
}
.job-search-results-footer a {
	background: var(--card-background-color);
	color: var(--primary-color);
}
.job-search-results-card {
	background: var(--card-background-color);
}

/** 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-color);
}
.job-search-dropdown-filters select {
	padding: 14px 10px;
	margin-bottom: 6px;
	border-radius: var(--input-border-radius);
	border: 1px solid var(--input-border-color);
	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 (max-width: 576px) {
  .pagination li.page-item {
    display: none;
  }
  .pagination li.prev,
  .pagination li.next {
    display: inline-block;
  }
  .pagination li.active {
    display: inline-block;
  }
  .pagination li.page-item:has(+ .active) {
    display: inline-block;
  }
  .pagination li.active + li.page-item {
    display: inline-block;
  }
}
.job-search-results .job-search-collapse {
    font-size: 16px !important;
}
.job-search-results .job-search-collapse:after {
    content: "F4FE";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 600 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -4px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    margin-left: 2px;
}
@media (max-width: 767px) {
  .job-search-control input {
    margin-bottom: 8px;
  }
}

/** Job Advert **/

.block-job-description .job-title {
    font-size: 40px;
    color: var(--primary-color);
    padding-bottom: 14px;
}
.job-description a:not(.btn) {
	text-decoration: underline;
	font-weight: 400;
}
/* Side panels */

.side-panel {
	box-shadow: var(--card-box-shadow);
	padding: 40px 25px;
	margin-bottom: 20px;
	border-radius: 12px;
}
.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: 30px;
    padding-bottom: 10px;
    font-weight: 400;
}
.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;
}
.job-list-cards .job {
	background: #ffffff;
	box-shadow: var(--card-box-shadow);
	padding: 30px;
	width: calc(33.333% - 15px);
	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:var(--primary-color);
    font-size:18px;
}
.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='%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;
}
@media (min-width: 768px) {
	.carousel-control-prev, .carousel-control-next {
		width: 3%;
	}
}
.carousel-item-block.col-6 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .carousel-item-block.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/** Video **/

/** 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: var(--footer-background);
}
footer * {
	color: var(--footer-color);
}
footer a {
  	color: var(--footer-color);
}
footer a:hover,
footer a:visited,
footer a:active {
  	color: var(--footer-color) !important;
	opacity:0.85;
}
.social a {
	font-size: 16px;
	text-decoration:none;
}
.job-alert-signup-heading,
.job-alert-signup-copy {
	text-align: center;
}
.site-footer {
	padding-top: 4.75rem !important;
	padding-bottom: 4.25rem !important;
}
.site-footer__divider {
	padding-bottom: 3.5rem !important;
}
.site-footer__main {
	row-gap: 2rem;
}
.site-footer__brand-column {
	padding-top: 0.25rem;
}
.site-footer__logo {
	display: block;
	max-width: 140px;
	height: auto;
}
.site-footer__content-column {
	padding-right: 2rem;
}
.site-footer__eyebrow {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.3;
}
.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 2.85rem;
}
.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: var(--footer-color);
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.site-footer__social-link .bi-youtube {
	font-size: 1.15rem;
}
.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 1);
	color: var(--footer-color) !important;
	opacity: 1;
}
.site-footer__acknowledgement {
	max-width: 43rem;
}
.site-footer__heading {
	margin: 0 0 0.9rem;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.35;
}
.site-footer__body {
	margin: 0;
	max-width: 43rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}
.site-footer__link-column {
	display: flex;
	justify-content: flex-end;
}
.site-footer__external-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding-top: 0.3rem;
	font-size: 1.1rem;
	font-weight: 500;
	white-space: nowrap;
}
.site-footer__external-link .external-arrow-icon {
	width: 0.9rem;
	height: 0.9rem;
	vertical-align: middle;
}
.site-footer__legal-row {
	margin-top: 4rem;
}
.site-footer__legal-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem 1.4rem;
	padding: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}
.site-footer__legal-item {
	margin: 0 !important;
}
.site-footer__legal-separator {
	margin: 0 !important;
	color: rgba(255, 255, 255, 0.4);
}
.site-footer__legal-list a {
	opacity: 0.9;
}
.site-footer__legal-list a:hover,
.site-footer__legal-list a:focus-visible {
	opacity: 1;
}
@media (max-width: 991.98px) {
	.site-footer {
		padding-top: 4rem !important;
		padding-bottom: 3.5rem !important;
	}

	.site-footer__content-column {
		padding-right: 0.75rem;
	}

	.site-footer__link-column {
		justify-content: flex-start;
	}

	.site-footer__legal-row {
		margin-top: 3rem;
	}
}
@media (max-width: 767.98px) {
	.site-footer__divider {
		margin-bottom: 2.75rem !important;
	}

	.site-footer__socials {
		margin-bottom: 2.25rem;
	}

	.site-footer__social-link {
		width: 2.55rem;
		height: 2.55rem;
		font-size: 1.15rem;
	}

	.site-footer__body {
		font-size: 1rem;
	}

	.site-footer__legal-row {
		margin-top: 2.5rem;
	}

	.site-footer__legal-list {
		gap: 0.65rem 1rem;
		font-size: 0.9rem;
	}

	.site-footer__legal-separator {
		display: none;
	}
}
/** 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);
	--button-hover-surface: var(--secondary-btn-bg-hover);
	color: var(--secondary-btn-color);
	border: 1px solid var(--secondary-btn-border-color);
}
.consent-agree, .consent-confirm {
	background: var(--primary-btn-bg);
	--button-hover-surface: var(--primary-btn-bg-hover);
	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);
	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);
	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;
}
.exit-call-to-action-modal {
  .modal-content {
      border-radius: 8px;
  }
  .modal-header {
  
  }
  .modal-body {

  }
  .modal-footer {
  
  }
}
/* Accessibility */

:where(a, button, .btn):focus-visible{
  outline: 2px solid color-mix(in oklch, var(--primary-btn-bg), white 20%);
  outline-offset: 3px;
}

.job-search-control .btn {
  background-clip: padding-box;
}

.job-search-control .btn.btn-primary:hover,
.job-search-control .btn.btn-primary:focus,
.job-search-control .btn.btn-primary:focus-visible,
.job-search-control .btn.btn-primary:active {
  outline: 2px solid transparent;
  box-shadow: none;
  background-clip: padding-box;
}

.job-description-controls .btn.btn-primary:hover,
.job-description-controls .btn.btn-primary:focus,
.job-description-controls .btn.btn-primary:focus-visible,
.job-description-controls .btn.btn-primary:active,
.candidate-favourite:hover,
.candidate-favourite:focus,
.candidate-favourite:focus-visible,
.candidate-favourite:active,
.view-favourites:hover,
.view-favourites:focus,
.view-favourites:focus-visible,
.view-favourites:active {
  outline: 2px solid transparent;
  box-shadow: none;
  background-clip: padding-box;
}
/* Alignment / Spacing / Order */

.my-auto .col-md-6, .my-auto .col-md-8, .my-auto .col-md-4 {
	margin-top: auto !important;
	margin-bottom: auto !important;
}

/* ordering */

@media (max-width: 767px) {
  .reverse-columns .row.page-row-border {
    display: flex;
    flex-direction: column;
  }
  .reverse-columns .row.page-row-border > [class*="col-"]:first-child {
    order: 2;
  }
  .reverse-columns .row.page-row-border > [class*="col-"]:last-child {
    order: 1;
  }
}
/* 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;
}
/** hero image positioning **/

.img-top .block-image-cover {
    background-position: 50% 15% !important;
}
.img-bottom .block-image-cover {
    background-position: 50% 75% !important;
}
/** Theme Specific **/

.list-item-check li, .list-item-circle-check li {
	list-style: none;
}
.list-item-check li::before {
    content: "\f00c";
    color: #000;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-right: 8px;
}
.list-item-circle-check li::before {
    content: "\f058";
    color: #000;
    font-family: "Font Awesome 6 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;
}
.curved-hero-banner {
  position: relative;
  padding: 165px 0 250px;
  color: #fff;
  background: none;
  overflow: visible;  
}
.curved-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.25)),
    url('#')
      center/cover no-repeat;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path fill='white' d='M0,0 H100 V80 Q50,98 0,80 Z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path fill='white' d='M0,0 H100 V80 Q50,98 0,80 Z'/></svg>");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.curved-hero-banner > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .curved-hero-banner {
    padding: 180px 0 200px;
  }
  .curved-hero-banner::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path fill='white' d='M0,0 H100 V84 Q50,96 0,84 Z'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path fill='white' d='M0,0 H100 V84 Q50,96 0,84 Z'/></svg>");
  }
}
/** fix for media querries in the builder **/
.page {
    &.editing {
        & .page-row {
            .block-wrapper {
                display: block !important;
            }
        }
    }
}
/** Custom Career Site CSS **/

/* ================================================
   Navbar
   ================================================ */

.custom-navbar {
	padding: 0;
}
.custom-navbar .custom-navbar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.custom-navbar .nav-top-row {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	background: #fff;
	padding: 1rem 1.25rem;
}
.custom-navbar .navbar-brand {
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
}
.custom-navbar .navbar-brand-logo {
	display: block;
	width: auto;
	max-height: 42px;
}
.custom-navbar .custom-toggler {
	margin: 0;
	justify-self: end;
	align-self: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none !important;
	position: relative;
}
.custom-navbar .custom-toggler:focus {
	box-shadow: none !important;
	outline: none;
}
.custom-navbar .custom-toggler .toggler-icon {
	position: absolute;
	inset: 0;
	background: transparent;
}
.custom-navbar .custom-toggler .toggler-icon::before,
.custom-navbar .custom-toggler .toggler-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 30px;
	height: 2px;
	background-color: #0d3b5c;
	transform: translateX(-50%);
	transform-origin: center;
	transition: top 0.25s ease, transform 0.25s ease;
}
.custom-navbar .custom-toggler .toggler-icon::before {
	top: 14px;
}
.custom-navbar .custom-toggler .toggler-icon::after {
	top: 24px;
}
.custom-navbar .custom-toggler:not(.collapsed) .toggler-icon::before {
	top: 19px;
	transform: translateX(-50%) rotate(45deg);
}
.custom-navbar .custom-toggler:not(.collapsed) .toggler-icon::after {
	top: 19px;
	transform: translateX(-50%) rotate(-45deg);
}
.custom-navbar .navbar-collapse {
	width: 100%;
	background: #fff;
	margin-top: 0.75rem;
}
.custom-navbar .navbar-nav {
	width: 100%;
	padding: 0.25rem 1.25rem;
}
.custom-navbar .nav-item + .nav-item {
	border-top: 1px solid #ececec;
}
.custom-navbar .nav-link {
	display: block;
	padding: 0.95rem 0;
	font-size: 1rem;
	line-height: 1.4;
	color: #0d3b5c;
	text-decoration: none;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
	color: #0d3b5c;
}

@media (min-width: 992px) {
	.custom-navbar .custom-navbar-inner {
		flex-wrap: nowrap;
		align-items: center;
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
	.custom-navbar .nav-top-row {
		width: auto;
		display: flex;
		align-items: center;
		background: transparent;
		padding: 0;
		margin-right: 1.5rem;
	}
	.custom-navbar .custom-toggler {
		display: none;
	}
	.custom-navbar .navbar-collapse {
		width: auto;
		background: transparent;
		margin-top: 0;
		flex-grow: 1;
	}
	.custom-navbar .navbar-nav {
		width: auto;
		padding: 0;
		margin-left: auto;
		display: flex;
		align-items: center;
	}
	.custom-navbar .nav-item + .nav-item {
		border-top: 0;
		margin-left: 1.5rem;
	}
	.custom-navbar .nav-link {
		padding: 0;
	}
}

/* ================================================
   Hero Banner
   ================================================ */

.hero-banner {
	background-image: none;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 0 auto;
	padding-bottom: 0 !important;
	padding-top: 80px;
}
.hero-h1 h1 {
	color: #ffffff;
}

@media (min-width: 767px) {
	.hero-banner {
		background-image: url("https://d2nc0na9w8r5aj.cloudfront.net/public/uploads/2a0e2efc0b8629df3cd2e8fcd635eb45/images/files/112558ffc82d09df3f7fb463101ec152/original/hero-image-only.png?1774342693");
		background-position: right center;
		background-repeat: no-repeat;
		background-size: 50% auto;
		padding-bottom: 80px !important;
		padding-top: 80px;
	}
}
@media (max-width: 767.98px) {
	.hero-banner .row > .col-md-6:nth-of-type(2) {
		padding: 0 !important;
	}
}

/* ================================================
   Search Controls
   ================================================ */

.job-search-control,
.job-search-dropdown-filters {
	background: #ffffff !important;
}
.job-search-control {
	padding: 35px 45px 5px 45px;
	margin-bottom: 0px !important;
	border-radius: 8px 8px 0px 0px;
}
.job-search-dropdown-filters {
	padding: 10px 45px 30px 45px !important;
	margin-bottom: 50px;
	box-shadow: 0px 15px 10px #f1f1f1;
	border-radius: 0px 0px 8px 8px;
}
h2.custom-job-search-heading {
	font-weight: 400;
	color: #002f48;
	font-size: 30px;
}
.border-info {
	position: relative;
	border: 0 !important;
}
.border-info::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: linear-gradient(90deg, #7ed957 0%, #18d2c3 100%);
}

@media (max-width: 767.98px) {
	.job-search-control {
		padding: 35px 20px 5px 28px;
	}
	.job-search-dropdown-filters {
		padding: 10px 20px 30px 20px !important;
	}
}

/* ================================================
   Search Results Cards
   ================================================ */
.job-search-intro {
    color: #002f48;
    font-weight: 400;
    font-size: 30px;
}
.job-search-results-card-col .job-search-results-card,
.side-panel,
.candidate-settings-panel {
	background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, #7ed957 0%, #35d6c8 55%, #00c2ff 100%) border-box;
	border: 1.9px solid transparent;
	overflow: hidden;
}
.card-title {
	line-height: .95;
}
.job-search-results-card-title a {
	color: var(--primary-color);
	font-size: 21px;
	font-weight: 600;
}
.job-component-details {
	padding-top: 10px;
}
li.job-component-icon-and-text {
	background: #e0e6e9;
	padding: 3px 13px 3px 3px;
	border-radius: 4px;
	display: inline-block;
	color: #002f48;
}
.job-search-results-summary {
	font-size: 15px;
	color: #4d4d4f;
	line-height: 1.5;
	padding-top: 10px;
}
.job-search-results-footer a {
	background: var(--card-background-color);
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: 600;
	font-size: 15px;
}
.job-search-results-footer a i {
	margin-left: 4px;
}

/* ================================================
   Pagination
   ================================================ */

.bottom-pagination {
	padding: 2rem 0 1rem;
}
.bottom-pagination .pagination-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.75rem;
}
.bottom-pagination .col-md-4,
.bottom-pagination .col-md-8 {
	width: 100%;
	max-width: 100%;
	flex: 0 0 100%;
	text-align: center;
}
.bottom-pagination .table-counts p {
	margin: 0;
	line-height: 1.4;
	font-weight: 400;
}
.bottom-pagination .table-counts b {
	font-weight: 400;
}
.bottom-pagination .text-right {
	text-align: center !important;
}
.bottom-pagination nav.pagination,
.bottom-pagination ul.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.1rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	list-style: none;
}
.bottom-pagination .page-item {
	margin: 0;
}
.bottom-pagination .page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	border-radius: 999px;
	color: #4d4d4d;
	font-size: 1.15rem;
	font-weight: 400;
	text-decoration: none;
	box-shadow: none;
}
.bottom-pagination .page-link:hover,
.bottom-pagination .page-link:focus {
	color: #0a3d5a;
	background: transparent;
	box-shadow: none;
	text-decoration: none;
}
.bottom-pagination .page-item.active .page-link {
	width: 36px;
	min-width: 36px;
	height: 36px;
	color: #0a3d5a;
	background: linear-gradient(135deg, #7ed957 0%, #18d2c3 100%);
	border-radius: 50%;
}
.bottom-pagination .next_page .page-link,
.bottom-pagination .next .page-link {
	width: auto;
	min-width: 0;
	height: auto;
	border-radius: 0;
	padding: 0;
}
.bottom-pagination .next_page .page-link::after {
	color: #4d4d4d;
}
.bottom-pagination .next_page .page-link:hover::after,
.bottom-pagination .next_page .page-link:focus::after {
	color: #0a3d5a;
}

@media (min-width: 768px) {
	.bottom-pagination {
		padding: 2.5rem 0 1.5rem;
	}
	.bottom-pagination nav.pagination,
	.bottom-pagination ul.pagination {
		gap: 1.5rem;
	}
}

/* ================================================
   Job Advert
   ================================================ */

.apply-now {
	background: #002f48;
}
.apply-now .btn-primary {
	background: transparent;
	color: #ffffff;
	box-shadow: inset 0 0 0 1px #ffffff;
}
.apply-now .btn-primary:hover {
	box-shadow: none;
	color: #002f48;
}
.block-job-description {
	& .job-description-controls {
		.btn {
			padding: var(--input-padding) !important;
			line-height: normal;
		}
	}
}
.job-description-controls {
	padding-top: 36px;
	padding-bottom: 14px;
}
.job-advert-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding-top: 34px;
}
.job-advert-actions > .btn {
	min-width: 172px;
	justify-content: center;
	padding: 14px 28px !important;
}
.job-advert-actions > a.button.button4 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	background: transparent;
	color: var(--primary-color);
	border: 0;
	border-radius: 0 !important;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: underline !important;
}
.job-advert-actions > a.button.button4:hover,
.job-advert-actions > a.button.button4:focus,
.job-advert-actions > a.button.button4:focus-visible,
.job-advert-actions > a.button.button4:active {
	background: transparent;
	color: var(--primary-color);
	border: 0;
	box-shadow: none !important;
	outline: none;
}
.job-advert-actions > a.button.button4 i {
	font-size: 13px;
	text-decoration: none;
}
.job-advert-actions > a.button.button4 span {
	text-decoration: underline;
}
.candidate-settings-panel .btn-danger, .candidate-settings-panel .btn-primary {
    padding: 0px !important;
    background: none;
    color: #002f48;
    border: 0px solid #ffffff !important;
    box-shadow: none;
    font-weight: 400;
}
.candidate-settings-panel .btn-danger:hover, .candidate-settings-panel .btn-primary:hover {
    padding: 0px !important;
    background: none;
    color: #002f48;
    border: 0px solid #ffffff !important;
    box-shadow: none;
    font-weight: 400;
    --button-hover-surface: none;
}
/* ================================================
   Candidate Settings
   ================================================ */

.candidate-settings-panel {
	background-color: #f9f9f9;
	padding: 25px 34px;
	border-radius: 12px;
}
.candidate-settings-panel h3 {
	font-size: 22px;
	color: #002f48;
}
.candidate-settings-panel i {
	color: #002f48;
}

/* ================================================
   Call to Action
   ================================================ */

.block-call-to-action {
	form {
		max-width: 550px;
		margin: 0 auto;
	}
}
.call-to-action-create {
	.not-candidate {
		font-size: 12px;
		color: #ffffff;
	}
}
.cta-w100 form {
	max-width: 475px;
	margin: inherit;
}

/* ================================================
   Utilities
   ================================================ */

.gradient strong {
	background: linear-gradient(90deg, #7ed957 0%, #18d2c3 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}
.external-arrow-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
	background-color: currentColor;
	-webkit-mask: url('https://dfacxoaxr5wom.cloudfront.net/5534ab422d8f835f88c2a464a771813b/e6e236e694d20d0a94e562a618aefac3/icons/open-external.svg') no-repeat center;
	-webkit-mask-size: contain;
	mask: url('https://dfacxoaxr5wom.cloudfront.net/5534ab422d8f835f88c2a464a771813b/e6e236e694d20d0a94e562a618aefac3/icons/open-external.svg') no-repeat center;
	mask-size: contain;
}
span.ada-label-text {
	padding-bottom: 6px;
	display: block;
}
footer .btn:hover {
	color: var(--bs-btn-hover-color);
	background-color: inherit;
	border-color: inherit;
}
