@font-face {
    font-family: 'Synthese';
    font-weight: 300;
    src: url('https://dfacxoaxr5wom.cloudfront.net/b205a2f6388a04086a807f124d08085b/357358090a24d4f47c0994af956094c5/fonts/Synthese-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'Synthese';
    font-weight: 400;
    src: url('https://dfacxoaxr5wom.cloudfront.net/b205a2f6388a04086a807f124d08085b/357358090a24d4f47c0994af956094c5/fonts/Synthese-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Synthese';
    font-weight: 700;
    src: url('https://dfacxoaxr5wom.cloudfront.net/b205a2f6388a04086a807f124d08085b/357358090a24d4f47c0994af956094c5/fonts/Synthese-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Synthese';
    font-weight: 500;
    src: url('https://dfacxoaxr5wom.cloudfront.net/b205a2f6388a04086a807f124d08085b/357358090a24d4f47c0994af956094c5/fonts/Synthese-Book.woff2') format('woff2');
}

:root {
  /* Colors */
  --primary-color: #ed1c24; 
  --secondary-color: #6c757d; 
  --dark-color: #5f5959; 
  --light-color: #ffffff; 
  
  /* Other variables */
  --border-radius: 3px;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --padding: 14px 28px;
  --button-border-radius: .125rem;

  /* Fonts */
  --font-family-body:'Synthese', sans-serif;
  --font-family-heading:'Synthese', sans-serif;
  --font-size-h1: 26px;
  --font-size-h2: 24px;
  --font-size-h3: 22px;
  --font-size-h4: 20px;
  --font-size-h5: 18px;
  --font-size-h6: 16px;
  --font-size-hero-h1:54px;
}

/*** 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;
}
a, a:visited {
    color: var(--primary-color);
}
a:hover {
    color: var(--primary-color);
}
/** Typography **/
.hero_banner h1 {
    font-size: var(--font-size-hero-h1);
}
.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) {
    .hero_banner h1 {
      font-size: calc(var(--font-size-hero-h1) * 0.7);
      padding: 10px;
    }
    .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) {
    .hero_banner h1 {
        font-size: calc(var(--font-size-hero-h1) * 0.6);
        padding: 10px;
    }
    .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);
    }
}
/** Navigation **/
.nav-item {
  margin:0px;
}
.nav-link {
    color: var(--dark-color) !important;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 20px !important;
}
/* Logos */
.navbar-brand-logo {
    width: 100%;
    max-width: 155px;
}
.footer-brand-logo {
    width: 100%;
    max-width: 155px;
}

/*** Buttons ***/
.btn, button, .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(--button-border-radius);
    font-size: 15px;
}
.btn-primary  {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
}
.btn-primary:hover,
.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus{
  background:var(--secondary-color);
  color:var(--light-color);
  border:1px solid var(--secondary-color);
}
.btn-success {
  background:var(--secondary-color);
  color:var(--light-color);
  border:1px solid var(--secondary-color);
}
.btn-success:hover,
.btn-success:visited,
.btn-success:active,
.btn-success:focus {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
}
/* custom buttons */
a.button.button1 {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  border-radius: var(--button-border-radius);
}
a.button.button1:hover {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
}
a.button.button2 {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  border-radius: var(--button-border-radius);
}
a.button.button2:hover {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
}
a.button.button3 {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  border-radius: var(--button-border-radius);
}
a.button.button3:hover {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  border-radius: var(--button-border-radius);
}
a.button.button4 {
    color: #000000;
    border: 0;
    padding: 0;
    font-weight: 600;
    font-size: 15px;
}

/* Input group fix */
.input-group input, .input-group-btn button {
    height: 100% !important;
    padding: var(--padding) !important;
}

/** Job Search page **/

/* Job Search table */
/* Job Search cards */
/* Job Search cards layout, change 100% for 1 job, 33% for 3, 25% for 4 */
@media (min-width: 992px) {
  .job-search-results-card-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* Job Search cards dropdowns layout, change 100% for 1 job, 33% for 3, 25% for 4 */
@media (min-width: 768px) {
.job-search-results-dropdown-filter-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/** Job Search page filters */

/** Job Advert **/
/* Side panels */
/* 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 #e4e2e2;
    border-radius: var(--border-radius);
    box-shadow: none;
    margin-bottom: 6px;
    padding: 12px;
}
.card-footer {
  background:#ffffff;
}
.card-footer {
    background: #ffffff;
    border: 0;
}
/* Badges */
.badge {
    background-color: var(--primary-color) !important;
    border-radius: 0;
    color: white;
}
/* Carousel */
.carousel-caption {
    position: relative;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}
/** 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 **/
/** Blogs **/
/** 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 **/
/** Candidate consent **/
/** Mobile styles **/



/*** job page styling ***/
.side-panel {
    box-shadow: 0 5px 9px 0 rgb(0 0 0 / 10%);
    padding: 40px 25px;
    margin-bottom: 20px;
    border-radius: 6px;
}
.side-panel .job-title {
    font-size: 22px !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}
.side-panel .job-field {
    color: #484848;
    font-size: 14px;
    font-weight: 600;
}
.side-panel h3 {
    font-size: 24px;
}
.side-panel .job-summary {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.2;
}
/* candidate styling */
.candidate-settings-panel {
    background-color: #f9f9f9;
    padding: 30px 42px;
}
.candidate-settings {
    background: #f0f0f0;
    margin: 10px 0px;
    padding: 50px;
}
/* Alignment */
/* Vertical Alignment add my-auto to ROW */
.my-auto .col-md-6, .my-auto .col-md-8, .my-auto .col-md-4 {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
/* text left alignment sits within container on fullwidth page */
@media (min-width: 576px) {
 .hero_banner .block-image-text * {
   width: 540px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 768px) {
  .hero_banner .block-image-text * {
    width: 720px;
    margin-right:auto;
    margin-left:auto;
  }
}
@media (min-width: 992px) {
 .hero_banner .block-image-text * {
   width: 960px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 1200px) {
 .hero_banner .block-image-text * {
   width: 1140px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 1400px) {
  .hero_banner .block-image-text * {
    width: 1320px;
    margin-right:auto;
    margin-left:auto;
  }
}

/* Spacing */


/** Other fixes **/
/* Job pagination fix for sites with high volume of jobs */
@media only screen and (max-width: 576px) {
	.pagination li:not(:first-child):not(:last-child) {
		display: none;
	}
}

/** 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);
}
