@import url('https://fonts.googleapis.com/css?family=Muli:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&subset=latin,latin-ext');
body {
  display:none;
}
:root {
  /* Colors */
  --primary-color: #870E40; 
  --secondary-color: #ef404a; 
  --dark-color: #000000; 
  --light-color: #ffffff; 
  --input-border-colour:#c9c9c9;
  --plum: #870E40;
  --peach: #F15B5B;
  --eggplant: #330019;
  --coral: #DE313B;

  /* Other variables */
  --border-radius: 5px;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --padding: 10px 28px;
  --button-border-radius: 35px;

  /* Cards */
  --card-background-colour:#ffffff;
  --card-border-colour:#c9c9c9;
  --card-padding:30px 30px;
  
  /* Fonts */
  --font-family-body: "Muli", Helvetica, Arial, sans-serif;
  --font-family-heading:"Muli", 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: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: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: 3rem;
  color: var(--eggplant);
}
.h2, h2 {
	font-size: 2.25rem;
  color: var(--eggplant)
}
.h3, h3 {
	font-size: 1.5rem;
  color: var(--coral);
}
.h4, h4 {
	font-size: 1.25rem;
  color: var(--coral);
}
.h5, h5 {
	font-size: 1.15rem;
    color: var(--coral);
}
.h6, h6 {
	font-size: 1rem
}
a, a:visited {
    color: var(--primary-color);
}
a:hover {
    color: var(--primary-color);
}
/** Navigation **/
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  margin-top: 0;
}
.nav-item {
  margin:0px;
}
.nav-link {
    color: #870e40 !important;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px !important;
}
.top-link {
    font-size: .875rem !important;
    color: #870e40 !important;
}
.top-nav {
    background:#f6f2f5;
}
/* 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) !important;
    -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: 16px;
    font-weight: bold;
}
.btn-primary  {
  background:var(--secondary-color);
  color:var(--light-color);
  border:1px solid var(--secondary-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);
  text-transform:none;
  font-size: 16px;
}
a.button.button1:hover {
  background:var(--coral);
  color: #2b2d32;
  border:1px solid var(--coral);
}
a.button.button2 {
  background:var(--light-color);
  color:var(--coral);
  border:1px solid var(--coral);
  border-radius: var(--button-border-radius);
  vertical-align: bottom;
  text-transform:none;
  font-size: 16px;
}
a.button.button2:hover {
  background:var(--coral);
  color:var(--light-color);
  border:1px solid var(--coral);
}
a.button.button3 {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  border-radius: var(--button-border-radius);
  text-transform:none;
  font-size: 16px;
}
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;
  text-transform:none;
  font-size: 16px;
}

/* 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: 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: 16px;
    font-weight: 600;
}
.side-panel h3 {
    font-size: 24px;
}
.side-panel .job-summary {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.2;
}
/* 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;
}
@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;
  }
}
/* 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;
}

  

/* Badges */
/* Carousel */
.carousel-caption {
    position: relative;
    right: 0 !important;
    bottom: 1.25rem;
    left: 0 !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #000;
    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;
    color: #000000;
    padding: 2rem;
}
.carousel-item-caption-header {
    text-shadow: none !important;
    color: #000000 !important;
}
.carousel-item-caption-detail * {
    text-shadow: none !important;
    color: #000000 !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: 416px;
	}
	.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: 0px;
  	border-bottom: 1px solid #d1d1d1;
}
.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 !important;
    background: rgba(0, 0, 0, 0.03);
}
.accordion-body {
	padding: 20px !important;
}
/** Footer **/
  .footer-text {
    font-size: .875rem;
    line-height: 24px;
}
.linkList ul li {
    font-size: 1rem;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}
.linkList-link {
    color: #323d42 !important;
    font-size: .875rem;
}
.fa-social {
    background: #323d42;
    height: 20px;
    max-height: 20px;
    width: 20px;
    max-width: 20px;
    display: block;
    text-align: center;
}
.acknowledge p {
    font-size: 16px;
    margin: 0;
}
.atsi {
    max-width: 70px;
}
/** Candidate consent **/
/** Mobile styles **/




/* 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 **/


/** 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);
}
/** custom **/
.b-curve-top-left {
  border-top-left-radius:65px;  
}

.b-curve-top-right {
  border-top-right-radius:65px;  
}

.b-curve-bottom-left {
  border-bottom-left-radius:65px;  
}

.b-curve-bottom-right {
  border-bottom-right-radius:65px;    
}
.buttonalignfix {
  position: relative; 
}

.buttonalignfix .page-block p:last-of-type {
  position: absolute;
  bottom: 1em;
  width: 75%; 
  display: flex;
  justify-content: center;
}

.buttonalignfix .page-block p:last-of-type .button2 {
  display: inline-block;
}

.buttonalignvideofix {
  position: relative; 
}

.buttonalignvideofix .block-video-footer p:last-of-type {
  position: absolute;
  bottom: 1em;
  width: 75%; 
  display: flex;
  justify-content: center;
}

.buttonalignvideofix .block-video-footer p:last-of-type .button2 {
  display: inline-block;
}

