@font-face {
    font-family: 'Ludicrous-Stencil';
    src: url('https://s3.ap-southeast-2.amazonaws.com/rec-marketing-apse2-customer-files/d100f009fd222796f272a4100ab3e8c3/485264fdefa9ef776be321fcbb4a0801/Font%20-%20Ludicrous/Ludicrous-Stencil.ttf') format('ttf'),
         url('https://s3.ap-southeast-2.amazonaws.com/rec-marketing-apse2-customer-files/d100f009fd222796f272a4100ab3e8c3/485264fdefa9ef776be321fcbb4a0801/Font%20-%20Ludicrous/Ludicrous-Stencil.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* Theme Variables */
:root {
    /* Typography */
    --font-family-body: "Lato", sans-serif;
    --font-family-heading: "Ludicrous-Stencil", sans-serif;
    
    --font-size-h1: 50px;
    --font-size-h2: 36px;
    --font-size-h3: 26px;
    --font-size-h4: 22px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
    --font-size-paragraph: 16px;
    
    /* Colors */
    --primary-color: #c95d32;
    --secondary-color: #c95d32;
    --dark-color: #2b2b2b;
    --light-color: #ffffff;
    --input-border-colour:#c9c9c9;
    --bg-vacca-dark:#2b2b2b;
    --link-color:#da5527;
    --vacca-purple:#8d538d;
    --vacca-orange:#D85625;
 
	/* Other variables */
  	--border-radius: 5px;
  	--box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Border Radius & Padding */
    --btn-border-radius: 14px;
    --input-border-radius: 14px;
    --input-padding: 1rem 1.375rem;

    /* Primary Button */
    --primary-btn-bg: #c95d32;
    --primary-btn-color: #ffffff;
    --primary-btn-border-color: #c95d32;
    
    /* Primary Button Hover */
    --primary-btn-bg-hover: #f69e0b;
    --primary-btn-color-hover: #ffffff;
    --primary-btn-border-color-hover: #f69e0b;
    
    /* Secondary Button */
    --secondary-btn-bg: #c95d32;
    --secondary-btn-color: #ffffff;
    --secondary-btn-border-color: #c95d32;
    
    /* Secondary Button Hover */
    --secondary-btn-bg-hover: #f69e0b;
    --secondary-btn-color-hover: #ffffff;
    --secondary-btn-border-color-hover: #f69e0b;
 
    /* Button One */
    --button-one-bg: #f7a824;
    --button-one-color: #2b2b2b;
    --button-one-border-color: #f7a824;

    /* Button One Hover */
    --button-one-bg-hover: #2b2b2b;
    --button-one-color-hover: #ffffff;
    --button-one-border-color-hover: #2b2b2b;

    /* Button Two */
    --button-two-bg: #2b2b2b;
    --button-two-color: #ffffff;
    --button-two-border-color: #2b2b2b;

    /* Button Two Hover */
    --button-two-bg-hover: #f7a824;
    --button-two-color-hover: #2b2b2b;
    --button-two-border-color-hover: #f7a824;

    /* Button Three */
    --button-three-bg: #2b2b2b;
    --button-three-color: #ffffff;
    --button-three-border-color: #2b2b2b;

    /* Button Three Hover */
    --button-three-bg-hover: #2b2b2b;
    --button-three-color-hover: #ffffff;
    --button-three-border-color-hover: #2b2b2b;

    /* Button Four */
    --button-four-bg: #c95d32;
    --button-four-color: #ffffff;
    --button-four-border-color: #c95d32;

    /* Button Four Hover */
    --button-four-bg-hover: #f69e0b;
    --button-four-color-hover: #ffffff;
    --button-four-border-color-hover: #f69e0b;
	
	/* Cards */
	--card-background-colour: #ffffff;
	--card-border-colour: #c9c9c9;
	--card-padding: 30px 30px;
	--card-border-radius: 14px;

    /* Layout Settings */
    --card-columns: 33.333%;
    --filter-columns: 33.333%;
}

/*** Global Theme ***/
body {
	background: #fff;
	color: var(--dark-color);
	font-family: var(--font-family-body);
	font-weight: 400;
	font-size: var(--font-size-paragraph);
	overflow-x: hidden;
    line-height: 1.5;
    letter-spacing: 0.15px;
}

p,li 
{
    line-height: inherit;
}

/** Typography **/

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-family-heading);
	letter-spacing: normal;
}
.h1, h1 {
color: #fff;
font-size: 50px;
font-weight: 400;
line-height: 60px;
margin-bottom: 28px;
}
.h2, h2 {
color: #404040;
font-size: 36px;
line-height: 40px;
font-weight: 400;
margin-bottom: 1rem;
}
.h3, h3 {
font-weight: 600;
color: #404040;
font-size: 22px;
font-family: Arial, Lato;
letter-spacing: 0;
}
.h4, h4 {
color: #404040;
margin: 0;
font-size: 22px;
font-weight: 700;
line-height: 32px;
margin-bottom: 1rem;
}
.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);
        line-height:30px;
	}
	.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 {
    color: #ffffff;
    font-family: "Ludicrous-Stencil", serif;
    font-weight: 400;
    letter-spacing: 1.42px;
    margin-bottom: 10px;
  
}
@media (min-width: 768px) {
    .hero_banner h1 {
        font-size: 36px;
    }
}
.hero-h2 h2 {
	font-size: 46px;
}
@media (max-width: 767px) {
	.hero-h1 h1 {
	    font-size: 18px;
		padding-left: 15px;
		padding-right: 15px;
        line-height: 1.17em;
	}
	.hero-h2 h2 {
		font-size: calc(var(--font-size-h1)* 0.6);
		padding-left: 15px;
		padding-right: 15px;
	}
}
a, a:visited {
	color: var(--link-color);
}
a:hover {
	color: var(--link-color);
}
/** Navigation **/

.nav-item {
	margin: 0px;
	margin-top: auto !important;
	margin-bottom: auto !important;
}
.nav-link {
	color: var(--light-color) !important;
	font-size: 14px;
	font-weight: 400;
	padding: 8px 12px !important;
    text-transform: uppercase;
    text-decoration:none;
}
.nav-link:hover{
      text-decoration:none;
}
/* Logos */

.navbar-brand-logo {
	width: 100%;
    max-width: 180px;
    position: absolute;
    top: 0;
    z-index: 999;
    margin-top: -0.5rem;
    background-color: #2b2b2b;
    padding: 20px;
    border-radius: 0;
}

.navbar-brand-logo-mobileonly
{
   max-width: 90px;
    border-radius: 0;
}
.footer-brand-logo {
	width: 100%;
	max-width:15rem;
    border-radius: 0;
    margin-bottom: 1rem;
}
@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: 700;
	font-family: inherit;
	text-transform: uppercase;
	padding: 0.85rem 1.75rem;
    line-height: 17px;
	border-radius: var(--btn-border-radius) !important;
	font-size: 14px;
    transform: perspective(1px) translateZ(0);
    transition-duration: 0.3s;
    transition-property: color, background-color, border;
    margin-bottom: 0.5rem;
}
.input-group-btn button
 {
   height: auto !important;
  padding: 0.85rem 1.75rem;
}
  .input-group input
{
   height: auto !important;
  padding: 0.85rem 1.75rem;
}
@media (min-width: 48rem) {
   .btn, button, a.button {
        line-height: 9px;
        padding: 1.15rem 2.75rem;
    }
  .input-group-btn button {
        line-height: 9px;
        padding: 1.15rem 2.75rem;
    }
  .input-group input
 {
      line-height: 9px;
 
}
  .btn, button, a.button
  {
        margin-bottom: 0rem;
  }
  
}
.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-hover);
	border: 1px solid var(--primary-btn-border-color-hover);
}
/* 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: 1px solid var(--button-four-border-color);

}
a.button.button4:hover {
  background:var(--button-four-bg-hover);
  color:var(--button-four-color);
  border:1px solid var(--button-four-border-color-hover);
 
}

/* Input group fix */



/* 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 / CTA input */

.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: inherit;
}
.job-search-control input {
	background: var(--light-color);
}
.call-to-action .form-control {
	border-radius: var(--input-border-radius);
}
.call-to-action-form input, .call-to-action-form select {
    background: var(--light-color);
}
.form-call-to-action input[type=file].form-control {
    padding: 6px 10px;
}
.selectize-control.multi .selectize-input>div {
	background-color: var(--primary-color);
	color: var(--light-color);
	border-radius: var(--btn-border-radius);
}
.selectize-dropdown-content .option.active {
	background-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 page **/

/* Job Search table */

.job-search-filter-header {
	font-size: 18px !important;
    font-family: Arial, lato;
      line-height: 1.17em;
}
/* 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 rgba(0, 0, 0, .125);
	border-radius: var(--border-radius);
	margin-bottom: 6px;
    transition: box-shadow .3s;
    box-shadow: none;
  background: var(--card-background-colour);
  
}
.job-search-results-card-title a {
	font-weight: 600;
    color: var(--primary-color);
    font-size: 22px;
    letter-spacing: 0;
}
.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: 95%;
    border: 1px solid #dddddd;
    background: #f7f7f7;
    padding: 22px;
    border-radius: 4px;
}
.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);
	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 only screen and (max-width: 576px) {
	.pagination li:not(:first-child):not(:last-child) {
		display: none;
	}
}
/** Job Advert **/
.job-title {
  font-size: 26px;
  color:var(--primary-color);
}
/* 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: 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;
}
@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);
}
.job-list-cards .job-summary {
	padding-top: 12px;
	color: #444444 !important;
}
/* Jobs list content block table style */

.job {
	background: #ffffff;
	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%;
	}
}
/** 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: transparent;
	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: 10px 20px 10px 20px;
    text-transform: inherit;
   color:#404040;
}
.accordion-body {
	padding: 10px 20px 10px 20px
}
/** Footer **/

footer {
	background:#383838;
    padding-top: 3rem;
}
footer * {
	color: #fff;
}
.social a {
	font-size: 16px;
}

/** 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;
}
@media (max-width: 767.98px) {
    #cookie_consent_description {
        font-size: 15px;
    }
    #implied_consent_footer {
        height: auto;
    }
}
/* 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;
	}
}
/* AI Chat bot */

.chatbot-launcher {
	background-color: var(--primary-color);
}
.chatbot-chat-window .chatbot-header {
	color: #ffffff;
	background-color: var(--primary-color);
}
.chatbot-message-content.sent .chatbot-message-text {
	color: #ffffff;
	background-color: var(--primary-color);
}
.chatbot-message-avatar .fa-circle {
	color: var(--primary-color);
}
.chatbot-message-content.sent a[href] {
	color: #ffffff;
}
turbo-frame.message-turbo-frame {
	.job-message {
		border: 1px solid var(--chatbot-message-shadow);
		border-radius: 15px;
		box-shadow: 0 2px 5px var(--chatbot-message-shadow);
		padding: 17px 20px;
	}
	.job-interested-btn {}
}
/* Spacing */

/** Mobile styles **/

/** Career Site CSS **/
.bg-vacca-dark {
    background-color: var(--bg-vacca-dark) !important;
}
.navbar-toggler {
    background-color: var(--light-color);
}
.job-search-control, .job-search-dropdown-filters {
	background-color: #383838!important;
}

 .job-search-control {
	margin: 45px 0px 0px 0px !important;
	padding: 45px 16px 30px 16px;
     border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.job-search-dropdown-filters {
	margin: 0px 0px 45px 0px;
	padding: 5px 16px 45px 16px !important;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.job-search-results-table.job-search-results-content {
    margin-top: 20px;
}
.job-search-results-card:hover
 {
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
}
.job-alerts-cta h2
 {
    color: #ffffff;
    font-family: "Ludicrous-Stencil", serif;
    letter-spacing: 1.42px;
}
footer a, footer a:visited, footer a:hover
{
  color:var(--light-color);
}
.hero-banner a.button.button1
{
  
  margin: 0 12px;
  max-width:340px;
}
@media (min-width: 768px)
{ 
.hero-banner a.button.button1
{
  margin: 0;
}
}

/* RM styles */
.search-form-container h1 {
  padding-bottom:10px;
}
.search-form-container {
    position: relative;
    background: #f7efe1;
    padding: 40px 60px 40px !important;
    border-radius: 10px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (min-width: 768px)
{
  .search-form-container {
    top: -100px;
    margin: 0 auto -85px;
}
}
.search-form-container .job-search-control,.search-form-container .job-search-dropdown-filters {
	background-color: transparent !important;
}
 .search-form-container .job-search-control {
	margin: 0 !important;
	padding: 0;
    border-top-left-radius: 0;
    border-top-right-radius:0;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 1;
    background: #fdeccf url(https://www.vacca.org/img/services/item-icon.png) no-repeat right bottom;
    width: 100%;
    height: 190px;
    border-radius: 20px;
    padding: 38px 30px 0 30px;
    color: #da5527 !important;
    border:0;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fdeccf url(https://www.vacca.org/img/services/item-icon.png) no-repeat right bottom;
    border-radius: 20px;
    z-index: -1;
    transition: all .25s ease-in-out;
}
.category-card:hover::before {
    background-color: #da5527 !important;
    color: var(--light-color) !important;
    transition: all .25s ease-in-out;
    transform: perspective(1px) translateZ(0);
    transition-duration: 0.3s;
    transition-property: color, background-color, border;
}
.category-card:hover h3::before {
    color: #da5527 !important;
}

.category-card:hover h3 {
  color: var(--light-color) !important;
}
.category-card:hover a.button.button4{
    background: var(--button-two-bg-hover);
   color: var(--light-color) !important;
}
 .category-card:hover a{
    background: transparent;
   color: var(--light-color) !important;
   text-decoration: none;
}
.category-card:hover::before .category-card h3{
   color: var(--light-color) !important;
}
.category-card h3 {
   text-decoration: none !important;
    font-family: "Ludicrous-Stencil", serif;
    font-size: 28px;
    line-height: 28px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1.81px;
    color: var(--primary-color);
}
.rounded-img-100 img,.rounded-img-100 .block-image-cover {
  border-radius:100px;
  }   
  .cta-purple
  {
    border-radius: 20px;
    background: #8d538d;
  }
  .cta-purple h2
  {
    color:var(--light-color);
  }

  .cta-purple .btn-primary
 {
    background: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--light-color);
}
.cta-purple .btn-primary:hover
 {
    background: var(--dark-color);
    color: var(--light-color);
    border: 1px solid var(--dark-color);
}
 .purple-card
 {
    background-color: var(--vacca-purple);
    border: 0;
    border-radius: 20px;
    box-shadow: none;
}
 .purple-card a,  .purple-card a:visited,  .purple-card a:hover
 {
  text-decoration:underline;
   color:var(--light-color);
}
.purple-card h3, .purple-card p, .orange-card h3,.orange-card p 
 {
  color:var(--light-color);
}
  .orange-card
  {
    background-color:var(--vacca-orange);
    border: 0;
    border-radius: 20px;
    box-shadow: none;
  }
 .orange-card a,  .orange a:visited,  .orange a:hover
 {
  text-decoration:underline;
   color:var(--light-color);
}
a.dropdown-item , a.dropdown-item:visited
{
  color:var(--dark-color);
}
.faq-accordion {
    .accordion-button::before, .accordion-button::after {
        color: #faa61a;
    }
}
 @media (min-width: 992px) {
      .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; 
      }
    }

.text-white * {
    color: var(--light-color);
}
/* by default image border set to 20px except banners banners and logo*/
img,.block-image-cover{
  border-radius: 20px;
}
 .hero-banner img, .hero-banner .block-image-cover{
   border-radius: 0;
 }
.video-js .vjs-tech,.clinch-video-player.video-js
{
    border-radius: 20px;
}
h2.accordion-header
{
  font-family: var(--font-family-body);
    color:#404040;
}
.ack_text p {
    color: #949494;
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
}
 
.address-text p{
    font-weight: bold;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 1.75rem;
    color: #e9e9e9;
}
.follow-us-title {
    font-size: 34px;
    line-height: 38px;
    font-family: "Ludicrous-Stencil", serif;
    color: #fff;
    margin: 0.9375rem 0;
}
.footer img{
  border-radius: 0;
}
 .footer .flag-icon {
      width: 4.25rem;
      height: auto;
      margin: 10px auto;
      display: block;
    }
.rainbow-tick
{
    width: 3rem;
    height: 3rem;
    margin: 0 5px;
    max-width: 3rem;
    max-height: 3rem;
}
.copyright-section
{
   border-top: 2px solid #474747;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}
.copyright-section a, .copyright-section p
{
color: #949494 !important;
}
h2.chatbot-header-name{
  color:var(--light-color) !important;
  font-size:26px;
}
