/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
/*  --column-gap: 2.13%;*/
/*  --column-width-multiplier: 8.333;*/
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(100% / (12 / 1));
/*      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span2 {
      width: calc(100% / (12 / 2));
/*      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span3 {
      width: calc(100% / (12 / 3));
/*      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span4 {
      width: calc(100% / (12 / 4));
/*      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span5 {
      width: calc(100% / (12 / 5));
/*      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span6 {
      width: calc(100% / (12 / 6));
/*      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span7 {
      width: calc(100% / (12 / 7));
/*      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span8 {
      width: calc(100% / (12 / 8));
/*      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span9 {
      width: calc(100% / (12 / 9));
/*      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span10 {
      width: calc(100% / (12 / 10));
/*      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span11 {
      width: calc(100% / (12 / 11));
/*      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));*/
    }
  
}
.content-wrapper {
  margin: 0 auto;
/*  padding: 0 1rem;*/
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

/*.dnd-section > .row-fluid > .span12,*/
.dnd-section {
  padding: 0 10px;
}

@media (min-width: 768px) {
  .dnd-section {
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .dnd-section {
    padding: 0 30px;
  } 
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.modal-open {
  overflow: hidden;
  /* overflow-y: scroll; */
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  /* overflow-y: scroll; */
  -webkit-overflow-scrolling: touch;
  background-color: rgba(0, 0, 0, 0.5);
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* z-index: 1040; */
  background-color: #000000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.modal-content {
  position: relative;
  background-clip: padding-box;
  outline: 0;
  max-height: 100%;
  overflow: hidden;
  /* overflow-y: scroll; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  margin-left: 10px;
  margin-right: 10px;
}
.modal .close {
  padding: 0;
  border: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: transparent;
  background: transparent;
}
.modal-body {
  background: #E3E8ED;
  position: relative;
  font-style: normal;
  max-height: 100%;
  /* overflow: hidden; */
  overflow-x: auto;
  border-radius: 20px;
}
.modal-title {
  display: flex;
  align-items: center;
  line-height: 46px;
  margin-bottom: 30px;
}
.modal-title:before {
  content: "";
  border-top: 1px solid #000000;
  width: 20px;
  display: block;
  margin-right: 20px;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.modal-body > div {
  box-shadow: none !important;
}

@media (min-width: 768px) {
  .modal-dialog {
    position: relative;
    width: 75%;
    margin: 0 auto;
    height: 100vh;
  }
  .modal-body {
    margin: 30px;
    padding: 30px;
  }
}

@media (min-width: 1025px) {
  .modal-dialog {
    width: 660px;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}


/* Lists */
ul,
ol {
	margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
	margin: 0;
}

ul.no-list {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

/* Code blocks */

pre {
	overflow: auto;
}

code {
	vertical-align: bottom;
}

/* Blockquotes */

blockquote {
	border-left: 2px solid;
	margin: 0 0 1.4rem;
	padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
	border: none;
	border-bottom: 1px solid #CCC;
}

/* Image alt text */
img.border-radius {
	border-radius: 20px;
}
img {
	width: 100%;
}
/*img.align-left {
	display: flex;
}
img.align-right {
	display: flex;
}*/
img, svg, object {
	font-size: 0.583rem;
	word-break: normal;
	margin: 0;
	vertical-align: middle;
}
.clearfix:before,
.clearfix:after {
   content: " ";
   display: table;
}
.clearfix:after {
   clear: both;
}


/* Paragraphs */
p {
	margin: 0;
	margin-bottom: 28px;
}
p:last-child {
	 margin-bottom: 0;  
}


/*all simple pages*/,
.body-container--page .dnd-section:not(.hero) :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 32px;
}
.body-container--page .dnd-section.two-column-3 .widget-type-header :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 0;	
}

iframe {
	width: 100%;
}
/**/
@font-face {
   font-family: 'Barlow';
   src: url('https://19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/files_2023/fonts/Barlow-Bold.eot');
   src: url('https://19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/files_2023/fonts/Barlow-Bold.eot?#iefix') format('embedded-opentype'),
      url('https://19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/files_2023/fonts/Barlow-Bold.woff2') format('woff2'),
      url('https://19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/files_2023/fonts/Barlow-Bold.woff') format('woff'),
      url('https://19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/files_2023/fonts/Barlow-Bold.ttf') format('truetype'),
      url('https://19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/files_2023/fonts/Barlow-Bold.svg#Barlow-Bold') format('svg');
   font-weight: bold;
   font-style: normal;
   font-display: swap;
}
button,
.hs-button,
form input[type=submit],
form .hs-button {
	cursor: pointer;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	padding: 16px 20px;
	line-height: 22px;
	transition: background-color 0.15s linear, border-color 0.15s linear, color 0.15s linear;
}

/*small*/
.hs-button.small {
	padding: 6px 20px;
}


/*button:hover,
button:focus,
button:active,
.button:hover,
.button:focus,
.button:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active,
form input[type=submit]:hover,
form input[type=submit]:focus,
form input[type=submit]:active {
	background-color: #ffffff;
	color: #000000;
}*/


button:disabled,
.button:disabled,
.hs-button:disabled {
	background-color: #D0D0D0;
	border-color: #D0D0D0;
	color: #E6E6E6;
}


/* No button */
.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
	background: none;
	border: none;
	border-radius: 0;
	color: initial;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	margin-bottom: 0;
	padding: 0;
	text-align: left;
	text-decoration: none;
	transition: none;
}
/* Fields */
.hs-form-field {
	margin-bottom: 1.4rem;
}

form .hs-input.hs-fieldtype-intl-phone {
	background-color: transparent !important;
	position: relative;
	
	align-items: center;
    display: grid;
    grid-template-areas: "select";
    position: relative;
	gap: 8px;
}
form .hs-input.hs-fieldtype-intl-phone:after {
	content: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/icon-arrow-menu.svg");
	justify-self: end;
	position: absolute;
	right: 23px;
	top: 11px;
	z-index: 1;
}




/* Labels */
form label {
	display: block;
	font-size: 16px;
	margin-bottom: 5px;
}

/* Form Title */
.form-title {
	margin-bottom: 0;
}

/* Help text */
form legend {
	font-size: 0.875rem;
}


/* Inputs */
form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
	display: inline-block;
	padding: 16px 20px;
	font-size: 16px;
	line-height: 21px;
	width: 100%;
}
@media (min-width: 768px) {
	form input[type=text],
	form input[type=search],
	form input[type=email],
	form input[type=password],
	form input[type=tel],
	form input[type=number],
	form input[type=file],
	form select,
	form textarea {
		padding: 16px 30px;
	}
}
form .hs-fieldtype-select .input {
	align-items: center;
    display: grid;
    grid-template-areas: "select";
    position: relative;
}
form .hs-fieldtype-select .input:after {
	content: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/icon-arrow-menu.svg");
	justify-self: end;
	position: absolute;
	right: 23px;
	top: 11px;
	z-index: 1;
}
form textarea {
	resize: vertical;
}

form fieldset {
	max-width: 100% !important;
}

/* Column */
.hs_submit .actions {
	margin-right: 8px;
}


/* Inputs - checkbox/radio */
form .inputs-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

form .inputs-list>li {
	display: block;
/*	margin: 0.7rem 0;*/
}

form .inputs-list input,
form .inputs-list span {
	vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
	cursor: pointer;
	margin-right: 0.35rem;
}
form .hs-form-checkbox label span,
form .hs-form-radio label span,
form .hs-form-booleancheckbox label span {
	cursor: pointer;
}

/* Inputs - date picker */
.hs-dateinput {
	position: relative;
}

.hs-dateinput:before {
	content: '\01F4C5';
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
	color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
	border-radius: 0;
	box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
	border-radius: 0 !important;
	color: #FFF;
}

/* Inputs - file picker */
form input[type=file] {
	background-color: transparent;
	border: initial;
	padding: 16px;
}

/* Headings and text */
form .hs-richtext,
form .hs-richtext p {
	font-size: 0.875rem;
	margin: 0 0 1.4rem;
}

form .hs-richtext img {
	max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display>span,
.legal-consent-container .hs-form-booleancheckbox-display>span p {
	margin-left: 1rem !important;
}

/* Validation */
.hs-form-required {
	color: #EF6B51;
}
.hs_error_rollup {
	margin-bottom: 15px;
}
.hs-input.invalid.error {
	border-color: #EF6B51;
}

.hs-error-msg,
.hs_error_rollup label {
	color: #EF6B51;
/*	margin-top: 0.35rem;*/
	margin-bottom: 0;
	font-size: 80%;
}

/* Submit button */
form input[type=submit],
form .hs-button {
	cursor: pointer;
	display: inline-block;
	text-align: center;
	transition: all 0.15s linear;
	white-space: normal;
}
.locations-form form.hs-form-8471275c-d340-4796-812d-5a1d1a515f96 textarea {
  height: 190px;
}

/* page: https://lgresources.com/schedule-a-consultation */
form#hsForm_8471275c-d340-4796-812d-5a1d1a515f96_8935 {

}

.hs_i_confirm_i_am_an_employer__not_a_job_seeker_ legend {
	margin-bottom: 15px;
	line-height: 22px;
}


/* Checkbox */
@media (min-width: 768px) {
  .locations-form .hs_cost_saving_solutions {
    margin-top: 27px;
  }
}
.locations-form form li.hs-form-checkbox label {
  margin-left: 20px;
  line-height: 22px;
  margin-bottom: 13px;
  
}
.locations-form form li.hs-form-checkbox label input.hs-input {
  width: auto !important;
  margin-left: -20px;
}

/* Captcha */
.grecaptcha-badge {
	margin: 0 auto;
}


:root {
	--select-border: #777;
	--select-focus: blue;
	--select-arrow: var(--select-border);
}
select {
	appearance: none;
	background-color: transparent;
	color: #818181;
	border: 1px solid #000;
	z-index: 1;
	outline: none;
}
select::-ms-expand {
	display: none;
}

.blog-filter-tags {
	display: grid;
	grid-template-areas: "select";
	align-items: center;
	position: relative;
}
.blog-filter-tags select, .select::after {
	grid-area: select;
}
.blog-filter-tags:after {
	content: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/icon-arrow-menu.svg");
	justify-self: end;
	position: absolute;
	right: 23px;
	top: 11px;
}
.blog-filter-tags option {
	color: #000;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* sticky */
.sticky-wrapper .header-bottom {
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.is-sticky .header-bottom {
	box-shadow: 0px 4px 33px 1px rgba(0, 0, 0, 0.1);
}


/* header top */
.header-top {
	padding: 10px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.header-top-right {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
}
.header-top .hs_cos_wrapper_type_menu {
	display: flex;
   align-items: center;
   width: 100%;
}
.header-top .hs_cos_wrapper_type_menu a {
	font-size: 14px;
	line-height: 21px;
}
.header-top .hs-menu-wrapper.hs-menu-flow-horizontal {
	width: 100%;
}
.header-top .hs-menu-wrapper.hs-menu-flow-horizontal ul {
	flex-direction: row;
	justify-content: space-between;
}
.header-top .hs_cos_wrapper_type_menu li {
	line-height: 21px;
	display: flex;
}
.header-top .hs_cos_wrapper_type_menu li:last-child {
	padding-right: 0;	
}
.header-top .header__search--toggle {
	width: 20px;
	height: 20px;
}
/*@media (max-width: 767px) {
	.search {
		margin-left: 20px;
	}
}*/
@media (min-width: 768px) {
	.header-top {
		padding: 12px 30px;
		flex-direction: row;
		margin-bottom: 0;
	}
	.header-top .hs_cos_wrapper_type_menu {
	   justify-content: flex-end;
	}
	.header-top .hs_cos_wrapper_type_menu li {
		padding-right: 10px;
	}
	.header-top-right {
		padding: 2px 0;
	}
}
@media (min-width: 992px) {
	.header-top .hs_cos_wrapper_type_menu li {
		padding-right: 25px;
	}
}
/*@media (max-width: 991px) {
	.search {
		display: none;
	}
}*/
@media (min-width: 992px) {
	.header-top .hs_cos_wrapper_type_menu li {
		padding-right: 45px;
	}
	.search {
		margin-left: 35px;
	}
}
@media (min-width: 768px) {
	.header-top-left {
		width: 50%;
	}
}


/* header bottom */
.header-bottom {
	padding: 14px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	background-color: #ffffff;
}
.header-bottom .hs-menu-wrapper li {
	padding: 0 25px;
}
.header-bottom .hs-menu-wrapper li a {
	font-size: 16px;
	color: #000;
}


@media (max-width: 767px) {
	/* for job-seekers */
	header.job-seekers .search-form__toggle {
		padding-left: 25px;
	}
	.header-bottom a.hs-button {
		padding-left: 6px;
		padding-right: 6px;
	}
}
@media (min-width: 768px) {
	.header-bottom {
		padding: 24px 30px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.header-bottom .hs-menu-wrapper li {
		padding: 0 15px;
	}
}
@media (min-width: 1900px) {
	header.job-seekers .header-bottom > .button {
		width: 220px;
		display: flex;
		justify-content: flex-end;
	}
}




/* for header-employers */
@media (min-width: 1286px) {
  .header__navigation--employers .menu--desktop > ul > li:last-child {
    border-left: 1px solid rgba(0, 0, 0, .2);
    margin-left: 15px;
  /*   margin-left: 1.25rem; */
    padding: 0;
    position: relative;
  }
}

.header__navigation--employers .menu--desktop > ul > li:last-child > a {
	text-transform: uppercase;
	font-size: 18px;
	line-height: 27px;
	font-weight: 700;
  padding-left: 15px;
/* 	padding-left: 1.25rem; */
	color: #EF7123;
}
.header__navigation--employers .menu--desktop > ul > li:nth-last-child(-n+2) {
	padding-right: 0;
}
@media (min-width: 1200px) {
	header.lg-employers .header-bottom .header__logo,
	header.lg-employers .header-bottom > #hs_cos_wrapper_site_search {
		display: flex;
		justify-content: flex-end;
	}
}






@media (min-width: 992px) {
	header.lg-employers .header-bottom .menu__item--depth-1 {
		padding: 0 8px;
	}
}
@media (min-width: 1090px) {
	header.lg-employers .header-bottom .menu__item--depth-1 {
		padding: 0 10px;
/*     padding: 0 15px; */
	}
}
/* @media (min-width: 1280px) and (max-width: 1349px) {
  header.lg-employers .header-bottom .header__logo {
    width: 200px;
  }
} */


@media (min-width: 992px) and (max-width: 1285px) {
  .header__navigation--employers .menu--desktop {
    position: relative;
    top: -14px;
  }
	header.job-seekers .header-bottom .menu__item--depth-1 {
		padding: 0 20px;
	}
	.header__navigation--employers .menu--desktop > ul > li:last-child {
/* 		margin-left: 10px; */
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    text-align: right;
	}
	.header__navigation--employers .menu--desktop > ul > li:last-child > a {
		padding-left: 10px;
	}
}

@media (min-width: 992px) and (max-width: 1449px) {
	header.lg-employers .header__menu {
		margin-left: auto;
    width: 100%;
	}
	header.lg-employers .header__menu .menu--desktop > ul {
    position: relative;
		display: flex;
		justify-content: flex-end;
	}
	header.lg-employers .header-bottom > #hs_cos_wrapper_site_search {
		width: 50px;
		display: flex;
    justify-content: flex-end;
	}
}
@media (min-width: 1450px) {
	header.lg-employers .header__menu .menu--desktop > ul {
		justify-content: center;
	}
	header.lg-employers .header-bottom .header__logo,
	header.lg-employers .header-bottom > #hs_cos_wrapper_site_search {
/*		width: 220px;*/
	}
	header.lg-employers .header-bottom .menu__item--depth-1 {
		padding: 0 20px;
	}
	header.lg-employers .menu--desktop > ul > li:last-child {
    position: relative;
		margin-left: 20px;
	}
	header.lg-employers .menu--desktop > ul > li:last-child > a {
		padding-left: 20px;
	}
}
@media (min-width: 1530px) {
  header.lg-employers .menu--desktop > ul > li:last-child {
		margin-left: 45px;
	}
	header.lg-employers .menu--desktop > ul > li:last-child > a {
		padding-left: 45px;
	}
}





@media (max-width: 1150px) and (min-width: 767px) {
	.header__column {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.header__container {
		flex-direction: column;
		padding: 1rem 0 0;
	}
	.header__column {
		position: relative;
	}
}

/* Logo */

.header__logo {
	overflow: hidden;
}

@media (max-width: 576px) {
	.header__logo {
		width: 160px;
	}
}
@media (max-width: 991px) {
	.header__logo {
		margin-right: auto;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	header.lg-employers .header__menu {
/* 		width: 100%; */
	}
	.menu--desktop > ul {
		display: flex;
	}
}
.header__logo img {
	max-width: 100%;
}

.header__logo .logo-company-name {
	font-size: 1.167rem;
	margin-top: 0.7rem;
}

/* Search bar */
.header__search {
	padding: 0 1rem 0 0;
	width: auto;
}




.header__search .hs-search-field__input {
	
		background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
		background-position: center right 15px;
		background-repeat: no-repeat;
	
	height: 45px;
	/* padding: 0 0.7rem; */
}




.header__search .hs-search-field--open .hs-search-field__input {
	border-bottom: none;
	border-radius: 6px 6px 0 0;
	max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
	background-color: #FFF;
	border: 2px solid #D1D6DC;
	border-radius: 0 0 6px 6px;
	border-top-width: 1px;
	position: absolute;
	width: 100%;
	z-index: 10;
}

.header__search .hs-search-field__suggestions li {
	border-top: 1px solid #D1D6DC;
	font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
	color: #494A52;
	padding: 0.35rem 0.7rem;
	text-decoration: none;
	transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
	display: none;
}

@media (min-width: 767px) {
	.header__search form {
		align-items: center;
		display: flex;
		flex-direction: row;
	}

	.header__search label {
		margin: 0 1rem 0 0;
	}

	.header__search .hs-search-field__input {
		width: auto;
	}
}

/* Navigation */
#nav-toggle {
	display: none;
}


.header__search--toggle {
	background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.1 1.9377C6.58827 1.9377 5.13845 2.54285 4.06949 3.62004C3.00053 4.69722 2.4 6.1582 2.4 7.68157C2.4 8.43586 2.54743 9.18277 2.83389 9.87965C3.12034 10.5765 3.5402 11.2097 4.06949 11.7431C4.59879 12.2765 5.22715 12.6996 5.9187 12.9882C6.61026 13.2769 7.35146 13.4254 8.1 13.4254C8.84854 13.4254 9.58974 13.2769 10.2813 12.9882C10.9729 12.6996 11.6012 12.2765 12.1305 11.7431C12.6598 11.2097 13.0797 10.5765 13.3661 9.87965C13.6526 9.18277 13.8 8.43586 13.8 7.68157C13.8 6.1582 13.1995 4.69722 12.1305 3.62004C11.0616 2.54285 9.61173 1.9377 8.1 1.9377ZM2.72599 2.26619C4.15126 0.829946 6.08435 0.0230713 8.1 0.0230713C10.1156 0.0230713 12.0487 0.829946 13.474 2.26619C14.8993 3.70244 15.7 5.65041 15.7 7.68157C15.7 8.68729 15.5034 9.68317 15.1215 10.6123C14.8613 11.2452 14.5187 11.8387 14.1036 12.3775L19.2218 17.5351C19.5927 17.9089 19.5927 18.5151 19.2218 18.8889C18.8508 19.2628 18.2492 19.2628 17.8782 18.8889L12.7601 13.7314C12.2254 14.1497 11.6364 14.495 11.0084 14.7571C10.0863 15.142 9.09805 15.3401 8.1 15.3401C7.10195 15.3401 6.11368 15.142 5.19161 14.7571C4.26953 14.3722 3.43171 13.8081 2.72599 13.0969C2.02026 12.3858 1.46045 11.5415 1.07852 10.6123C0.69658 9.68318 0.5 8.6873 0.5 7.68157C0.5 5.65041 1.30071 3.70244 2.72599 2.26619Z" fill="white"/></svg>');
	background-repeat: no-repeat;
	background-size: cover;
	height: 24px;
	width: 24px;
}
/* .header__search {
	display: none;
	width: 100%;
} */
.header__search.open {
	background-color: #000;
	display: block;
/*	left: 0;*/
/*	min-height: calc(100vh - 115px);*/
	position: absolute;
/*	right: 0;*/
	top: 75px;
	z-index: 2;
}
.header__search--toggle {
	cursor: pointer;
	position: relative;
}
.header__search--toggle.hide {
	display: none;
}
.header__search--toggle.open {
	display: block;
	margin-left: 0;
	margin-right: auto;
}
.header__search--toggle:after {
	display: none;
	font-size: 1.083rem;
	font-weight: 600;
	position: absolute;
	left: 40px;
	text-transform: uppercase;
	top: -10px;
}
.header__search--toggle.open:after {
	display: block;
	word-break: normal;
}






/* Mobile toggles */
@media (max-width: 991px) {
	.header__navigation {
		display: none;
		width: 100%;
	}
	.header__navigation.open {
		display: block;
		left: 0;
		position: absolute;
		right: 0;
		top: 100%;
		z-index: 4;
		overflow: overlay;
		height: 100vh;
	}
	.header__navigation--toggle,
	.header__close--toggle {
		cursor: pointer;
		margin: 7px 15px;
		position: relative;
	}

	.header__navigation--toggle.hide {
		display: none;
	}
	.header__navigation--toggle:after {
		display: none;
		font-size: 1.083rem;
		font-weight: 600;
		position: absolute;
		left: 40px;
		text-transform: uppercase;
		top: -10px;
	}
	/*.header__search--toggle {
		filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);
	}*/

	.header__navigation--toggle {
/*		filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);*/
		background-image: url('data:image/svg+xml;utf8,<svg width="28" height="20" viewBox="0 0 28 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2C0 1.17156 0.797098 0.5 1.5 0.5H26.5C27.2029 0.5 28 1.17156 28 2C28 2.82844 27.2029 3.5 26.5 3.5H1.5C0.797098 3.5 0 2.82844 0 2Z" fill="black"/><path d="M0 10C0 9.17155 0.797098 8.5 1.5 8.5H26.5C27.2029 8.5 28 9.17155 28 10C28 10.8284 27.2029 11.5 26.5 11.5H1.5C0.797098 11.5 0 10.8284 0 10Z" fill="black"/><path d="M1.5 16.5C0.797098 16.5 0 17.1716 0 18C0 18.8284 0.797098 19.5 1.5 19.5H26.5C27.2029 19.5 28 18.8284 28 18C28 17.1716 27.2029 16.5 26.5 16.5H1.5Z" fill="black"/></svg>');
		background-repeat: no-repeat;
		background-size: cover;
		width: 28px;
		height: 20px;
	}
	

	.header__close--toggle {
/*		filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);*/
		background-image: url('data:image/svg+xml;utf8,<svg width="28" height="20" viewBox="0 0 28 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.5 18.5L14 10M14 10L22.5 1.5M14 10L5.5 1.5M14 10L22.5 18.5" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
		background-repeat: no-repeat;
		background-size: cover;
		display: none;
		width: 28px;
		height: 20px;
	}
	.header__close--toggle.show {
		display: block;
	}
}




header.landing-page .menu--desktop {
	display: none;
}
header.landing-page .menu--mobile {
	display: block;
	background-color: #fff;
}
header.landing-page .header__menu {
	display: flex;
  	justify-content: flex-end;
}
header.landing-page .header__navigation {
	display: none;
	width: 100%;
}
header.landing-page .header__navigation.open {
	display: flex;
	justify-content: flex-end;

	left: 0;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 4;
	overflow: overlay;
	height: 100vh;
}
header.landing-page .header__navigation.open > div {
	background-color: #fff;
	width: 380px;
}
header.landing-page .header__navigation--toggle,
header.landing-page .header__close--toggle {
	cursor: pointer;
	margin: 7px 15px;
	position: relative;
}
header.landing-page .header-bottom .menu__item--depth-1 {
	padding: 0;
}
header.landing-page .header__navigation--toggle.hide {
	display: none;
}
header.landing-page .header__navigation--toggle:after {
	display: none;
	font-size: 1.083rem;
	font-weight: 600;
	position: absolute;
	left: 40px;
	text-transform: uppercase;
	top: -10px;
}
header.landing-page .header__navigation--toggle {
	background-image: url('data:image/svg+xml;utf8,<svg width="28" height="20" viewBox="0 0 28 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2C0 1.17156 0.797098 0.5 1.5 0.5H26.5C27.2029 0.5 28 1.17156 28 2C28 2.82844 27.2029 3.5 26.5 3.5H1.5C0.797098 3.5 0 2.82844 0 2Z" fill="black"/><path d="M0 10C0 9.17155 0.797098 8.5 1.5 8.5H26.5C27.2029 8.5 28 9.17155 28 10C28 10.8284 27.2029 11.5 26.5 11.5H1.5C0.797098 11.5 0 10.8284 0 10Z" fill="black"/><path d="M1.5 16.5C0.797098 16.5 0 17.1716 0 18C0 18.8284 0.797098 19.5 1.5 19.5H26.5C27.2029 19.5 28 18.8284 28 18C28 17.1716 27.2029 16.5 26.5 16.5H1.5Z" fill="black"/></svg>');
	background-repeat: no-repeat;
	background-size: cover;
	width: 28px;
	height: 20px;
}
header.landing-page .header__close--toggle {
	background-image: url('data:image/svg+xml;utf8,<svg width="28" height="20" viewBox="0 0 28 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.5 18.5L14 10M14 10L22.5 1.5M14 10L5.5 1.5M14 10L22.5 18.5" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-repeat: no-repeat;
	background-size: cover;
	display: none;
	width: 28px;
	height: 20px;
}
header.landing-page .header__close--toggle.show {
	display: block;
}
header.landing-page .menu__submenu {
	border: none;
	border-radius: 0;
	box-shadow: none;
	position: static;
	transform: unset;
	width: 100%;
	padding: 5px 0;
}
header.landing-page .menu__submenu .menu__item {
	padding: 0;
}
header.landing-page .menu__submenu .menu__link {
	display: block;
	padding: 10px 25px;
	transition: none;
	width: 100%;
}
header.landing-page .menu__submenu .menu__item .menu__link:hover,
header.landing-page .menu__submenu .menu__item .menu__link:focus {
	background-color: inherit;
	transition: none;
}
header.landing-page .menu__item--has-submenu > .menu__link {
	width: 70%;
}
header.landing-page .menu__submenu--level-3 .menu__item .menu__link {
	padding: 0.7rem 3rem;
}
header.landing-page .menu__submenu--level-4.no-list {
	padding-left: 30px;
}
header.landing-page .menu__item--depth-1 {
	border-top: 1px solid #d9d9d9;
	padding: 0;
}
header.landing-page .menu--mobile .menu__item {
  width: 100%;
}
header.landing-page .menu__item--depth-1 > .menu__link {
	padding: 15px 25px;
	display: block;
	width: 70%;
}
header.landing-page .menu__item--depth-1 > .menu__link--active-link:after {
	content: none;
}
header.landing-page .menu__child-toggle {
	background-position: center right 30px;
	background-repeat: no-repeat;
	background-size: 20px;
	border: none;
	cursor: pointer;
	height: 54px;
	position: absolute;
	right: 0;
	top: 0;
	width: 30%;
}
header.landing-page .menu__submenu--level-2 .menu__child-toggle {
	height: 40px;
	transform: none;
}
header.landing-page .menu__child-toggle-icon {
		display: block;
		height: 20px;
		margin-left: auto;
		margin-right: 30px;
		transform: rotate(45deg);
		transition: transform .4s;
		width: 20px;
}
header.landing-page .menu__item--open > .menu__child-toggle .menu__child-toggle-icon {
	transform: rotate(0deg);
	transition: transform 0.4s;
}
header.landing-page .menu__child-toggle-icon {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/close--toggle-white.svg");
	background-repeat: no-repeat;
	background-position: center right;
	filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);
	}



/* header new */
header.new .header-bottom .search-form__container {
	top: 64px;
}
@media (min-width: 768px) {
	header.new .header-bottom .search-form__container {
		top: 84px;
	}	
}
@media (min-width: 992px) {
	header.new .header-bottom {
		padding-top: 0;
		padding-bottom: 0;
	}
	header.new .header-bottom .search-form__container {
		top: 84px;
	}
	header.new .header__navigation {
		display: none !important;
	}
}
@media (min-width: 992px) {
	header.new .header__search {
		display: flex;
		justify-content: flex-end;
		padding: 0;
		width: auto;
	}
}
@media (min-width: 1199px) {
	header.new .header__search {
		width: 220px;
	}
}
header.new .header-bottom .header__search .hs-search-field__input {
	background-image: none
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding-left: 0;
	align-items: flex-start;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
	flex-direction: column;
}

@media (max-width: 767px) {
	.hs-menu-wrapper.hs-menu-flow-horizontal ul {
		flex-direction: column;
	}
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
	flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
	display: inline-flex;
}

@media (max-width: 767px) {
	.hs-menu-wrapper.hs-menu-flow-vertical ul {
		display: flex;
	}
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
	position: relative;

/*	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/icon-arrow-menu.svg");
	background-repeat: no-repeat;
	background-position: center right;*/
/*	background-size: contain;*/
/*	background-position: ;*/
}




.menu__link:hover,
.menu__link:focus,
.menu__link:active {
	text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-underline-offset: 3px;
	text-decoration-color: #EF7123;
}
.menu__item--open > .menu__link,
.menu__item--open .menu__submenu > .menu__link {
	color: #EF7123;
}
@media (max-width: 991px) {
	.menu__child-toggle-icon {
		background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/close--toggle-white.svg");
		background-repeat: no-repeat;
		background-position: center right;
		filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);
  	}
}
@media(min-width: 992px) {
	.menu__child-toggle-icon {
		background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/icon-arrow-menu.svg");
		background-repeat: no-repeat;
		background-position: center right;
	}
}










.hs-menu-wrapper.flyouts li.hs-item-has-children a {
	display: flex;
	align-items: center;
}
.hs-menu-wrapper.flyouts li.hs-item-has-children > a:after {
	content: "";
	width: 8px;
	height: 5px;
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/icon-arrow-menu.svg");
	background-repeat: no-repeat;
	background-position: center right;
	position: relative;
	left: 7px;
	transition: transform 0.15s;
}

.hs-menu-wrapper.flyouts .hs-item-has-children:hover a:after {
	transform: rotate(180deg);
}
.hs-menu-wrapper.flyouts .hs-item-has-children:hover ul {
	z-index: 12;
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
	left: -9999px;
	opacity: 0;
	position: absolute;

	background-color: #fff;
	z-index: 11;
	margin: 0;
	padding: 15px 25px 10px 25px;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper li {
	padding: 4px 0;
	text-align: center;
	width: 100%;
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper li ul {
	left: 100% !important;
  	top: 0 !important;
  	padding: 10px 25px 10px 25px;
  	border: 1px solid #000;
  	margin-top: -10px;
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper li ul li a:after {
	background-image: none;
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper li.hs-item-has-children a:after {
	content: "";
/*	transition: transform 0.15s;*/
	transform: rotate(270deg);
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
/*	display: block;*/
	white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
	left: 0;
	opacity: 1;
	top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
	left: 100%;
	opacity: 1;
	top: 0;
}

@media (max-width: 767px) {
	.hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
	.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
	.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
		left: 0;
		opacity: 1;
		position: relative;
		top: auto;
	}
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
	height: auto;
	max-width: 100%;
}

/*the distance between the header and the text*/
.dnd-section:not(.hero) .span12 > .dnd-row > .row-fluid > .span12 > .widget-type-rich_text > .hs_cos_wrapper_type_rich_text {
	width: 100%;
	display: block;
	margin: 0 auto;
	text-align: center;
}
.span12 > .dnd-row > .row-fluid > .span12 > .widget-type-rich_text > .hs_cos_wrapper_type_rich_text > :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
}
@media (min-width: 992px) {
	.dnd-section:not(.hero) .span12 > .dnd-row > .row-fluid > .span12 > .widget-type-rich_text > .hs_cos_wrapper_type_rich_text{
		max-width: 65%;
	}
	.dnd-section.testimonial .span12 > .dnd-row > .row-fluid > .span12 > .widget-type-rich_text > .hs_cos_wrapper_type_rich_text,
	.dnd-section.engagement .span12 > .dnd-row > .row-fluid > .span12 > .widget-type-rich_text > .hs_cos_wrapper_type_rich_text,
	.dnd-section.section-tabs .span12 > .dnd-row > .row-fluid > .span12 > .widget-type-rich_text > .hs_cos_wrapper_type_rich_text,
  	.dnd-section.solutions .span12 > .dnd-row > .row-fluid > .span12 > .widget-type-rich_text > .hs_cos_wrapper_type_rich_text{
		max-width: 100%;	
	}
}

@media (min-width: 768px) {
	#erc-embedded-survey-wrapper {
		height: 1700px;
		overflow: auto;
	}
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}


/* Section */
.hero {
	position: relative;
/*	height: 600px;*/
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	justify-content: center;
}
.hero:after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	opacity: 0.5;
}
.hero h1 {
	color: #fff;
	word-wrap: normal;
/*	text-transform: uppercase;*/
}
.hero p {
	color: #fff;
}
.hero > .row-fluid {
	position: relative;
	z-index: 2;
}
.hero .wrapper img {
	border-radius: 20px;
}
.hero a.hs-button:hover,
.hero a.hs-button:focus,
.hero a.hs-button:active {
	border-color: transparent;
	background-color: #fff;
	color: #EF7123;
}
@media (min-width: 768px) {
	.hero {
		align-items: center;
		height: 600px;
	}
	.hero-form {
		height: auto;
	}
	.hero > .row-fluid > .span12 {
		width: 75%;
	}
	.hero #button {
		margin-top: auto;
		position: absolute;
		bottom: 0;
		left: 0;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.hero-form.locations-form .span6 {
		padding-left: 0 !important;
	}
}
@media (min-width: 992px) {
	.hero > .row-fluid > .span12 {
		width: 60%;
	}
}
@media (min-width: 1200px) {
	.hero > .row-fluid > .span12 {
		width: 45%;
	}
}

.hero .row-fluid .dnd-row:nth-child(3) .row-fluid {
	justify-content: flex-start;
}
.hero .row-fluid .dnd-row:nth-child(3) .widget-span {
	width: auto !important;
	margin-right: 10px;
}



/*button to do*/
.hero a#button img {
	top: 0;
	position: relative;
	transition: top 0.15s linear;
}
.hero a#button:hover img {
	top: 5px;
}


/*style for hero section on blog*/
.hero .hs_cos_wrapper_type_linked_image {
	display: inline-block;
  	position: absolute;
  	height: 100%;
  	width: 100%;
}
.hero .hs_cos_wrapper_type_linked_image img {
	height: 100% !important;
  	object-fit: cover;
  	object-position: center top;
}
.hero .overlay {
	width: 100%;
	position: relative;
  	z-index: 1;
}
.hero .overlay .dnd-section {
	position: relative;
	display: flex;
  	align-items: center;
  	height: 100%;
}
.hero .overlay .dnd-section h1 {
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.hero .overlay .dnd-section {
		padding-top: 100px;
  		padding-bottom: 50px;
	}
}
@media (min-width: 768px) {
	.hero .overlay .dnd-section h1 {
		margin-bottom: 30px;
	}
	.hero .overlay .span12 > div {
		width: 75%;	
	}
}
@media (min-width: 992px) {
	.hero .overlay .span12 > div {
		width: 40%;	
	}
}



/* hero-5 */
.hero-5 {
	height: auto;
}
.hero-5 > .row-fluid > .span12 {
	width: 100%;
}
.hero-5 > .row-fluid > .span12 > .dnd-row:last-child h5 {
	font-weight: normal;
	color: #fff;
	position: relative;
}
.hero-5 > .row-fluid > .span12 > .dnd-row:last-child h5:after,
.hero-5 > .row-fluid > .span12 > .dnd-row:last-child h5:before {
	content: "";
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	height: 1px;
	width: 30%;
	position: absolute;
	top: 13px;
}
.hero-5 > .row-fluid > .span12 > .dnd-row:last-child h5:before {
	left: 0;
}
.hero-5 > .row-fluid > .span12 > .dnd-row:last-child h5:after {
	right: 0;
}
.hero-5 > .row-fluid > .span12 .cards__card {
	padding: 0;
	background-color: transparent;
}
.hero-5 > .row-fluid > .span12 .card__inner {
	align-items: stretch;
}

@media (min-width: 768px) {
	.hero-5 > .row-fluid > .span12 > .dnd-row:first-child {
		width: 75%;
	}
	.hero-5 > .row-fluid > .span12 > .dnd-row:last-child h5:after,
	.hero-5 > .row-fluid > .span12 > .dnd-row:last-child h5:before {
		width: 40%;
	}
}
@media (min-width: 992px) {
	.hero-5 > .row-fluid > .span12 > .dnd-row:first-child {
		width: 60%;
	}
}
@media (min-width: 1200px) {
	.hero-5 > .row-fluid > .span12 > .dnd-row:first-child {
		width: 45%;
	}
}
.slider :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
	width: 100%;
}
.slider .testimonial-slider-3 {
	padding-bottom: 30px;
}
.slider .testimonial-slider-3 .slick-list {
	margin: 0 -5px 0 0;
}
.slider .testimonial-slider-3 .slick-arrow {
	top: calc(100% - 30px);
}
.slider .testimonial-slider-3 .slick-prev.slick-arrow {
	left: auto;
	right: 80px;
}
.slider .testimonial-slider-3 .slick-slide {
	height: auto;
	margin: 0 5px;
}
.slider .testimonial-slider-3 :is(h1, h2, h3, h4, h5, h6) {
	color: #000;
}
.slider .testimonial-slider-3 .slick-slide .card {
	padding: 30px 20px 26px 30px;
	background-image: none;
}
.slider .testimonial-slider-3 .card p {
	height: 270px;
	overflow-y: auto;
	margin-bottom: 0;
	padding-right: 15px;
}
@media (max-width: 767px) {
	/* start Home Page Jobs, section Slider */
	.hs-content-id-115740025144 .cell_17075100614695-background-image {
		background-size: auto 54% !important;
		background-position: left 70px !important;
	}
	.hs-content-id-115740025144 .testimonial-slider-3 {
		width: 65%;
	}
	/* end */

	.slider .testimonial-slider-3 .card p {
		height: 245px;
		margin-bottom: 10px;
	}
	.slider .testimonial-slider-3 .slick-slide .card {
		height: 345px;
	}
	.slider .testimonial-slider-3 .slick-arrow {
		top: 100%;
	}
}
@media (max-width: 991px) {
	.slider .span7 {
		background-image: none !important;
	}
}
@media (min-width: 768px) {
	.slider .testimonial-slider-3 {
		padding-bottom: 90px;
	}
	.slider :is(h1, h2, h3, h4, h5, h6) {
		max-width: 450px;
	}
	.slider .testimonial-slider-3 .slick-slide .card {
		min-height: 370px;
	}
}
@media (min-width: 768px) and (max-width: 1170px) {
	.hs-content-id-115740025144 .span6 {
		width: 65% !important;
	}
	.hs-content-id-115740025144 .span6:first-child {
		width: 30% !important;
	}
}

/* Demonstrate a "mostly customized" scrollbar
 * (won't be visible otherwise if width/height is specified) */
.slider .testimonial-slider-3 .card p::-webkit-scrollbar {
  	width: 5px;
  	height: 8px;
  	background-color: #aaa;
}

/* Add a thumb */
.slider .testimonial-slider-3 .card p::-webkit-scrollbar-thumb {
  background: #EF7123;
}
.cta.contrast :is(h1, h2, h3, h4, h5, h6) {
	width: 100%;
/*	max-width: 500px;*/
	margin: 0 auto;
}
.cta.contrast p {
	margin-top: 15px;
}
.cta.contrast .hs-button:focus,
.cta.contrast .hs-button:active {
	color: #fff;
	border-color: #fff;
}


/* cta-1 */
.cta-1 :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.cta-1 .hs-button {
	background-color: #fff;
	color: inherit;
}
.cta-1 .hs-button:hover,
.cta-1 .hs-button:focus,
.cta-1 .hs-button:active {
	color: #fff;
	border-color: #fff;
}
@media (max-width: 767px) {
	.cta-1 .span2,
	.cta-1 .span3 {
		align-items: center !important;
		text-align: center !important;
	}	
}


/* cta-2 */
.cta-2 .row-fluid .dnd-row:first-child {
	border-radius: 10px;
	box-shadow: 0px 24px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
	.cta-2 .row-fluid .dnd-row:last-child {
	}
	.cta-2 .row-fluid .dnd-row .span3 {
		align-items: center !important;
	}
}
.engagement .span12 > .dnd-row > .row-fluid > .span12 > .widget-type-rich_text > .hs_cos_wrapper_type_rich_text {
/*	max-width: 100%;*/
}
.engagement .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
}
.engagement .card__inner {
	display: block;
}
.engagement .cards__card {
	padding: 40px 20px;
}
.engagement .card__text {
	text-align: center;
	height: 100%;
	display: flex;
	align-items: stretch;
	flex-direction: column;
}
.plans-2 .card__text h5,
.engagement .card__text h5 {
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: none;
	color: #EF7123;
}
.engagement .card__text p {
/*	margin-top: auto;*/
}


/* cards-4 */
.cards-4 .cards {
	grid-template-columns: repeat(1, 1fr) !important;
}
@media (min-width: 768px) and (max-width: 991px) {
	.cards-4 .card__text h5 {
		word-break: break-word;
	}
}
@media (min-width: 992px) {
	.cards-4 .cards {
		grid-template-columns: repeat(1, 1fr) !important;
	}
}
.slider-cards .cards {
	grid-template-columns: repeat(1, 1fr);
}
.slider-cards .cards__card {
	position: relative;
	background-color: #E3E8ED;
}
.slider-cards img.card__image {
	width: auto;
	margin-top: 5px;
	position: absolute;
}
.slider-cards .card__inner {
	display: block;
}
.slider-cards .card__text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 13px;
	margin-left: 35px;
}
@media (min-width: 768px) {
	.slider-cards .cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
.video .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.video .widget-type-rich_text p {
	color: #fff;
	margin-bottom: 10px;
}

.video #hs_cos_wrapper_dnd_area-dnd_partial-6-module-3 .wrapper {
	position: relative;
}
.video #hs_cos_wrapper_dnd_area-dnd_partial-6-module-3 .wrapper:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	width: 80px;
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/icon-video.svg");
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 100%;
	cursor: pointer;
/*	background-size: cover;*/
}
.plans {
	color: #fff;
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-plans.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.plans .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.plans .widget-type-rich_text ul {
	padding-left: 15px;
}
.plans .widget-type-rich_text ul li {
	padding: 7.5px 0;
}
.plans .hs_cos_wrapper_type_module a.hs-button:hover,
.plans .hs_cos_wrapper_type_module a.hs-button:focus {
	border-color: transparent;
	background-color: #fff;
}


/* plans */
.plans .cards {}
.plans .card {
	border-top: 5px solid #ed7124;
	border-radius: 0;
	-webkit-border-bottom-right-radius: 20px !important;
	-webkit-border-bottom-left-radius: 20px !important;
	-moz-border-radius-bottomright: 20px !important;
	-moz-border-radius-bottomleft: 20px !important;
	border-bottom-right-radius: 20px !important;
	border-bottom-left-radius: 20px !important;
	margin-top: 50px;
}
.plans .card:nth-child(1) {
	border-top: 5px solid #f8c6a7;
}
.plans .card:nth-child(2) {
	border-top: 5px solid #f4aa7c;
}
.plans .card:nth-child(3) {
	border-top: 5px solid #f18d50;
}
.plans .card img {
	margin-top: -80px;
  	margin-bottom: 52px;
}
.plans .card__inner {
	height: auto;
}
.plans .card__text {
	color: #000;
	text-align: center;
}
.plans .card__text h4 {
	margin-bottom: 20px;
}
.plans .card__text p strong {
	font-size: 22px;
	line-height: 33px;
	color: #EF7123;
}
@media (min-width: 768px) {
	.plans .card {
		margin-top: 35px;
	}
}



/* plans-2 */
@media (min-width: 768px) {
	.plans-2 .cards__card {
		padding: 40px 30px;
	}
	.plans-2 .dnd-row:last-child .cards {
	  grid-template-columns: repeat(3, 1fr);
	}
}
.slider-3 .gallery-slider-nav .slick-track {
	transform: none !important;
	justify-content: center;
	width: 100% !important;
}
.slider-3 .gallery-slider-nav .slick-slide > div {
	padding-left: 15px;
	padding-right: 15px;
}
.slider-3 .gallery-slider-nav .slick-track .slick-slide {
	float: none !important;
}
.slider-3 .gallery-slider-nav .slick-list:before,
.slider-3 .gallery-slider-nav .slick-list:after {
	content: none;
}

.slider-3 .gallery-slider-for .row-fluid {
	flex-direction: column-reverse !important;
}
.slider-3 .gallery-slider-for .slick-slide > div {
	padding-top: 30px !important;
}
.slider-3 .gallery-slider-for .row-fluid .span7 {
	margin-right: 0 !important;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.slider-3 .gallery-slider-nav .slick-slide > div {
		padding-left: 30px;
		padding-right: 30px;
	}
}
.section-testimonial .testimonial-slider-3 .slick-slide {
	margin: 0;
}
.section-testimonial .testimonial-slider-3 .slick-slide .card {
	align-items: center !important;
	flex-direction: row;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
}
.section-testimonial .card > p {
	font-family: 'Barlow';
	height: auto;
	margin-bottom: 0;
	font-weight: 700;
	font-size: 42px;
	line-height: 50px;
	padding-bottom: 30px;
	text-align: center;
	text-transform: uppercase;
	color: #EF7123;
}
.section-testimonial .card h5 {
	font-family: 'Barlow';
	font-size: 32px;
	line-height: 38px;
	margin-bottom: 30px;
}
.section-testimonial .card small {
	font-size: 18px;
	line-height: 27px;
}
.section-testimonial .card .bottom {
	height: auto;
}

@media (min-width: 768px) {
	.section-testimonial .testimonial-slider-3 .slick-slide {
		margin-bottom: 20px;
  	}
}


/* arrow */
@media (max-width: 767px) {
	.section-testimonial .testimonial-slider-3 .slick-arrow {
		top: calc(100% + 5px) !important;
	}
	.section-testimonial .testimonial-slider-3 .slick-slide .card {
		flex-direction: column !important;
	}
	.section-testimonial .card .bottom {
		text-align: center;
	}
}
@media (min-width: 768px) {
	.section-testimonial .card .bottom,
	.section-testimonial .card > p {
		width: 50%;
	}
	.section-testimonial .card > p {
		padding-right: 40px;
		padding-bottom: 0;
	}
	.section-testimonial .testimonial-slider-3 .slick-arrow {
		top: calc(100% + 35px) !important;
	}
	.section-testimonial .testimonial-slider-3 .slick-next {
		right: calc(50% - 200px);
		top: calc(100% + 35px) !important;
	}
	.section-testimonial .testimonial-slider-3 .slick-prev.slick-arrow {
		left: calc(50% - 200px);
		top: calc(100% + 35px) !important;
	}
}


/* Section Testimonials Static */
.testimonials-job-seekers {
	position: relative;
}
.testimonials-job-seekers:before {
	content: "";
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/testimonials-job-seekers-top.svg");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 157px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.testimonials-job-seekers:after {
	content: "";
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/testimonials-job-seekers-bottom.svg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 318px;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
@media (min-width: 768px) {
	.testimonials-job-seekers:before {
		background-size: 257px;
	}
}
@media (max-width: 1199px) {
	.testimonials-job-seekers:after {
		background-size: 260px;
	}
}
.section-tabs .span12 .widget-type-rich_text h3 span {
	color: #EF7123;	
}
.two-column {
	position: relative;
}
.two-column .row-fluid {
	z-index: 1;
	position: relative;
}
.two-column .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 30px;
}
.two-column .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6):last-child {
	margin-bottom: 0;
}
.two-column ul {
	margin-bottom: 40px;
	padding-left: 18px;
}
.two-column ul li {
	margin-bottom: 15px;
	color: #EF7123;
}
.two-column ul li:last-child {
	margin-bottom: 0;
}



/* contrast */
.two-column-contrast,
.two-column-contrast.two-column-style-2 ul li,
.two-column-contrast :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}



/* menu */
.sticky-wrapper.is-sticky .dnd_area-row-1-padding {
	padding-top: 25px !important;
  	padding-bottom: 25px !important;
  	transition: padding-bottom 0.15s linear, padding-top 0.15s linear;
}
.two-column-menu {
	position: relative;
}
.two-column-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
  	justify-content: space-between;
  	position: relative;
}
.two-column-menu ul li {
	line-height: 20px;
}
.two-column-menu ul li a {
	text-transform: uppercase;
	font-weight: 700;
	color: #000;
}
.two-column-menu ul li a:hover,
.two-column-menu ul li a:focus {
	text-decoration-color: transparent;
	color: #EF7123;
}
.two-column-menu ul li a.active {
	color: #EF7123;
	text-decoration-color: #EF7123;
}
@media (max-width: 767px) {
	.sticky-wrapper.is-sticky .dnd_area-row-1-padding {
		padding-top: 10px !important;
	  	padding-bottom: 10px !important;
	}
	.two-column-menu ul {
		justify-content: space-between;
  		flex-direction: column;
	  	align-items: center;
	}
	.two-column-menu ul li {
		line-height: 28px;
	}
}
@media (min-width: 768px) and (max-width: 1099px) {
	.two-column-menu ul {
		display: grid;
		grid-template-columns: repeat(5, 120px);
		align-items: center;
		column-gap: 25px;
		row-gap: 25px;
	}
	.two-column-menu ul li {
		text-align: center;
	}
	.two-column-menu ul li a {
		font-size: 16px;
		text-align: center;
	}
}
@media (min-width: 1100px) {
	.two-column-menu ul li a {
		font-size: 18px;
	}
}




/* style 2 */
.two-column-style-2 ul {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}
.two-column-style-2 ul li {
	color: #000;
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/check-alt.svg");
	background-repeat: no-repeat;
	background-position: left -2px;
	padding-left: 45px;
}



/* two-column LEFT */
.two-column-right .row-fluid-wrapper > .row-fluid {
	flex-direction: row-reverse !important;
}
.two-column-left .span6:last-child {
/*	padding-left: 80px;*/
}
@media (min-width: 768px) {
	.two-column-left .span6:last-child {
		padding-left: 40px;
	}
	.two-column-right .span6:last-child {
		padding-right: 40px;
	}
}
@media (min-width: 992px) {
	.two-column-left .span6:last-child {
		padding-left: 80px;
	}
	.two-column-right .span6:last-child {
		padding-right: 80px;
	}
}



/* two-column 1 */
.two-column-1 {
	position: relative;
}
.body-container--page-jobs .two-column-1:before,
.body-container--page-jobs .two-column-1:before {
	content: "";
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}
.body-container--page-jobs .two-column-1:after {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/two-column-top.svg");
	background-position: left top;
	background-size: 200px;
	top: 0;
	left: 0;
}
.body-container--page-jobs .two-column-1:after {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/two-column-bottom.svg");	
	background-position: right bottom;
	background-size: 200px;
	bottom: 0;
	right: 0;
}
.two-column-1 .dnd-column:last-child {
	justify-content: space-between !important;
}
.two-column-1 .dnd-column:last-child .dnd-row:nth-child(2) {
	margin-bottom: auto;
}
@media (min-width: 768px) {
	.two-column-1 .dnd-column:last-child {
		padding-left: 30px;
	}
	.two-column-1:before,
	.two-column-1:after {
		background-size: auto;
	}
}
@media (min-width: 992px) {
	.two-column-1 .dnd-column:last-child {
		padding-left: 40px;
	}
}
@media (min-width: 1280px) {
	.two-column-1 .dnd-column:last-child {
		padding-left: 60px;
	}
}



/* two-column 2 */
@media (min-width: 768px) {
	.two-column-2 {
		background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/about_us_mask.svg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center right;
	}
}
.two-column-2 .hs_cos_wrapper_type_rich_text {
	width: 100%;
	display: block;
}
.two-column-2 .hs_cos_wrapper_type_rich_text a {
	color: #EF7123;
}
.two-column-2 .hs_cos_wrapper_type_rich_text a:hover,
.two-column-2 .hs_cos_wrapper_type_rich_text a:focus {
	
}
@media (min-width: 768px) {
	.two-column-2 .dnd-column:last-child {
		padding-left: 50px;
	}
	.two-column-2 .hs_cos_wrapper_type_rich_text {
		max-width: 450px;
	}
}



/* two-column 3 */
.two-column-3 {
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #EF7123;
}
.two-column-3 .align-items-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.two-column-3 .margin {
  	padding-bottom: 20px;
  	padding-top: 20px;
}
.two-column-3 .first .wrapper {
	margin-bottom: 30px;
}
/*@media (max-width: 767px) {
	.two-column-3 .row-fluid .span6 {

	}
}*/
@media (min-width: 768px) {
	.two-column-3 {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.two-column-3 .first .wrapper {
		margin-right: 10px;
		margin-bottom: 0;
	}
}


.two-column-3 .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.two-column-3 .hs-button.style_2 {
	border-color: transparent;
}
.two-column-3 .hs-button.style_2:hover,
.two-column-3 .hs-button.style_2:focus
.two-column-3 .hs-button.style_2:active {
	color: #fff;
	border-color: #fff;
}
.two-column-3 .dnd-column:last-child {
	justify-content: space-between !important;
}
@media (min-width: 768px) {
	.two-column-3 .dnd-column:last-child {
		padding-left: 20px;
	}
}
@media (min-width: 992px) {
	.two-column-3 .dnd-column:last-child {
		padding-left: 30px;
	}
}
@media (min-width: 1280px) {
	.two-column-3 .dnd-column:last-child {
		padding-left: 50px;
	}
}




/* two-column 4 */
.two-column-4 .widget-type-rich_text a {
	color: #EF7123;
}
@media (max-width: 767px) {
	.two-column-4 .row-fluid .span12 .dnd-row:last-child .row-fluid {
		flex-direction: column-reverse !important;
	}	
}





/* two-column 6 */
@media (max-width: 767px) {
	.two-column-6 :is(h1, h2, h3, h4, h5, h6) {
		text-align: center;
	}
}
.two-column-6 {
	position: relative;
}
.two-column-6 > div {
	position: relative;
	z-index: 1;
}
.body-container--marketplace .two-column-6:before,
.body-container--marketplace .two-column-6:after,
.body-container--employers .two-column-6:before,
.body-container--employers .two-column-6:after {
	content: "";
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}
.body-container--marketplace .two-column-6:before,
.body-container--employers .two-column-6:before {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-two-column-6-top.svg");
	background-position: left top;
	background-size: 50%;
	top: 0;
	left: 0;
}
.body-container--marketplace .two-column-6:after,
.body-container--employers .two-column-6:after {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-two-column-6-bottom.svg");
	background-position: right bottom;
	background-size: 50%;
	bottom: 0;
	right: 0;
}
@media (min-width: 768px) {
	.body-container--marketplace .two-column-6:before,
	.body-container--employers .two-column-6:before {
		background-size: 266px;
	}
	.body-container--marketplace .two-column-6:after,
	.body-container--employers .two-column-6:after {
		background-size: 510px;
	}
}




/* two-column 7 */
.two-column-7 {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-two-column-7.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.two-column-7 .row-fluid .span6 {
	border-radius: 20px;
}
.two-column-7 .row-fluid .span6:last-child {
	margin-top: 10px;
}
.two-column-7 .cards {
	grid-template-columns: repeat(1, 1fr);
}
.two-column-7 .card__inner {
	margin-top: 33px;
	height: auto;
}
@media (min-width: 768px) {
	.two-column-7 .cards {
	  	grid-template-columns: repeat(3, 1fr);
	}
}







.two-column-7 .row-fluid .dnd-row:first-child .span6 :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.two-column-7 .row-fluid .dnd-row:first-child .span6 h3 {
	color: #EF7123;
}
.two-column-7 .row-fluid .dnd-row:first-child .span6 h2 {
	margin-top: 30px;
	margin-bottom: 30px;
}
.two-column-7 .dnd-row:last-child .hs_cos_wrapper_type_rich_text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 15px;
}

.two-column-7 ul {
	margin-bottom: 0;
	margin-top: 15px;
	padding-left: 30px;
}
.two-column-7 .dnd-row:last-child .hs_cos_wrapper_type_rich_text ul li:last-child :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.two-column-7 .row-fluid .dnd-row:first-child .span6 h2 {
		margin-top: 30px;
		margin-bottom: 60px;
	}
	.two-column-7 .dnd-row:first-child .row-fluid:first-child {
		align-items: center;
	}
	.two-column-7 .row-fluid .span6:first-child {
		margin-right: 10px;
	}
	.two-column-7 .row-fluid .span6:last-child {
		margin-left: 10px;
		margin-top: 0;
	}
}




.two-column-12 .cards {
  	grid-template-columns: repeat(1, 1fr);
  	color: #000;
}
.two-column-12 .widget-type-rich_text {
	text-align: center;
	width: 100%;
	margin: 0 auto;
}
.two-column-12 .cards__card {
	border-radius: 0;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomright: 20px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	border-left: 5px solid #EF7123;
}
.two-column-12 .cards .card__inner {
	justify-content: flex-start;
}
.two-column-12 .cards :is(h1, h2, h3, h4, h5, h6) {
	color: #000;
	text-transform: uppercase;
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	.two-column-12 .cards {
	  	grid-template-columns: repeat(2, 1fr);
	}
}




/* two-column-13 */
.two-column-13 {}
.two-column-13 .cards {
  	grid-template-columns: repeat(1, 1fr);
}
.two-column-13 .cards__card {
	padding: 10px;
}
.two-column-13 .cards__card img {
	border-radius: 10px;
}
.two-column-13 .cards__card .card__inner {
	height: auto;
}



/* two-column-14 */
.two-column-14 .row-fluid-wrapper .row-fluid .span6 {
	border-radius: 20px;
	margin-bottom: 10px;
}
.two-column-14 .row-fluid-wrapper .row-fluid .span6 ul {
	margin: 0;
	padding: 0 0 0 16px;
}
.two-column-14 .row-fluid-wrapper .row-fluid .span6 li {
	margin-bottom: 23px;
}
.two-column-14 .row-fluid-wrapper .row-fluid .span6 a:not(.hs-button) {
	color: #EF7123;
}
.two-column-14 .row-fluid-wrapper .row-fluid .span6:last-child {
	margin-bottom: 0;
	padding: 30px 30px 40px 40px;
}
@media (min-width: 768px) {
	.two-column-14 .row-fluid-wrapper .row-fluid .span6 {
		margin-right: 11px;
		margin-bottom: 0;
	}
	.two-column-14 .row-fluid-wrapper .row-fluid .span6:last-child {
		margin-right: 0;
		margin-left: 11px;
		padding: 40px 40px 40px 57px;
	}
}




/* two-column-17 */
.two-column-17 {}
.two-column-17 .span12 > .dnd-row:first-child {
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.two-column-17 .span12 > .dnd-row:first-child > .row-fluid > .span12 img {
	margin-bottom: 25px;
}
.two-column-17 .span12 > .dnd-row:first-child > .row-fluid > .span12 h5 {
	text-transform: uppercase;
	margin-bottom: 0;
}
.two-column-17 .span12 > .dnd-row:last-child {
	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-moz-border-radius-bottomright: 20px;
	-moz-border-radius-bottomleft: 20px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
}
.two-column-17 .cards__card {
	display: flex;
}
.two-column-17 .cards__card img {
	width: auto;
	margin-right: 15px;
	position: relative;
	top: 5px;
}
.two-column-17 .cards__card .card__inner {
	justify-content: flex-start;
}
.two-column-17 h4 {
	text-transform: none;
}
@media (min-width: 768px) {
	.two-column-17 .span12 > .dnd-row:first-child > .row-fluid > .span12 {
		margin-top: -30px;
	}
}





/* two-column-18 */
.two-column-18 .cards__card {
	display: flex
}
.two-column-18 .cards__card img {
	position: relative;
	top: 5px;
}
.two-column-18 .cards__card .card__inner {
	justify-content: flex-start;
}
.two-column-18 h4 {
	text-transform: none;
	margin-bottom: 13px;
}
@media (min-width: 768px) {
	.two-column-18 .cards__card {
		padding-left: 30px;
	}
	.two-column-18 .cards__card img {
		margin-right: 30px;
		width: 165px;
	}
}
@media (min-width: 1200px) {
	.two-column-18 .cards__card img {
		width: 95px;
	}
}





/* two-column-19 */
.two-column-19 {
	position: relative;
}
.two-column-19 > div {
	position: relative;
	z-index: 1;
}
.two-column-19:before,
.two-column-19:after {
	content: "";
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}
.two-column-19:before {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-two-column-19-top.svg");
	background-position: left top;
	background-size: 1001px;
	top: 0;
	left: 0;
}
.two-column-19:after {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-business-block-bottom.svg");
	background-position: right top;
	background-size: 386px;
	top: 30%;
	right: 0;
}
.two-column-19 .style_1:hover,
.two-column-19 .style_1:focus {

	border-color: #fff;
	background-color: #fff;
}
.two-column-19 .cards__card {
	padding: 30px;
}
.two-column-19 .card__inner {
	height: auto;
	color: #000;
}
.two-column-19 .cards__card h3 {
	margin-bottom: 20px;
	color: #EF7123;
}
.two-column-19 .cards__card h4 {
	color: #000;
	margin-bottom: 5px;
	text-transform: none;
}
@media (min-width: 768px) {
	.two-column-19 .cards__card h3 {
		height: 175px;
	}
	.two-column-19 .cards__card h4 {
		margin-bottom: 20px;
	}
}
.faq .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
	color: #fff;
}
.faq .widget-type-rich_text p {
	color: #fff;
}
.faq .hs_cos_wrapper_type_rich_text a {
	color: #EF7123;
}
.faq .cards h5 {
	text-transform: uppercase;
}
.featured-jobs {}

.featured-jobs-block {
	display: block;
}
.featured-jobs-block .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.locations {}

.locations .cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	column-gap: 10px;
	row-gap: 10px;
}
.locations .cards__card {
	padding: 40px;
	color: #fff;
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-location-cards.svg");
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
}
.locations .card__inner {
	flex-direction: column;
	align-items: flex-start;
   justify-content: space-between;
}
.locations .card__inner a.hs-button {
	padding: 6px 20px;
	background: #FFFFFF;
	color: #000000;
	margin-top: 20px;
}
.locations .card__inner a.hs-button:focus,
.locations .card__inner a.hs-button:hover {
	color: #fff;
	background-color: #EF7123;
}
.locations .card__text p {
	margin-bottom: 0;
}
.locations .card__text a {
	font-size: 22px;
	line-height: 33px;
	font-weight: 700;
	margin-top: 30px;
	display: inline-block;
}
.locations .card__text a:focus,
.locations .card__text a:hover {
	color: #fff;
	text-decoration-color: #fff;
}
.locations .cards :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.locations .cards :is(h1, h2, h3, h4, h5, h6):after {
   content: "";
   border-bottom: 1px solid #fff;
   width: 20px;
   display: block;
   margin-top: 10px;
   margin-bottom: 25px;
}
@media (min-width: 576px) {
	.locations .cards {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 20px;
		row-gap: 20px;
	}
}
@media (min-width: 1600px) {
	.locations .card__inner {
		align-items: flex-end;
		flex-direction: row;
	}
	.locations .card__text {
		width: 55%;
	}
	.locations .card__text a {
		margin-top: 58px;
	}
}
@media (min-width: 1280px) {
	.locations .cards__card {
		padding: 53px 60px 58px 60px;
	}
}
.block-icon .widget-type-rich_text {
	text-align: center;
}
.block-icon .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
	word-break: break-all;
}


/* style 1 */
.block-icon.style-1 .cards {
	grid-template-columns: repeat(1, 1fr) !important;
}
.block-icon.style-1 .cards__card {
	border-radius: 20px;
	border: 2px solid #D9D9D9;
}
.block-icon .cards img {
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto 27px;
	display: block;
}
.block-icon .card__inner {
	height: auto;
	text-align: center;
}
.block-icon .card__text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
}
.block-icon .card__text p {
	font-size: 16px;
	line-height: 24px;
}
@media (min-width: 768px) {
	.block-icon.style-1 .cards {
		grid-template-columns: repeat(3, 1fr) !important;
	}
	.block-icon .card__inner {
		align-items: flex-start;
		text-align: left;
	}
	.block-icon .cards img {
		margin: 0 0 27px;
		display: block;
	}
}



/* style 2 */
.block-icon.style-2 .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6),
.block-icon.style-2 .widget-type-rich_text p {
	color: #fff;
}
.block-icon.style-2 .cards {
	grid-template-columns: repeat(1, 1fr) !important;
}
.block-icon.style-2 .cards__card {
	border-radius: 20px;
}
@media (min-width: 768px) {
	.block-icon.style-2 .cards {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}



/* style 3 */
.block-icon.style-3 .cards__card {
	border-radius: 20px;
	border: 2px solid #D9D9D9;
	padding-left: 20px;
	padding-right: 20px;
}
.block-icon.style-3 .cards img {
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 20px auto 20px;
	display: block;
}
.block-icon.style-3 .card__inner {
	height: auto;
	text-align: center;
	align-items: center;
}
.block-icon.style-3 .card__text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
}
.block-icon.style-3 .card__text p {
	font-size: 16px;
	line-height: 24px;
}
@media (min-width: 768px) {
	.block-icon.style-3 .cards img {
		margin-bottom: 60px;
	}
}
.business-block {
	position: relative;
}
.business-block > div {
	position: relative;
	z-index: 1;
}
.business-block .widget-type-rich_text {
	text-align: center;
	width: 100%;
	margin: 0 auto;
}
.business-block .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
	color: #fff;
}

.business-block .cards__card {
	border-radius: 20px;
}
.business-block .cards img {
	width: auto;
	margin-bottom: 27px;
	margin: 0 auto 27px;
	display: block;
}
.business-block .card__inner {
	height: auto;
	text-align: center;
}
.business-block .card__text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
}
.business-block .card__text p {
	font-size: 16px;
	line-height: 24px;
}

@media (min-width: 768px) {
	.business-block .card__inner {
		align-items: flex-start;
		text-align: left;
	}
	.business-block .cards img {
		margin: 0 0 27px;
		display: block;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.business-block .cards__card {
  		padding: 30px;
	}
}


/* contrast */
/*.two-column-contrast,
.two-column-contrast.two-column-style-2 ul li,
.two-column-contrast :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}*/

 {

}
.body-container--employers .business-block:before,
.body-container--employers .business-block:after {
	content: "";
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}
.body-container--employers .business-block:before {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-business-block-top.svg");
	background-position: 25px 0;
	background-size: 1001px;
	top: 0;
	left: 0;
}
.body-container--employers .business-block:after {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-business-block-bottom.svg");
	background-position: right bottom;
	background-size: 386px;
	bottom: 0;
	right: 0;
}
.locations-text {
	position: relative;
}
.locations-text .cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	column-gap: 10px;
	row-gap: 10px;
}
.locations-text .cards__card {
	border-radius: 20px;
	padding: 30px 25px 30px 30px;
	color: #fff;
	background-color: #8F9AA3;	
}
.locations-text .card__inner {
	flex-direction: column;
	align-items: flex-start;
   justify-content: space-between;
}
.locations-text .card__inner a.hs-button {
	padding: 6px 20px;
	background: #FFFFFF;
	color: #000000;
	margin-top: 20px;
}
.locations-text .card__inner p a {
  margin: 0;
}
.locations-text .card__inner a.hs-button:focus,
.locations-text .card__inner a.hs-button:hover {
	color: #fff;
	background-color: #EF7123;
}
.locations-text .card__text p {
	margin-bottom: 0;
}
.locations-text .card__text a {
	font-size: 22px;
	line-height: 33px;
	font-weight: 700;
	margin-top: 18px;
	display: inline-block;
}
.locations-text .card__text a:focus,
.locations-text .card__text a:hover {
	color: #fff;
	text-decoration-color: #fff;
}
.locations-text .cards :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.locations-text .span6 h3 {
	margin-bottom: 20px;
	color: #EF7123;
}
.locations-text .cards :is(h1, h2, h3, h4, h5, h6):after {
   content: "";
   border-bottom: 1px solid #fff;
   width: 20px;
   display: block;
   margin-top: 10px;
   margin-bottom: 25px;
}
@media (max-width: 767px) {
	.locations-text .span12 .hs_cos_wrapper_type_header {
		text-align: center;
	}
}

@media (min-width: 576px) {
	.locations-text .cards {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 20px;
		row-gap: 20px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.locations-text .row-fluid .span6:last-child .hs_cos_wrapper_type_header {
		padding-top: 50px;
		display: block;
	}
}
@media (max-width: 991px) {
	.locations-text > .row-fluid {
		flex-direction: column;
	}
	.locations-text .row-fluid > .span6 {
		width: 100%;
	}
	.locations-text .row-fluid > .span6:last-child {
		padding-left: 0 !important;
	}
	.locations-text .row-fluid .span6 .hs_cos_wrapper_type_header {
		text-align: center;
	}
}
@media (min-width: 992px) {
	.locations-text .row-fluid .span6 .hs_cos_wrapper_type_header {
		text-align: left;
	}
}

.locations-text .row-fluid .span6:last-child {
	display: flex;
	flex-direction: column;
}
.locations-text .row-fluid .span6:last-child > div:last-child {
	margin-top: auto;
}

/*form*/
.locations-form form {
	border-radius: 20px;
	padding: 30px 22px 30px 30px;
	background-color: #E3E8ED;
}
.locations-form form .hs-input:not(input[type="radio"], input[type="checkbox"]) {
	background-color: #fff;
	width: 100% !important;
	border-radius: 10px;
}
.locations-form form textarea {
	height: 175px;
}
.locations-form form .actions input {
	width: 100%;
}
@media (min-width: 768px) {
	.locations-form .row-fluid .span6:last-child > div:last-child {
		margin-top: inherit;
	}
	.locations-form form {
		padding: 40px 32px 40px 40px;
	}
	.locations-form form textarea {
		height: 275px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.locations-form > .row-fluid {
		flex-direction: column !important;
	}
	.locations-form .row-fluid > .span6 {
		width: 100%;
	}
	.locations-form .row-fluid > .span6:last-child {
		margin-top: 20px;
	}
}
/* For Job Seekers - Contact page */
.body-container--apply-with-lg .locations-form {
	position: relative;
}
.body-container--apply-with-lg .locations-form > div {
	position: relative;
	z-index: 1;	
}
.body-container--apply-with-lg .locations-form:before,
.body-container--apply-with-lg .locations-form:after {
	content: "";
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}
.body-container--apply-with-lg .locations-form:before {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-locations-form-top.svg");
	background-position: left top;
	background-size: 0;
	top: 0;
	left: 0;
}
.body-container--apply-with-lg .locations-form:after {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-locations-form-bottom.svg");
	background-position: right bottom;
	background-size: 139px;
	bottom: 0;
	right: 0;
}
@media (min-width: 768px) {
	.body-container--apply-with-lg .locations-form:before {
		background-size: 115px;
	}
}






/*form on section get-in-touch*/
.get-in-touch form {
	margin: 0 auto;
	width: 100%;
	max-width: 580px;
}







/* For Job Seekers */
.body-container--jobs .locations-text {
	position: relative;
}
.body-container--jobs .locations-text > div {
	position: relative;
	z-index: 1;	
}
.body-container--jobs .locations-text:before,
.body-container--jobs .locations-text:after {
	content: "";
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}
.body-container--jobs .locations-text:before {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-locations-text-top.svg");
	background-position: 25px 0;
	background-size: 100px;
	top: 0;
	left: 0;
}
.body-container--jobs .locations-text:after {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-locations-text-bottom.svg");
	background-position: right bottom;
	background-size: 170px;
	bottom: 0;
	right: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
	.body-container--jobs .locations-text .row-fluid .span6:last-child .hs_cos_wrapper_type_header {
		padding-top: 0;
		display: block;
	}
	.body-container--jobs .locations-text .row-fluid > .span6:last-child {
		padding-left: 40px !important;
	}
}
@media (min-width: 768px) {
	.body-container--jobs .locations-text:before {
		background-size: 140px;
	}
	.body-container--jobs .locations-text:after {
		background-size: 220px;
	}
}
.solutions .cards__card {
	border-radius: 20px;
	padding: 30px 20px 30px 30px;
	background-color: #e3e8ec;	
	position: relative;
}
.solutions .card__inner {
	align-items: flex-start;
}
.solutions .card__inner a.hs-button {
	padding: 6px 28px;
	background: #000;
	color: #fff;
	margin-top: 37px;
}
.solutions .card__inner a.hs-button:focus,
.solutions .card__inner a.hs-button:hover {
	color: #fff;
	background-color: #EF7123;
}
.solutions .card img {
	position: absolute;
	top: 30px;
	left: 30px;
	width: auto;
}
.solutions .card__text p {
	margin-bottom: 0;
}
.solutions .card__text a {
	font-size: 22px;
	line-height: 33px;
	font-weight: 700;
	margin-top: 30px;
	display: inline-block;
}
.solutions .card__text a:focus,
.solutions .card__text a:hover {
	color: #fff;
	text-decoration-color: #fff;
}
.solutions .cards h3 {
	line-height: 28px;
}
.solutions .cards :is(h1, h2, h3, h4, h5, h6) {
	margin-left: 100px;
	margin-bottom: 30px;
	height: 80px;
  	display: flex;
  	align-items: center;
}
@media (min-width: 576px) and (max-width: 767px) {
	.solutions .card__text h4 {
		font-size: 20px;
		line-height: 30px;
	}
}
@media (min-width: 768px) {
	.solutions .cards {
		column-gap: 20px;
		row-gap: 20px;
	}
	.solutions .cards__card {
		padding: 40px 35px 40px 40px;
	}
	.solutions .card img {
		top: 40px;
		left: 40px;
	}
}

@media (min-width: 992px) {
	.solutions .cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.solutions .cards__card {
		padding: 40px 10px 40px 25px;
	}
	.solutions .card img {
		left: 25px;
	}
}
@media (min-width: 992px) and (max-width: 1229px) {
	.solutions .cards__card {
		
	}
}
@media (min-width: 1230px) {
	.solutions .cards__card {
		padding: 40px 35px 40px 40px;	
	}
	.solutions .card img {
		left: 40px;
	}
}
.solutions .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
/*	margin-bottom: 10px;*/
}
.statistics .cards__card {
	padding: 28px 45px;
	display: flex;
	justify-content: center;
   flex-direction: column;
}
.statistics .hs_cos_wrapper_type_rich_text :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

.statistics .card__text h3 {
	margin-bottom: 10px;
	color: #EF7123;
}
.statistics .card__text {
	height: 100%;
	display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.statistics .hs_cos_wrapper_type_rich_text p {
	color: #fff;
}
/*:is(h1, h2, h3, h4, h5, h6) {}*/
@media (min-width: 992px) {
	.statistics .cards__card {
		padding: 30px;
	}
}
@media (min-width: 1280px) {
	.statistics .cards__card {
		padding: 28px 45px;
	}
}
.staffing {
	position: relative;
}
.staffing > div {
	position: relative;
	z-index: 1;
}
.body-container--jobs .staffing:before {
	content: "";
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-staffing-top.svg");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.body-container--jobs .staffing:after {
	content: "";
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-staffing-bottom.svg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}
@media (min-width: 768px) {
	.body-container--jobs .staffing:before {
		background-size: 294px;
	}
	.body-container--jobs .staffing:after {
		background-size: 312px;
	}
}


.staffing .span12 > .dnd-row:not(:first-child) > .row-fluid > div {
	margin: 5px 0;
	border-radius: 20px;
	padding: 60px 40px 85px 40px;
/*	height: 290px;*/
}
.staffing .dnd-row .row-fluid > div:first-child {
	margin-top: 0;
}
.staffing .dnd-row .row-fluid > div:last-child {
	margin-bottom: 0;
}

.staffing .span12 > .dnd-row:not(:first-child) > .row-fluid > div img {
	margin-bottom: 30px;
}
.staffing .span12 > .dnd-row:not(:first-child) > .row-fluid > div :is(h1, h2, h3, h4, h5, h6) {
/*	width: 50%;*/
	text-align: center;
   margin: 0 auto;
}

@media (min-width: 768px) {
	.staffing .span12 > .dnd-row:not(:first-child) > .row-fluid > div {
		margin: 0 10px;
		border-radius: 20px;
		padding: 60px 40px 85px 40px;
		height: 290px;
	}
	.staffing .dnd-row .row-fluid > div:first-child {
		margin-left: 0;
	}
	.staffing .dnd-row .row-fluid > div:last-child {
		margin-right: 0;
	}
}






/*.staffing-solutions {
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-staffing-solutions.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}*/
.staffing-solutions {
	position: relative;
}
.staffing-solutions > div {
	position: relative;
	z-index: 1;
}
.body-container--jobs:not(.body-container--temporary-staffing-jobs) .staffing-solutions:before {
	content: "";
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-staffing-solutions-top.svg");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.body-container--jobs:not(.body-container--temporary-staffing-jobs) .staffing-solutions:after {
	content: "";
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-staffing-solutions-bottom.svg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}
@media (min-width: 768px) {
	.body-container--jobs:not(.body-container--temporary-staffing-jobs) .staffing-solutions:before {
		background-size: 287px;
	}
	.body-container--jobs:not(.body-container--temporary-staffing-jobs) .staffing-solutions:after {
		background-size: 318px;
	}
}


.staffing-solutions .widget-type-header :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
	margin-bottom: 0 !important;
}
.staffing-solutions .cards {
	grid-template-columns: repeat(1, 1fr);
}
.staffing-solutions .cards .cards__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.staffing-solutions .cards img {
	width: auto;
}
.staffing-solutions .cards .card__inner {
	align-items: flex-start;
	justify-content: space-between;
}
.staffing-solutions .cards .card__inner :is(h1, h2, h3, h4, h5, h6) {
	margin-top: 17px;
	margin-bottom: 14px;
}
.staffing-solutions .cards .card__inner p {
	font-size: 16px;
	line-height: 24px;
}
.staffing-solutions .cards a.hs-button {
	margin-top: 27px;
}
@media (min-width: 576px) {
	.staffing-solutions .cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 768px) {
	.staffing-solutions .cards .card__inner {
		align-items: flex-start;
		justify-content: space-between;
		min-height: 360px;
	}
	.staffing-solutions .cards .card__inner :is(h1, h2, h3, h4, h5, h6) {
		margin-top: 27px;
	}
}
@media (min-width: 992px) {
	.staffing-solutions .cards {
		grid-template-columns: repeat(3, 1fr);
	}
}



/* staffing-solutions-2 */
.staffing-solutions-2 .widget-type-header :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
	text-align: center;
}
.staffing-solutions-2 .cards {
	grid-template-columns: repeat(1, 1fr);
}
.staffing-solutions-2 .cards .cards__card {
	display: flex;
  	flex-direction: column;
  	align-items: center;
  	padding: 40px;
}
.staffing-solutions-2 .cards .card__inner {
  	align-items: flex-start;
  	justify-content: space-between;
}
.staffing-solutions-2 .cards .card__inner :is(h1, h2, h3, h4, h5, h6) {
	margin-top: 30px;
}
.staffing-solutions-2 .cards .card__text {
	text-align: center;
}
.staffing-solutions-2 .cards .card__inner p {
	font-size: 16px;
	line-height: 24px;
}
@media (min-width: 576px) {
	.staffing-solutions-2 .cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 768px) {
	.staffing-solutions-2 .cards .card__inner {
  		align-items: flex-start;
  		justify-content: space-between;
	}
	.staffing-solutions-2 .cards .cards__card {
  		padding: 60px 40px 85px 40px;
	}
}




/* staffing-solutions-3 */
.staffing-solutions-3 {
	position: relative;
}
.staffing-solutions-3 > div {
	position: relative;
	z-index: 1;
}
.staffing-solutions-3 .cards {
	justify-content: center;
	gap: 11px;
}
.staffing-solutions-3 .cards {
	grid-auto-rows: 3fr;
	grid-template-columns: repeat(1, 1fr);
}
.staffing-solutions-3 .cards__card {
	display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: flex-start;
   position: relative;
   transition: background-color 0.15s linear;
   overflow: hidden;
   padding: 0;
   height: auto;
}
@media (min-width: 768px) {
	.staffing-solutions-3 .cards__card {
	}
}
.staffing-solutions-3 .cards__card:hover {
	color: #fff;
	background-color: #EF7123 !important;
}
.staffing-solutions-3 .cards__card :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 23px !important;
	text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-decoration-color: rgba(255, 255, 255, 0);
	text-underline-offset: 3px;
}
.staffing-solutions-3 .cards__card:hover :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
	text-decoration-color: #fff;
}
.staffing-solutions-3 .cards__card img {
	width: auto;
	margin-top: 60px;
  width: 80px;
	opacity: 1;
	transition: opacity 0.20s linear, margin-top 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.staffing-solutions-3 .cards__card:hover img {
	margin-top: -80px;
	opacity: 0;
}
.staffing-solutions-3 .cards__card .card__inner {
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
}
.staffing-solutions-3 .cards__card .card__text {
	font-size: 18px;
	line-height: 27px;
	text-align: center;
	padding: 30px;
}
.staffing-solutions-3 .cards__card .card__text p {
	opacity: 0;
	transition: opacity 0.17s linear;
	position: absolute;
	width: calc(100% - 30px);
	left: 15px;
}
.staffing-solutions-3 .cards__card .hs-button {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: transparent;
	border: none;
	padding: 0;
	font-size: 0;
	text-indent: -1000px;
}
.staffing-solutions-3 .cards__card:hover .card__text p {
	opacity: 1;
}
.staffing-solutions-3 .cards__card:hover .hs-button:hover {
	background-color: transparent;
	color: #fff;
	border-color: #fff;
}
.staffing-solutions-3 .cards__card:hover .hs-button > div {
	position: relative;
}
@media (max-width: 767px) {
	.staffing-solutions-3 .cards__card {
		min-height: 270px;
	   height: 100%;
	}
}
@media (min-width: 768px) {
	.staffing-solutions-3 .cards__card {
	   height: 290px;
	}
	.staffing-solutions-3 .cards {
		gap: 22px;
	}
	.staffing-solutions-3 .cards {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.staffing-solutions-3 .cards__card {
	   height: 320px;
	}
	.staffing-solutions-3 .cards__card .card__text {
		padding-top: 30px;
	}
	.staffing-solutions-3 .cards__card .card__text p {
		width: calc(100% - 30px);
		left: 15px;
		font-size: 16px;
		line-height: 24px;
	}
}
@media (min-width: 992px) {
	.staffing-solutions-3 .cards__card {
		height: 325px;
	}
	.staffing-solutions-3 .cards__card img {
		margin-top: 80px;	
	}
	.staffing-solutions-3 .cards__card .card__text {
		padding-top: 30px;
	}
	.staffing-solutions-3 .cards__card .card__text p {
		width: calc(100% - 30px);
		left: 15px;
	}
}
@media (min-width: 1200px) {
	.staffing-solutions-3 .cards__card {
	   height: 290px;
	}
	.staffing-solutions-3 .cards__card img {
		margin-top: 60px;	
	}
	.staffing-solutions-3 .cards__card .card__text {
		padding: 40px 37px 30px 37px;
	}
}
.body-container--jobs .staffing-solutions-3:before {
	content: "";
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-staffing-top.svg");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.body-container--jobs .staffing-solutions-3:after {
	content: "";
	background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-staffing-bottom.svg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}
@media (min-width: 768px) {
	.body-container--jobs .staffing-solutions-3:before {
		background-size: 294px;
	}
	.body-container--jobs .staffing-solutions-3:after {
		background-size: 312px;
	}
}




/* staffing solutions 4 */
.staffing-solutions-4 .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6),
.staffing-solutions-4 .widget-type-rich_text p {
	color: #fff;
}
.staffing-solutions-4 .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
}
.staffing-solutions-4 .cards__card {
	padding: 40px;
}
.staffing-solutions-4 .card__inner {
	height: auto;
}
.staffing-solutions-4 .card__text {
	text-align: center;
}
.staffing-solutions-4 .cards .card__image {
	margin-bottom: 30px;
}
.staffing-solutions-4 .cards .card__inner :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 30px;
}
.staffing-solutions-4 .cards .card__inner p {
	font-size: 16px;
	line-height: 24px;
}
@media (min-width: 576px) {
	.staffing-solutions-4 .cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 992px) {
	.staffing-solutions-4 .cards {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1200px) {
	.staffing-solutions-4 .cards__card {
		padding: 60px 40px;
	}
}
.logo-clients .cards__card {
   padding: 0;
}
.logo-clients .cards {
   align-items: center;
   justify-items: center;
   gap: 10px;
}
.logo-clients .cards img {
   height: auto;
}

.logo-clients a.hs-button {
   font-size: 32px;
   line-height: 38px;
   text-align: center;
   font-weight: 700;
   font-family: 'Barlow';
   color: #000;
}
.logo-clients a.hs-button span {
	color: #ED7124;
}
.logo-clients a.hs-button:hover,
.logo-clients a.hs-button:focus {
	color: #000;
	background-color: transparent;
}
@media (max-width: 575px) {
   .logo-clients .cards img {
      width: 120px;
   }
   .logo-clients .cards__card {
      height: 70px;
      display: flex;
      align-items: center;
   }
}
@media (min-width: 576px) {
   .logo-clients .cards {
      gap: 50px;
   }
}
@media (min-width: 576px) and (max-width: 767px) {
   .logo-clients .cards {
      grid-template-columns: repeat(3, 1fr) !important;
   }
}
@media (min-width: 768px) and (max-width: 991px) {
   .logo-clients .cards {
      grid-template-columns: repeat(5, 1fr) !important;
   }
}
@media (min-width: 992px) {
   .logo-clients .cards {
      gap: 90px;
   }
}
.blog-recent-posts {
	background-color: #EF7123;
}
.blog-recent-posts > .row-fluid {
	padding-top: 30px;
	padding-bottom: 30px;
}
.blog-recent-posts > .row-fluid h3 {
	margin-bottom: 30px;
	text-align: center;
}
@media (min-width: 768px) {
	.blog-recent-posts > .row-fluid {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.blog-recent-posts > .row-fluid h3 {
		margin-bottom: 60px;
	}
}
.blog-recent-posts .row-fluid .column {
	background-color: #fff;
	padding: 10px;
	border-radius: 20px;
	display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.blog-recent-posts .row-fluid .column img {
	border-radius: 10px;
	object-fit: cover;
	min-height: 221px;
}
.blog-recent-posts .row-fluid .column {
	margin: 5px 0;
}
.blog-recent-posts .row-fluid .column:first-child {
	margin-top: 0;
}
.blog-recent-posts .row-fluid .column:last-child {
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.blog-recent-posts .row-fluid .column {
		margin: 0 10px;
	}
	.blog-recent-posts .row-fluid .column:first-child {
		margin-left: 0;
	}
	.blog-recent-posts .row-fluid .column:last-child {
		margin-right: 0;	
	}
}
.blog-recent-posts .item-content {
	display: flex;
	align-items: flex-start;
   	flex-direction: column;
   	height: auto;
   	padding: 20px 20px 20px 20px;
}
@media (min-width: 768px) {
	.blog-recent-posts .item-content {
		height: 100%;	
	}
}
.blog-recent-posts .item-content > h5 {
	text-transform: none;
}
.blog-recent-posts .item-content span {
	font-size: 14px;
	line-height: 14px;
	color: #818181;
	margin: 13px 0;
}
.blog-recent-posts .item-content .item-content-list em,
.blog-recent-posts .item-content .item-content-list strong,
.blog-recent-posts .item-content .item-content-list :is(h1, h2, h3, h4, h5, h6) {
	font-weight: 400;
	font-style: normal;
	text-transform: none;
	font-size: 14px;
  	line-height: 21px;
  	text-align: left;
  	font-family: Poppins, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
}
.blog-recent-posts .item-content .item-content-list a {
	color: #EF7123;
}
.blog-recent-posts .item-content .item-content-list :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 10px;
/*	text-transform: inherit;*/
}
.blog-recent-posts .item-content-list {
	margin-top: 13px;
	margin-bottom: 23px;
}
.blog-recent-posts .item-content-list p {
	font-size: 14px;
	line-height: 21px;
}
.blog-recent-posts .item-content a.hs-button {
	margin-top: auto;
}



.blog-recent-posts .blog-all-posts-url {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.blog-recent-posts .blog-all-posts-url .hs-button {
/*	color: #000;*/
/*	border-color: #000;*/
}
.blog-recent-posts .blog-all-posts-url .hs-button:hover {
/*	color: #fff;*/
/*	border-color: transparent;*/
}

@media (min-width: 768px) {
	.blog-recent-posts .blog-all-posts-url {
		margin-top: 40px;
	}
}


.body-container--workers-comp-itigation .statistics h3 {
   font-size: 42px;
   line-height: 50px;
}
.body-container--workers-comp-itigation .statistics .cards__card {
   padding-top: 60px;
   padding-bottom: 60px;
}
.body-container--workers-comp-itigation .statistics .card__text {
   justify-content: flex-start;
}
.body-container--workers-comp-itigation .statistics .card__text p {
   font-size: 16px;
   line-height: 24px;
}



.body-container--employee-benefits-consulting .two-column-12 .card__inner {
   align-items: flex-start;
}
@media (min-width: 768px) {
   .body-container--employee-benefits-consulting .two-column-12 .cards__card {
      padding-top: 60px;
      padding-bottom: 60px;
   }
}
.body-container--employee-benefits-consulting .cta.contrast :is(h1, h2, h3, h4, h5, h6) {
   max-width: 100%;
}
@media (max-width: 767px) {
   .body-container--employee-benefits-consulting .testimonial .testimonial-slider-3 .slick-arrow {
      top: calc(100% + 30px);
   }
   .body-container--employee-benefits-consulting .testimonial .testimonial-slider-3 .slick-list {
      height: 100% !important;
   }
}
@media (min-width: 768px) {
   .body-container--employee-benefits-consulting .testimonial .testimonial-slider-3 {
      padding-left: 100px;
      padding-right: 100px;
   }
}





/* testimonial */
.body-container--employee-benefits-consulting .testimonial .widget-type-rich_text {
   width: 100%;
   margin: 0 auto;
}
.body-container--employee-benefits-consulting .testimonial .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6),
.body-container--employee-benefits-consulting .testimonial .widget-type-rich_text p {
   color: #fff;
}
.body-container--employee-benefits-consulting .testimonial .widget-type-rich_text :is(h1, h2, h3, h4, h5, h6) {
   margin-bottom: 10px;
}
.body-container--employee-benefits-consulting .testimonial .testimonial-slider-3 .slick-slide .card {
   background-color: #fff;
   background-image: none;
   padding: 30px;
   flex-direction: column-reverse;
   justify-content: flex-end;
   height: auto;
}
.body-container--employee-benefits-consulting .testimonial .testimonial-slider-3 .slick-slide .card img {
   border-radius: 10px;
   width: calc(100% + 40px);
   height: auto;
   margin-top: -20px;
   margin-left: -20px;
   margin-right: 0;
   margin-bottom: 0;
   float: none;
}
.body-container--employee-benefits-consulting .testimonial .testimonial-slider-3 .slick-slide .card h5 {
   margin-top: 30px;
   margin-bottom: 15px;
}
.body-container--employee-benefits-consulting .testimonial .testimonial-slider-3 .slick-slide .card p {
   margin: 0;
}
.body-container--employee-benefits-consulting .testimonial .slick-arrow {
   filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);
}
@media (min-width: 992px) {
   .body-container--employee-benefits-consulting .testimonial .widget-type-rich_text {
      max-width: 70%;
   }
}



/* staffing-solutions.html */
.body-container--staffing-solutions .two-column-3 {
   background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/bg-cta.svg");
   background-repeat: no-repeat;
   background-position: left center;
}



/* health-savings-program */
@media (min-width: 768px) {
   .body-container--health-savings-program .two-column-2 {
      background-image: url("//19545538.fs1.hubspotusercontent-na1.net/hubfs/19545538/raw_assets/public/lg-resources-theme/images/about_us_mask_2.svg");
      background-size: contain;
      background-position: calc(100% + 2px);
   }
}
.body-container--health-savings-program .two-column-2 .span6 :is(h1, h2, h3, h4, h5, h6),
.body-container--health-savings-program .two-column-2 .span6 {
   color: #fff;
}



/* page https://lgresources-19545538.hs-sites.com/rocketship
   block clients-logo
*/
@media (max-width: 575px) {
   .body-container--page-jobs .logo-clients .cards__card {
      height: auto;
   }
   .body-container--page-jobs .logo-clients .cards img {
      width: auto;
   }
}





/* Home (For employers) */
.body-container--home .solutions .card__inner {
   justify-content: space-between
}


/* marketplace */
/*https://lgresources-19545538.hs-sites.com/life-engineering*/
.body-container--marketplace .dnd-section .row-number-7 .widget-type-header {
   text-align: center;
}
.body-container--marketplace .statistics {}
.body-container--marketplace .statistics .cards__card {
   padding: 40px 25px 30px 25px;
}
.body-container--marketplace .statistics .card__text {
   justify-content: flex-start;
}
.body-container--marketplace .statistics .card__text p {
   font-size: 14px;
   line-height: 21px;
}
@media (min-width: 768px) {
   .body-container--marketplace .statistics .cards__card {
      padding: 40px 25px 30px 25px;
   }
}




/* about */
.body-container--about .block-icon.style-1 .cards__card {
   border-color: #fff;
}

/* Staffing Solutions */
@media (max-width: 767px) {
   .hs-content-id-115898171706 .hero .hs_cos_wrapper_type_header .h1,
   .hs-content-id-115898171706 .hero .hs_cos_wrapper_type_header h1 {
      /* font-size: 32px; */
      /* line-height: 38px; */
   }
   .hs-content-id-115898171706 .hero .row-fluid-wrapper > .row-fluid {
      gap: 8px;
   }
} 
footer {
   padding: 0 20px;
}
.footer-top {
   padding-top: 35px;
   padding-bottom: 35px;
}
@media (min-width: 768px) {
   .footer-top {
      padding-top: 67px;
      padding-bottom: 40px;
   }
   .footer-jobs {
/*      padding-top: 67px;*/
      padding-bottom: 107px;
   }   
}

/* (For employers) */
footer .footer-lg {
   align-items: flex-start;
}
@media (min-width: 768px) {
   .footer-lg .dnd-column:nth-child(2) {
     padding-left: 115px;
     padding-right: 20px;
   }
}
@media (min-width: 992px) {
   .footer-lg .dnd-column:nth-child(2) {
      padding-left: 90px;
      padding-right: 0;
   }
}
@media (min-width: 1200px) {
   .footer-lg .dnd-column:nth-child(2) {
      padding-left: 60px;
   }
}



footer .dnd-column .widget-type-rich_text {
   font-size: 16px;
   line-height: 24px;
}
.footer-top .span5 #hs_cos_wrapper_social_footer {
   margin-top: 37px;
}


/*logo*/
.footer-top #hs_cos_wrapper_site_logo_footer img {
   width: 100%;
   max-width: 220px;
}


/*menu*/
.footer-top .hs_cos_wrapper_type_menu,
.footer-top .hs_cos_wrapper_type_menu div {
   height: 100%;
}
.footer-top #hs_menu_wrapper_footer-menu ul {
   margin: 0;
   padding: 0;
   display: flex;
   justify-content: flex-start;
   flex-direction: column;
   align-items: center;
   height: 100%;
}
.footer-top #hs_menu_wrapper_footer-menu li {
   list-style: none;
   line-height: 24px;
}
.footer-top #hs_menu_wrapper_footer-menu a {
   font-size: 16px;
   line-height: 24px;
}
/*style menu for footer LG Resources */
.footer-top .span5 #hs_menu_wrapper_footer-menu ul {
   display: grid;
   column-gap: 0;
   row-gap: 0;
   grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
   .footer-top #hs_menu_wrapper_footer-menu ul {
      align-items: flex-start;
   }
   .footer-top .span5 #hs_menu_wrapper_footer-menu ul {
      column-gap: 26px;
      row-gap: 23px;
      grid-template-columns: repeat(2, 1fr);
   }   
}


/*text html*/
.footer-top .span2,
.footer-top .span3 {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.footer-top .span3 .hs_cos_wrapper_type_rich_text {
   width: 60%;
   display: block;
   margin: 0 auto;
}
.footer-top .span3 .hs_cos_wrapper_type_module:last-child {
   margin-top: 25px;
}
.footer-top .span3 .hs_cos_wrapper_type_rich_text h5 {
   font-weight: 700;
   margin-top: 10px;
   margin-bottom: 17px;
   display: inline-block;
   text-transform: uppercase;
}
.footer-top .span3 .hs_cos_wrapper_type_rich_text h5:after {
   content: "";
   border-bottom: 1px solid #fff;
   width: 20px;
   display: block;
   margin-top: 4px;
}
@media (min-width: 768px) {
   .footer-top .span3 .hs_cos_wrapper_type_rich_text {
      margin: 0;
      width: 100%;
      max-width: 250px;
   }
   .footer-top .span3 .hs_cos_wrapper_type_rich_text h5 {
      margin-top: 0;
      margin-bottom: 27px;
   }
}
/*@media (min-width: 768px) and (max-width: 991px) {
   .footer-top .dnd-column:nth-child(2) {
      padding-left: 30px;
   } 
}*/


/*social*/
.footer-top .hs-social-follow {
      justify-content: center;
      margin-top: 20px;
   }
.footer-top .hs-social-follow a.hs-social-follow__link {
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 10px;
   transition: background-color .15s linear;

   display: flex;
   align-items: center;
   justify-content: center;
}
.footer-top .hs-social-follow a span.hs-social-follow__icon {
   height: 70%;
}
.footer-top .hs-social-follow a.hs-social-follow__link:hover {
   background-color: #fff;
}
.footer-top .hs-social-follow a.hs-social-follow__link svg {
   transition: fill .15s linear;
}
.footer-top .hs-social-follow a.hs-social-follow__link:hover svg {
   fill: #EF7123 !important;
}
@media (min-width: 576px) {
   .footer-top .hs-social-follow {
      justify-content: flex-start;
      margin-top: 0;
   }
}


/*Copyright*/
.footer-bottom .span12 {
   border-top: 1px solid rgba(255, 255, 255, .2);
   padding: 35px 0;
}
.footer-bottom .span12 #hs_cos_wrapper_copyright {
   padding: 0 !important;
}
.footer-bottom .hs_cos_wrapper_type_rich_text p {
   font-size: 14px;
   line-height: 21px;
   text-align: center;
}

@media (max-width: 767px) {
   footer .dnd-column {
      text-align: center;
      margin-bottom: 20px;
   }
   footer .dnd-column:last-child {
      margin-bottom: 0;  
   }
   .footer-top .social-links {
      justify-content: center;
      margin: 20px 0 0;
   }
   .footer-top .span3 .hs_cos_wrapper_type_rich_text h5:after {
      margin: 4px auto 0;
   }
   footer .dnd-column:nth-child(3) {
      margin-bottom: 0;
   }
   .footer-top #hs_menu_wrapper_footer-menu li {
      padding: 10px 0;
   }
   .footer-top .span2 #hs_menu_wrapper_footer-menu li:last-child {
      padding-bottom: 20px;
   }
}




@media (min-width: 768px) {
   footer .footer-jobs #hs_menu_wrapper_footer-menu li {
      margin-bottom: 30px;
   }
}