:root {
  /* Colors */
  --primary-color: #00a94f; 
  --secondary-color: #6c757d; 
  --dark-color: #000000; 
  --light-color: #ffffff; 
  --input-border-colour:#c9c9c9;

  /* Button Styles */
  --btn-border-radius: 4px;
  --input-border-radius: 4px;
  --input-padding: 10px 28px;

  --primary-btn-bg:#00a94f;
  --primary-btn-color:#ffffff;
  --primary-btn-border-color:#00a94f;
  
  --secondary-btn-bg:#ffde00;
  --secondary-btn-color:#000000;
  --secondary-btn-border-color:#ffde00;
  
  --button-one-bg:#00a94f;
  --button-one-color:#ffffff;
  --button-one-border-color:#00a94f;
  
  --button-two-bg:#ffde00;
  --button-two-color:#00000;
  --button-two-border-color:#ffde00;
  
  --button-three-bg:#26C6DA;
  --button-three-color:#E0F7FA;
  --button-three-border-color:#ffffff;
  
  --button-four-bg:#ffffff;
  --button-four-color:#00a94f;
  --button-four-border-color:#ffffff;

  /* Button Styles Hover */  
  --primary-btn-bg-hover:#ffffff;
  --primary-btn-color-hover:#00a94f;
  --primary-btn-border-color-hover:#00a94f;

  --secondary-btn-bg-hover:#000000;
  --secondary-btn-color-hover:#ffde00;
  --secondary-btn-border-color-hover:#ffde00;

  --button-one-bg-hover:#ffffff;
  --button-one-color-hover:#00a94f;
  --button-one-border-color-hover:#00a94f;

  --button-two-bg-hover:#ffde00;
  --button-two-color-hover:#00000;
  --button-two-border-color-hover:#ffde00;
  
  --button-three-bg-hover:#26C6DA;
  --button-three-color-hover:#E0F7FA;
  --button-three-border-color-hover:#ffffff;
  
  --button-four-bg-hover:#ffffff;
  --button-four-color-hover:#00a94f;
  --button-four-border-color-hover:#ffffff;
  
  /* Other variables */
  --border-radius: 5px;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

  /* Cards */
  --card-background-colour:#ffffff;
  --card-border-colour:#c9c9c9;
  --card-padding:30px 30px;
  
  /* Typography */
  --font-family-body: "Roboto", Helvetica, Arial, sans-serif;
  --font-family-heading: "Roboto", Helvetica, Arial, sans-serif;
  
  --font-size-h1: 3.4375rem;
  --font-size-h2: 2.4375rem;
  --font-size-h3: 1.875rem;
  --font-size-h4: 1.875rem;
  --font-size-h5: 1.5rem;
  --font-size-h6: 1.25rem;
  --font-size-paragraph: 1.25rem;
  
  /* 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:var(--font-size-paragraph);
  overflow-y:none;
}
.container {
    max-width:90vw;
    width:100%;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}
/** 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);
    }
    .h5, h5 {
        font-size: calc(var(--font-size-h5) * 0.9);
    }
    .h6, h6 {
        font-size: calc(var(--font-size-h6) * 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);
    }
    .h5, h5 {
        font-size: calc(var(--font-size-h5) * 0.8);
    }
    .h6, h6 {
        font-size: calc(var(--font-size-h6) * 0.8);
    }
}
.hero-h1 h1 {
  font-size:56px;
}
.hero-h2 h2 {
  font-size:46px;
}
a, a:visited {
    color: var(--dark-color);
}
a:hover {
    color: var(--dark-color);
    text-decoration:none;
}
/** Navigation **/
.nav-item {
   margin:0px;
   margin-top: auto !important;
   margin-bottom: auto !important;
}
.nav-link {
  color: var(--dark-color) !important;
  font-size: 20px;
  font-weight: 500;
  padding: 8px 20px !important;
  border-bottom: 4px solid #ffffff;
}
.nav-link:hover {
  border-bottom: 4px solid #ffde00;
}
/* Logos */
.navbar-brand-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
}
.footer-brand-logo {
    width: 100%;
    max-width: 302px;
}
@media (max-width: 576px) { 
    .navbar-brand-logo {
        max-width: 100px;
    }
}
@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);
    -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);
    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);
  border:1px solid var(--primary-btn-border-color-hover);
}
.exit-call-to-action-modal .btn-primary {
    background: #ffde00;
    color: #000;
    border: 1px solid #ffde00;
}
/* 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);
  color:var(--button-one-color);
  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 Bar */
.search-container .job-search-control, .search-container .job-search-dropdown-filters {
    background: #ececec !important;
}
.search-container .job-search-control {
    padding: 35px 45px 5px 45px;
    margin-bottom: 0px !important;
}
.search-container .job-search-dropdown-filters {
    padding: 10px 45px 30px 45px !important;
    margin-bottom: 25px;
}
.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(--border-radius);
}
/** 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: #000000;
    font-size: 22px;
    font-weight: 500;
}
.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);
}
.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);
}
.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: #F0F0F0;
    padding: 40px 25px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.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;
}
.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;
}
.job-list-cards-single .job {
   width:100%;
}
@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 {
    padding: 0px;
}
.job .job-title {
    margin-bottom: 10px !important;
    color: #00a94f !important;
    font-size: 22px !important;
    font-weight: 600 !important;
}
.job-summary {
  padding-top: 12px;
  color: #444444 !important;
}
.block-jobs .job {
    margin-bottom: 16px;
}
/* Employee Referral Link */

/** CTAs **/
/** 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);
}
.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;
}
/* 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%;
	}
}
/** Video **/
/*** video fixes ***/

/** 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 #c7d3cd;
    border-radius:3px;
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #00a94f;
    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: 18px;
	padding: 20px;
}
.accordion-body {
	padding: 20px;
}
.accordion-body * {
    font-size: 17px;
}
/** Footer **/
footer {
    background: #E2E6E8;
    padding: 100px 0px !important;
}
footer * {
  color:#000000;
}
.footer-links {
  column-count: 3; 
  column-gap: 20px; 
}
.footer-links li {
    margin-bottom: 20px;
    font-size: 16px;
}
.footer-links a {
  text-decoration: none; 
}
.footer-links a:hover {
  text-decoration: underline; 
  color: #000000; 
}
footer i {
    font-size: 30px;
    margin-right: 20px;
}
.border-right {
    border-color: #000000 !important;
}
.border-left {
    border-color: #000000 !important;
}
/** Candidate consent **/
.consent-modal .image-wrapper {
   width: 100%;
   text-align: left;
}
.consent-reject {
  
}
.consent-agree {
  
}

/* 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;
}
/* Alignment & Spacing */
/* 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;
  }
}
 /* Flip Cards CSS */

.card-container-each {
  display: grid;
  perspective: 1000px;
}

.card-each{
 /* margin: 10px 10px;*/
}

.card-flip {
  display: grid;
  grid-template-areas: "frontAndBack";
  transform-style: preserve-3d;
  transition: all 0.7s ease;
}

.card-flip div {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  border: none;

}

.card-title-back {
  display: grid;
  align-items: center;
  text-align: center;
  
}

.card-text-back {
  display: grid;
  align-items: center;
  text-align: center;
  line-height: 1rem;
}

.card-front {
  grid-area: frontAndBack;
}

.card-back {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-area: frontAndBack;
  transform: rotateY(-180deg);
  background: #fff;
  box-shadow: 0 12px 15px rgb(140 152 164 / 10%);
  padding: 8px 12px;
  border-radius:0.375rem;
}

.card-title-back  {
font-weight:700;
      margin-bottom: 8px;
    margin-top: 15px;
}

.card-text-back {
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    font-family: inherit;
}

.card-container-each:hover .card-flip {
  transform: rotateY(180deg);
}
.page-row .page-block .card-flip img {
    max-width: 150px;
    max-height: 150px;
}
@media only screen and (max-width: 767px)
{
   .card-container-each {
    margin-bottom: 20px;
}
}

/* Spacing */

/** Mobile styles **/

/** Career Site CSS **/
#typed-text {
  color:#00a94f;
}

.search-bar-lift-top-200 {
    --margin-top-value-200: -200px;
    margin-top: var(--margin-top-value-200);
    margin-bottom: calc(var(--margin-top-value-200) / -2);
    position: relative;
}

.search-bar-lift-top-400 {
    --margin-top-value-400: -400px;
    margin-top: var(--margin-top-value-400);
    margin-bottom: calc(var(--margin-top-value-400) / -2);
    position: relative;
}

/* Mobile styles */
@media (max-width: 767px) {
    .search-bar-lift-top-200,
    .search-bar-lift-top-400 {
        margin-top: 0px;
        margin-bottom:0px;
    }
}

/*** hero video ***/
header {
	position: relative;
	height: 60vh;
	min-height: 25rem;
	width: 100%;
	overflow: hidden;
}
header video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
header .container {
	position: relative;
	z-index: 2;
}
.no-gutters .col-md-12 {
	padding: 0px;
}

.job-search-results-title a {
    font-weight: 600;
}

/** tabs **/
#nav-tab .nav-link {
    border-bottom: 4px solid #fff;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
#nav-tab .nav-link.active {
    border-bottom: 4px solid #b8d861;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
/** counting animation **/
.count-up {
    font-size: 50px;
    font-weight: 600;
    font-family: museo-sans, sans-serif;
    text-align: center !important;
    color: #ffde00;
    margin: 0;
}
.count-up-subtext {
    color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-family: museo-sans, sans-serif;
    margin: 0;
    line-height: 1.4;
    padding: 0px 24px;
}

.side-panel-home {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.115);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 20px;
}

/***candidate consent***/
.consent-modal .image-wrapper {
    text-align: left;
}
.modal-footer .btn-success,.modal-footer .btn-info {
   border-radius: 25px !important;
    border: 1px solid #000;
    box-shadow: none;
    background-color: #00a94f;
    color: #000000;
  font-size: 14px;
}
.modal-footer .btn-success:hover,.modal-footer .btn-info:hover{
    -webkit-transition: background-color 0.3s,box-shadow 0.3s;
    transition: background-color 0.3s,box-shadow 0.3s;
    box-shadow: black 4px 4px;
    background-color: #FFF;
}
.modal-content {
   border-radius: 25PX;
    padding: 20px;
    background-color: #00a94f;
    box-shadow: -5px 6px 12px #302525;
    border: 0;
}
.offcanvas-body {
    background: #ffffff;
}
.cookie-description {
    font-size: 16px;
}
/** Benefits CSS testing **/
@media (min-width: 1199px) {
  .negative-ml .col-md-6:nth-of-type(2) {
      margin-left: -60px;
      z-index: 99;
  }
  .negative-mt  {
    margin-top:-60px;
    z-index: 99;
  }
  .negative-mr .col-md-6:nth-of-type(1)  {
    margin-right:-60px;
    z-index: 99;
  }
}

.no-border-cards .card {
    background-color: #FFF;
    box-shadow: 0 -16px 22px rgba(0, 0, 0, .08);
    border-radius: 8px;
    border: none;
}

@media(max-width: 767px) {
    .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;
    }
   button, a.button {
     margin-bottom:10px;
   }
   .navbar-toggler {
     background-color:#FFF;
   }
   span.input-group-btn {
	width: 100%;
  	margin: 5px 0px;
  }
}
.referral-box {
    text-align: center;
}
.referral-box h3 {
    display: none;
}
a.referral-link {
    background:var(--primary-btn-bg);
    color:var(--primary-btn-color);
    border:1px solid var(--primary-btn-border-color);
    border-radius: 3px;
    box-shadow: none;
    font-weight: 400;
    font-size: 15px;
    padding: 12px 40px !important;
    -webkit-transition: background .25s linear;
    -moz-transition: background .25s linear;
    -o-transition: background .25s linear;
    transition: background .25s linear;
}
a.referral-link:hover {
  background:var(--primary-btn-bg-hover);
  color:var(--primary-btn-color-hover);
  border:1px solid var(--primary-btn-border-color-hover);
}
.block-job-description h3 {
    font-size: 40px;
}

/** Career Site CSS **/

.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;
}
.border-radius img {
    border-radius: 16px;
}
.section-one-background {
    background-color: #f1fbf6;
    background-image: url(https://dfacxoaxr5wom.cloudfront.net/c4c252a4ec3f38577d6710597430312b/06a42f156623d2a7234f3672d14c9aba/section%201%20background/wave_75f0b3.png);
    background-position: 0 0;
    background-size: auto;
}
.health-card .card {
    background: #fff;
    border-radius: 22px;
}
.value-card .block-image-cover {
    height: 300px;
    border-radius: 16px !important;
}
@media (max-width: 767px) {
.custom-order-mobileonly .col-md-6:nth-of-type(2) {
     order:1;
  }
	.custom-order-mobileonly .col-md-6:nth-of-type(1) {
     order:2;
  }
}

.accordion-body a, a:visited {
    color: #00a94f;
    font-weight: 600;
}