:root {
  /* Colors */
  --primary-color: #f47644; 
  --secondary-color: #6f60aa; 
  --dark-color: #333; 
  --light-color: #ffffff; 
  --input-border-colour:#c9c9c9;

  /* Button Styles */
  --primary-btn-bg:#f36e4a;
  --secondary-btn-bg:#f36e4a;
  --primary-btn-color:#ffffff;
  --secondary-btn-color:#ffffff;
  --primary-btn-bg-hover:#f0481a;
  --secondary-btn-bg-hover:#f0481a;
  --btn-border-radius: 6px;
  
  /* Other variables */
  --border-radius: 6px;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --padding: 10px 28px;

  /* Cards */
  --card-background-colour:#ffffff;
  --card-border-colour:#c9c9c9;
  --card-padding:30px 30px;
  
  /* Fonts */
  --font-family-body:"Roboto Slab", Helvetica, Arial, sans-serif;
  --font-family-heading:"Montserrat", Helvetica, Arial, sans-serif;

  /* Search page columns Job Search cards layout, change 100% for 1 job, 33% for 3, 25% for 4 */
  --card-columns:33%;
  --filter-columns:33%;
}

/*** Global Theme ***/
body {
  background:#fff;
  color: var(--dark-color);
  line-height:1.5;
  font-family:var(--font-family-body);
  font-weight:400;
  font-size:16px;
}
/** Typography **/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  line-height:1.5;
  font-family:var(--font-family-heading);
  font-weight:600;
}
.h1, h1 {
  font-size:26px;
}
.h2, h2 {
    font-size:24px;
}
.h3, h3 {
    font-size:22px;
}
.h4, h4 {
    font-size:20px;
}
.h5, h5 {
    font-size:18px;
}
.h6, h6 {
    font-size:16px;
}
a, a:visited {
    color: var(--primary-color);
}
a:hover {
    color: var(--primary-color);
}
.hero-h1 h1 {
  font-size:50px;
}
.hero-h2 h2 {
  font-size:46px;
}
/** Navigation **/
.nav-item {
  margin:0px;
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.nav-link {
    color: var(--dark-color) !important;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px !important;
}
/* Logos */
.navbar-brand-logo {
    width: 100%;
    max-width: 155px;
}
.footer-brand-logo {
    width: 100%;
    max-width: 155px;
}

/*** Buttons ***/
.btn, button, a.button {
    font-weight: 600;
    font-family: inherit;
    text-transform: inherit;
    line-height: 1.5;
    padding: var(--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) !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-bg);
}
.btn-primary:hover,
.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus{
  background:var(--primary-btn-bg-hover);
  color:var(--primary-btn-color);
  border:1px solid var(--primary-btn-bg-hover);
}
.btn-success {
  background:var(--secondary-btn-bg);
  color:var(--secondary-btn-color);
  border:1px solid var(--secondary-btn-bg);
}
.btn-success:hover,
.btn-success:visited,
.btn-success:active,
.btn-success:focus {
  background:var(--secondary-btn-bg-hover);
  color:var(--secondary-btn-color);
  border:1px solid var(--secondary-btn-bg-hover);
}
.btn-info {
  background:var(--primary-btn-bg);
  color:var(--primary-btn-color);
  border:1px solid var(--primary-btn-bg);
}
.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-bg-hover);
}
.btn-settings {
    border-radius: 5px;
    background: #f36e4a !important;
    color: #fff !important;
    border: 0;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    line-height: 1;
    transition: all .35s cubic-bezier(.23, 1, .32, 1);
    padding: 16px 18px;
  text-decoration: none;
  
}
.btn-settings:hover {
    background: #f0481a !important;
}
/* custom buttons */
a.button.button1 {
    background: #f36e4a;
    color: #ffffff;
    border: 1px solid #f36e4a;
}
a.button.button1:hover {
    background:#f0481a;
    color: #ffffff;
    border:1px solid #f0481a;
}
a.button.button2 {
   background:var(--secondary-btn-bg);
  color:var(--secondary-btn-color);
  border:1px solid var(--secondary-btn-bg);
}
a.button.button2:hover {
    background:var(--secondary-btn-bg-hover);
  color:var(--secondary-btn-color);
  border:1px solid var(--secondary-btn-bg-hover);
}
a.button.button3 {
  background:var(--secondary-btn-bg);
  color:var(--secondary-btn-color);
  border:1px solid var(--secondary-btn-bg);
}
a.button.button3:hover {
 background:var(--secondary-btn-bg-hover);
  color:var(--secondary-btn-color);
  border:1px solid var(--secondary-btn-bg-hover);
}

/* Input group fix */
.input-group input, .input-group-btn button {
    height: auto !important;
    padding: var(--padding) !important;
}

/** Job Search page **/
/* Job Search table */

/* Job Search cards */
@media (min-width: 992px) {
  .job-search-results-card-col {
    flex: 0 0 var(--card-columns);
    max-width: var(--card-columns);
  }
}
@media (min-width: 768px) {
.job-search-results-dropdown-filter-col {
    flex: 0 0 var(--filter-columns);
    max-width: var(--filter-columns);
  }
}
.card {
    border: 1px solid #444444;
    border-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-bottom: 6px;
}
/** Job Search page filters / inputs */
.block-job-search-results .job-search-results .job-search-filter-groups {
    width: 100%;
}
.job-search-control input {
    border-radius: var(--border-radius) !important;
    border: 1px solid var(--input-border-colour);
}
.job-search-dropdown-filters select {
    padding: 10px 10px;
    margin-bottom: 6px;
    border-radius: var(--border-radius);
    border: 1px solid var(--input-border-colour);
}
.badge {
    background-color: var(--primary-color) !important;
    border-radius: var(--border-radius);
    color: var(--light-color);
}
.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}
.page-link {
    color: var(--primary-color);
}
@media only screen and (max-width: 576px) {
	.pagination li:not(:first-child):not(:last-child) {
		display: none;
	}
}

/** Job Advert **/
/* Side panels */
.side-panel {
    box-shadow: none;
    margin-bottom: 20px;
    border-radius: 6px;
    background: #f8f8f8;
}
.side-panel > div {
  padding: 40px 25px;
}
.side-panel .job-title {
    font-size: 22px !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}
.side-panel .job-field {
    color: #484848;
    font-size: 14px;
    font-weight: 600;
}
.side-panel h3 {
    font-size: 24px;
}
.side-panel .job-summary {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.2;
}
.side-panel::before {
    content: '';
    width: 100%;
    height: 10px;
    display: block;
    background: linear-gradient(66deg, #6f60aa 20%, #dd4061 60%);
}
/* Jobs list content block card style */
.job-list-cards .jobs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -15px;
    margin-top: -15px;
    align-items: stretch;
}
.job-list-cards .job {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: calc(33.333% - 30px);
    margin-left: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-bottom: 0px !important;
}
@media (max-width: 768px) {
    .job-list-cards .job {
        width: calc(50% - 30px);
    }
}
@media (max-width: 480px) {
    .job-list-cards .job {
        width: calc(100% - 30px);
    }
}
.job-list-cards .job .job-title {
    margin-bottom: 10px;
    color: #202e49  !important;
}
.job-list-cards .job-summary {
  padding-top: 12px;
  color: #444444 !important;
}
.gradient-bg .job-search-control {
    margin: 15px 0px 0px 0px !important;
    padding: 45px 45px 20px 45px;
    border-top: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    border-left: 1px solid #e1e1e1;
    background: linear-gradient(118deg, #6f60aa 0, #dd4061 100%);
}
.gradient-bg .job-search-dropdown-filters {
    margin: 0px 0px 45px 0px;
    padding: 5px 28px 45px 45px !important;
    border-bottom: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    border-left: 1px solid #e1e1e1;
    background: linear-gradient(118deg, #6f60aa 0, #dd4061 100%);
}
/* Jobs list content block table style */
.job {
    background: #ffffff;
    padding: 30px;
}
.job .job-title {
    margin-bottom: 10px;
    color: #202e49  !important;
}
.job-summary {
  padding-top: 12px;
  color: #444444 !important;
}
/* Employee Referral Link */

/** CTAs **/

/* Search Bar */
.job-search-control .near-me-control {
    margin-left: 0;
}
.job-search-control .input-group-btn {
    margin-left: 15px !important;
}
/* Cards */
.card {
    border: 1px solid var(--card-border-colour);
    border-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-bottom: 6px;
    background: var(--card-background-colour);
    padding:var(--card-padding);
}
.card-body {
    padding: 0px;
}
.card-footer {
    background: var(--card-background-colour);
    border-top: 0px;
    padding: 10px 0px;
}
/* Carousel */
.carousel-caption {
    position: relative;
    right: 0 !important;
    bottom: 1.25rem;
    left: 0 !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
}
.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}      
.carousel-control-prev-icon, .carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 60% 60%;
    border-radius: 2rem;
    background-color: #FFF;
    padding: 2rem;
}
.carousel-item-caption-header {
    text-shadow: none !important;
    color: var(--dark-color) !important;
}
.carousel-item-caption-detail * {
    text-shadow: none !important;
    color: var(--dark-color) !important;
}
@media (min-width: 768px) {
	.carousel-control-prev, .carousel-control-next {
		width: 3%;
	}
}
/** Video **/
/*** video fixes ***/
@media (min-width: 576px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 292px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 292px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 292px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 292px;
	}
}
@media (min-width: 768px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 392px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 258px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 190px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 122px;
	}
}
@media (min-width: 992px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 526px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 348px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 256px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 166px;
	}
}
@media (min-width: 1200px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 628px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 414px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 310px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 200px;
	}
}
@media (min-width: 1400px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 730px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 482px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 358px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 234px;
	}
}
.vjs-youtube .vjs-poster {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.video-player-wrapper .vjs-poster img {
    object-fit: contain;
    height: inherit;
    width: 100%;
}
/** Teams **/
/*** Team Member Quote ***/
.team-member-bio {
    text-align: left !important;
}
.team-member-image {
    margin-bottom: 10px;
}
.team-member-bio .name {
    font-size: 17px;
    font-weight: 600;
}
.team-member-bio .title {

}
.team-member-bio .bio {

}
.team-member-bio .social-links i {
    margin-right: 8px !important;
}
/** Blogs **/
.posts-cards .posts-cards-cols {
    display: flex;
    flex-wrap: wrap;
    gap: inherit;
}
.posts-card {
  flex: 0 calc(33.33% - 2rem);
  margin: 1rem;
}
.posts-cards .posts-card {
   border-radius: 10px;
}
.posts-cards .posts-card-body {
    height: auto;
    padding: 20px 0px;
    background: rgba(236 236 236 / 0%);
}
.card {
    background: rgba(236 236 236 / 0%);
}
.posts-cards .posts-card .card-title {
    font-size: 18px;
    font-weight: 600;
}
.posts-cards .posts-card-link {
    color: #202e49 !important;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    text-decoration: underline;
}
.badge.post-tag {
    background: #202e49 !important;
    padding: 6px 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.posts-card-body .post-tags {
    display: none;
}
.posts-cards .posts-card-footer {
    padding: 10px 30px;
    background: none;
}
.posts-card-image {
    transition: transform 0.3s ease;
    border-radius: 8px;
}
@media only screen and (max-width: 768px) {
    .posts-cards .posts-cards-cols {
        flex-direction: column;
    }
}
/** FAQs Accordion **/
.accordion-item:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.accordion-item:last-of-type {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.accordion-item {
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #333;
}
.accordion-button:not(.collapsed) {
	color: #333;
	background-color: #ececec;
	box-shadow: unset;
}
.accordion-item:first-of-type .accordion-button {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.accordion-button:focus {
	z-index: 3;
	border-color: transparent;
	outline: 0;
	box-shadow: unset;
}
.accordion-button {
	font-size: 16px;
	padding: 20px;
}
.accordion-body {
	padding: 20px;
}
/** Footer **/
.social i {
    color: #000000 !important;
    font-size: 30px;
    margin-top: 18px;
    margin-bottom: 20px;
}
footer a {
    color: #000000;
}
.bottom-footer li a {
    font-size: 15px;
}
/** Candidate consent **/
.consent-modal .image-wrapper {
   width: 100%;
   text-align: left;
}
.consent-reject {
  
}
.consent-agree {
  
}

/* My Settings */
.candidate-settings-panel {
    background-color: #f9f9f9;
    padding: 30px 42px;
}
.candidate-settings {
    background: #f0f0f0;
    margin: 10px 0px;
    padding: 50px;
}
/* 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>* {
    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%; /* This is equivalent to col-md-4 */
  }
}
.container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}
/* text left alignment sits within container on fullwidth page */
@media (min-width: 576px) {
 .hero-banner .block-image-text * {
   width: 540px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 768px) {
  .hero-banner .block-image-text * {
    width: 720px;
    margin-right:auto;
    margin-left:auto;
  }
}
@media (min-width: 992px) {
 .hero-banner .block-image-text * {
   width: 960px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 1200px) {
 .hero-banner .block-image-text * {
   width: 1140px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 1400px) {
  .hero-banner .block-image-text * {
    width: 1320px;
    margin-right:auto;
    margin-left:auto;
  }
}

/* Spacing */

/** CTA select dropdowns **/
.selectize-control.multi .selectize-input>div {
	background-color: var(--primary-color);
	color: var(--light-color);
    border-radius: var(--border-radius);
}
.selectize-dropdown-content .option.active {
	background-color: var(--primary-color);
}
.selectize-input {
    border-radius: var(--border-radius);
}
.candidate-settings-panel i {
  color:var(--dark-color);
}
/** Mobile styles **/

/** Other fixes, custom elements **/
hr {
    margin-top: 0;
    margin-bottom: 10px;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    height: 2px;
    background: #6f60aa;
    background: linear-gradient(66deg, #6f60aa 0, #dd4061 100%);
    opacity: 1;
}
.banner {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 480px) {
  .banner--header .banner__clip {
    -webkit-clip-path: polygon(100% 0, 0 0, 0 calc(100% - 60px), calc(100% - 250px) 100%, 100% calc(100% - 121px));
    clip-path: polygon(100% 0, 0 0, 0 calc(100% - 60px), calc(100% - 250px) 100%, 100% calc(100% - 121px));
  }
}
.banner__content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.banner--header blockquote {
  width: 100%;
  position: absolute;
  bottom: 0;
  margin-right: 1em;
}
.banner--header blockquote p {
  font-size: 25px;
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: right;
  margin-bottom: 0.7em;
  transform: rotate(-26deg);
  line-height: .9;
  letter-spacing: -2px;
  position: absolute;
  bottom: 69px;
  right: 25px;
  color: #fff;
}
.banner__content blockquote p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.cta {
  font-size: 23px;
  font-size: 2.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: -1px;
  color: #333;
  line-height: 1.2;
  text-align: right;
  transform: rotate(-26deg);
  z-index: 1;
  position: relative;
  margin-bottom: 0;
  position: absolute;
  bottom: 35px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .banner--header .banner__clip {
    -webkit-clip-path: polygon(100% 0, 0 0, 0 calc(100% - 60px), calc(100% - 410px) 100%, 100% calc(100% - 205px));
    clip-path: polygon(100% 0, 0 0, 0 calc(100% - 60px), calc(100% - 410px) 100%, 100% calc(100% - 205px));
  }
  .banner--header blockquote p {
    font-size: 40px;
    bottom: 120px;
    right: 25px;
  }
  .cta {
    font-size: 34px;
    display: block;
    bottom: 80px;
    right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .banner__clip {
    position: relative;
  }
  .cta__text {
    position: relative;
    z-index: 1;
  }
  .cta__background {
    width: 1400px;
    height: 400px;
    display: block;
    background: #fff;
    position: absolute;
    top: -9px;
    left: -150%;
    z-index: 0;
  }
  .banner__clip:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    margin-right: 150px;
    border-bottom: 60px solid #fff;
    border-right: 480px solid transparent;
  }
}

.gradient-bg-1
{
  background: linear-gradient(66deg, #6f60aa, #dd4061 30%, #f36e4a 60%, #fed301 90%) 0 / 300%;
}

.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;
}