:root {
    /* Border Radius & Padding */
    --btn-border-radius: 6px;
    --input-border-radius: 5px;
    --input-padding: 10px 24px 4px 24px;

    /* Primary Button */
    --primary-btn-bg: #E85E26;
    --primary-btn-color: #ffffff;
    --primary-btn-border-color: #E85E26;
    
    /* Primary Button Hover */
    --primary-btn-bg-hover: #c64815;
    --primary-btn-color-hover: #ffffff;
    --primary-btn-border-color-hover: #c64815;
    
    /* Secondary Button */
    --secondary-btn-bg: #3B454A;
    --secondary-btn-color: #ffffff;
    --secondary-btn-border-color: #3B454A;
    
    /* Secondary Button Hover */
    --secondary-btn-bg-hover: #242B2E;
    --secondary-btn-color-hover: #ffffff;
    --secondary-btn-border-color-hover: #242B2E;
 
    /* Button One */
    --button-one-bg: #E85E26;
    --button-one-color: #ffffff;
    --button-one-border-color: #E85E26;

    /* Button One Hover */
    --button-one-bg-hover: #c64815;
    --button-one-color-hover: #ffffff;
    --button-one-border-color-hover: #c64815;

    /* Button Two */
    --button-two-bg: #3B454A;
    --button-two-color: #ffffff;
    --button-two-border-color: #3B454A;

    /* Button Two Hover */
    --button-two-bg-hover: #242B2E;
    --button-two-color-hover: #ffffff;
    --button-two-border-color-hover: #242B2E;

    /* Button Three */
    --button-three-bg: #000000;
    --button-three-color: #ffffff;
    --button-three-border-color: #000000;

    /* Button Three Hover */
    --button-three-bg-hover: #3B454A;
    --button-three-color-hover: #ffffff;
    --button-three-border-color-hover: #3B454A;

    /* Button Four */
    --button-four-bg: #01579b;
    --button-four-color: #ffffff;
    --button-four-border-color: #01579b;

    /* Button Four Hover */
    --button-four-bg-hover: #014f8c;
    --button-four-color-hover: #ffffff;
    --button-four-border-color-hover: #014f8c;
}
/* Mulish - Variable */
@font-face {
  font-family: Mulish;
  src: url('https://files.clinchtalent.com/15958981ec820452196eb8ddee333b33/ed492977d8f807ffa94a9f714402bde4/Mulish/Mulish-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}
/* Mulish Italic - Variable */
@font-face {
  font-family: MulishItalic;
  src: url('https://files.clinchtalent.com/15958981ec820452196eb8ddee333b33/ed492977d8f807ffa94a9f714402bde4/Mulish/Mulish-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

body {
  background:#F3F6F7;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size:1rem;
  letter-spacing: 0.33px;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, a.nav-link {
  font-family: Mulish, sans-serif;
}
h1, h2, h3, h4 {
  font-weight: 900;
}

a,
a:active,
a:hover,
a:visited {
  color: #3b454a;
}
p a,
span a {
  color: #519BC8;
}

/*** Buttons ***/

.btn, button, a.button {
	font-weight: 600;
    font-family: ff-good-web-pro-narrow, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, Impact, Arial;
	text-transform: inherit;
	line-height: 1.5;
	padding: var(--input-padding);
	-webkit-transition: background .25s linear;
	-moz-transition: background .25s linear;
	-o-transition: background .25s linear;
	transition: background .25s linear;
	border-radius: var(--btn-border-radius) !important;
	font-size: 15px;
	text-transform: uppercase;
}
.btn-primary {
	background: var(--primary-btn-bg);
	color: var(--primary-btn-color);
	border: 1px solid var(--primary-btn-border-color);
}
.btn-primary:hover, .btn-primary:first-child:active, .btn-primary:focus-visible {
	background: var(--primary-btn-bg-hover);
	color: var(--primary-btn-color-hover);
	border: 1px solid var(--primary-btn-border-color-hover);
}
.btn-primary:visited, .btn-primary:active, .btn-primary:focus {
	background: var(--primary-btn-bg);
	color: var(--primary-btn-color);
	border: 1px solid var(--primary-btn-border-color);
}
.btn-success {
	background: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
	border: 1px solid var(--secondary-btn-border-color);
}
.btn-success:hover {
	background: var(--secondary-btn-bg-hover);
	color: var(--secondary-btn-color-hover);
	border: 1px solid var(--secondary-btn-border-color-hover);
}
.btn-success:visited, .btn-success:active, .btn-success:focus {
	background: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
	border: 1px solid var(--secondary-btn-border-color);
}
.btn-info {
	background: var(--primary-btn-bg);
	color: var(--primary-btn-color);
	border: 1px solid var(--primary-btn-border-color);
}
.btn-info:hover, .btn-info:visited, .btn-info:active, .btn-info:focus {
	background: var(--primary-btn-bg-hover);
	color: var(--primary-btn-color-hover);
	border: 1px solid var(--primary-btn-border-color-hover);
}
/* Candidate setting buttons */

.label {
	background: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
	border: 1px solid var(--secondary-btn-bg);
	padding: 4px 12px;
	font-size: 13px !important;
	margin-bottom: 4px;
	display: inline-block;
	border-radius: var(--btn-border-radius);
}
/* custom buttons */

a.button.button1 {
	background: var(--button-one-bg);
	color: var(--button-one-color);
	border: 1px solid var(--button-one-border-color);
}
a.button.button1:hover {
	background: var(--button-one-bg-hover);
	color: var(--button-one-color-hover);
	border: 1px solid var(--button-one-border-color-hover);
}
a.button.button2 {
	background: var(--button-two-bg);
	color: var(--button-two-color);
	border: 1px solid var(--button-two-border-color);
}
a.button.button2:hover {
	background: var(--button-two-bg-hover);
	color: var(--button-two-color-hover);
	border: 1px solid var(--button-two-border-color-hover);
}
a.button.button3 {
	background: var(--button-three-bg);
	color: var(--button-three-color);
	border: 1px solid var(--button-three-border-color);
}
a.button.button3:hover {
	background: var(--button-three-bg-hover);
	color: var(--button-three-color-hover);
	border: 1px solid var(--button-three-border-color-hover);
}
a.button.button4 {
	background: var(--button-four-bg);
	color: var(--button-four-color);
	border: 0px solid var(--button-four-border-color);
	padding: 0px;
}
/*a.button.button4:hover {
  background:var(--button-four-bg);
  color:var(--button-four-color);
  border:0px solid var(--button-four-border-color-hover);
  padding:0px;
}*/
.input-group input, .input-group-btn button {
	height: auto !important;
	padding: var(--input-padding) !important;
}
.input-group .btn-primary {
    margin-left: 10px;
}

/* COOKIE MODAL BUTTONS */

.consent-modal .btn {
  padding: 10px 20px;
  font-weight: 600;
}

/* I accept */
.consent-modal .consent-agree {
    background-color: #E85E26;
    color: #ffffff;
    letter-spacing: 0.05rem;
    border-radius: 5px;
    height: 50px;
    border: 1px solid #E85E26;
    margin-right: 15px;
    white-space: nowrap;
}
.consent-modal .consent-agree:hover {
    background-color: #c64815;
    border: 1px solid #c64815;
}
/* manage cookies */
#manage_cookie_preferences, .consent-reject {
    align-items: center;
    color: #ffffff;
    letter-spacing: 0.1rem;
    border-radius: 5px;
    height: 50px;
}

#manage_cookie_preferences:hover, .consent-reject:hover {
  background-color: #242B2E;
}
#manage_cookie_preferences, .consent-reject {
    background-color: #242B2E;
    border: 1px solid #242B2E;
}
/* save cookie prefs*/
#consent_save.btn.consent-agree {
    background-color: #E85E26;
    color: #ffffff;
    letter-spacing: 0.05rem;
    border-radius: 5px;
    height: 50px;
    border: 1px solid #E85E26;
    margin-right: 15px;
    white-space: nowrap;
}
#consent_save.btn.consent-agree:hover {
    background-color: #c64815;
    border: 1px solid #c64815;
}

/* ================ FOOTER ================ */
.footer {
    padding-bottom: 2rem;
    background: #242b2e;
    color: #fff ! important;
}

.footer li {
    list-style: none;
}

.footer-container {
    padding-top: 2.5rem;
    max-width: 70%;
}

.footer .footer-links-title {
    font-weight: 900;
    font-size: .75rem;
    color: #82939c;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.footer .footer-breach-title {
    color: #fff !important;
    font-weight: 900;
    font-size: .875rem;
    line-height: 1.2;
    margin-top: 1.8rem;
    margin-bottom: 0.875rem;
}

.footer-breach-contact {
    display: flex;
}

.footer .footer-breach-icon {
    display: inline-block;
    vertical-align: middle;
    background-color: #3b454a !important;
}

.footer .footer-breach-icon:after {
    content: "";
    vertical-align: middle;
    display: inline-block;
    opacity: .6;
    width: 34px;
    height: 34px;
    background-image: url(https://s3.us-east-1.amazonaws.com/rec-marketing-usea1-uploads/public/uploads/4ad2b985cd778667fd81dc28e80a75f9/images/files/f7904d02c1b144f2d9dc5d18c62bde0f/original/lightning-bolt.png?1664998720);
    background-size: 21px 21px;
    background-position: center center;
    background-repeat: no-repeat;
}

.footer a.footer-breach-button {
    padding: 7px 13px 7px 10px;
    border-radius: 0 2px 2px 0;
    
    -webkit-border-radius: 0 2px 2px 0;
    background-color: #e85e26 !important;
    border: none !important;
    color: #fff !important;
    font-size: .8125rem;
    font-weight: 500;
}

.footer a.footer-link-each {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fefefe;
    margin-bottom: 1.0625rem;
}

.footer a.footer-link-each i::before {
    font-size: 0.8rem;
}

.footer a.footer-link-social {
    font-weight: 500;
    color: #82939c;
    margin-bottom: 1.0625rem;
    margin-right: 0.9rem;
}

.footer .footer-logo {
    width: 150px;
    margin-bottom: 1.5625rem;
}

.footer .footer-link-social i {
    font-size: 1.4em;
    display: inline-block;
}

.footer .legal-footer-wrapper {
    /* max-width: 70%; */
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, .25);
    background: #242b2e;
    color: #fff ! important;
}

.footer .legal-footer-container {
    max-width: 65%;
}

.footer .legal-footer-copyright {
    /* font-size: .875rem; */
    margin-right: 2rem;
    color: #82939c;
}

.footer .legal-footer-link-each a {
    color: #82939c;
    font-size: .875rem;
    margin: 0 5px;
}

/* JOB SEARCH PAGE - BADGES */
.job-search-filter .badge {
    background-color: #E85E26;
}
/* JOB SEARCH PAGE - PAGINATION */
.pagination .page-link {
    color: #E85E26 !important;
    font-weight: 600;
}
.pagination .page-link:hover {
    background-color: #DEE5E8;
}
.pagination .active .page-link {
    background-color: #E85E26 !important;
    border-color: #E85E26 !important;
    color: #fff !important;
}

/* =====================----------------------- CONTACT LOCATIONS -----------------================================== */
.r7-contact-location-container .page-row-container {
    padding: 0;
}

#r7_contact_locations [class^="r7-icon-"]::after,
#r7_contact_locations [class^="r7-icon-"]::before {
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
#r7_contact_locations .r7-icon-external-link:after {
    font: var(--fa-font-solid);
    content: "\f08e";
}
#r7_contact_locations .grid-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}
@media print, screen and (min-width: 40em) {
    #r7_contact_locations .grid-container {
        padding-right: 1.875rem;
        padding-left: 1.875rem;
    }
}
#r7_contact_locations .grid-x {
    display: -ms-flexbox;
    display: flex;

    flex-flow: row wrap;
}
#r7_contact_locations .cell {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    min-height: 0;
    min-width: 0;
    width: 100%;
}
@media print, screen and (min-width: 40em) {
    #r7_contact_locations .grid-x > .medium-12 {
        flex-basis: auto;
    }
}
@media print, screen and (min-width: 40em) {
    #r7_contact_locations .grid-x > .medium-12 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    #r7_contact_locations .grid-x > .medium-12 {
        width: 100%;
    }
}
#r7_contact_locations .grid-padding-x > .cell {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
}
@media print, screen and (min-width: 40em) {
    #r7_contact_locations .grid-padding-x > .cell {
        padding-right: 1.875rem;
        padding-left: 1.875rem;
    }
}
#r7_contact_locations .tabs {
    margin: 0;
    border: 1px solid #e6e6e6;
    background: #fefefe;
    list-style-type: none;
}
#r7_contact_locations .tabs::after,
#r7_contact_locations .tabs::before {
    display: table;
    content: " ";

    flex-basis: 0;
    -ms-flex-order: 1;
    order: 1;
}
#r7_contact_locations .tabs::after {
    clear: both;
}
#r7_contact_locations .tabs-title {
    float: left;
}
#r7_contact_locations .tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 0.75rem;
    line-height: 1;
    color: #1779ba;
}
#r7_contact_locations .tabs-title > a:hover {
    background: #fefefe;
    color: #1468a0;
}
#r7_contact_locations .tabs-title > a:focus,
#r7_contact_locations .tabs-title > a[aria-selected="true"] {
    background: #e6e6e6;
    color: #1779ba;
}
#r7_contact_locations .tabs-content {
    border: 1px solid #e6e6e6;
    border-top: 0;
    background: #fefefe;
    color: #595959;
    transition: all 0.5s ease;
}
#r7_contact_locations .tabs-panel {
    display: none;
    padding: 1rem;
}
#r7_contact_locations .tabs-panel.is-active {
    display: block;
}
#r7_contact_locations .align-center {
    -ms-flex-pack: center;
    justify-content: center;
}
#r7_contact_locations a.r7-icon-external-link:after {
    margin-left: 0.25rem;
    font-size: 0.6rem;
    vertical-align: middle;
}

#r7_contact_locations .tabsContainer {
    background-color: #fefefe;
    width: 100%;
}
#r7_contact_locations .tabs,
#r7_contact_locations .tabs-content {
    background: 0 0;
    padding-top: 0;
    border: none;
}
#r7_contact_locations .tabs a,
#r7_contact_locations .tabs-content a {
    color: #519bc8;
    position: relative;
}
#r7_contact_locations .tabs-content a[href^="tel:"] {
    color: #595959;
}
#r7_contact_locations .tabs li.tabs-title {
    font-size: 0.75rem;
    list-style-type: none;
}
#r7_contact_locations .tabs li.tabs-title a {
    color: #3b454a;
    padding-bottom: 1rem;
    padding-top: 1.5rem;
    text-align: center;
}
#r7_contact_locations .tabs li.tabs-title a:before {
    background-color: #519bc8;
}
#r7_contact_locations .tabs li.tabs-title a:hover {
    color: #519bc8;
}
#r7_contact_locations .tabs li.tabs-title a:focus {
    background-color: #fefefe;
    color: #519bc8;
}
#r7_contact_locations .tabs li.tabs-title a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    display: none;
}
#r7_contact_locations .tabs li.tabs-title.is-active a {
    background-color: #fefefe;
    color: #e85e26;
}
#r7_contact_locations .tabs-content {
    padding-bottom: 5rem;
}
#r7_contact_locations .contact__offices {
    background-image: url(https://res.cloudinary.com/spiralyze/image/upload/f_auto/RAPID7/1501%20Contact%20Page%20-%20Redesign/world_background.jpg);
    background-size: cover;
    background-position: no-repeat;
    background-repeat: center;
    text-align: center;
    padding: 35px 0;
}
@media screen and (min-width: 64em) {
    #r7_contact_locations .contact__offices {
        background-image: url(https://res.cloudinary.com/spiralyze/image/upload/f_auto/RAPID7/1501%20Contact%20Page%20-%20Redesign/world_background.jpg);
        padding: 74px 0;
    }
}
#r7_contact_locations .contact__offices-icon {
    width: 60px;
    height: 60px;
    background: url(https://res.cloudinary.com/spiralyze/image/upload/v1637739002/RAPID7/1501%20Contact%20Page%20-%20Redesign/bx_bx-building.svg);
    background-size: cover;
    margin: auto;
}
@media screen and (min-width: 64em) {
    #r7_contact_locations .contact__offices-icon {
        width: 86px;
        height: 86px;
    }
}
#r7_contact_locations .contact__offices-title {
    font-family: Mulish, sans-serif;
    font-weight: 500;
    font-size: 2.1875rem;
    line-height: 1;
    color: #fefefe;
    margin: 20px 0;
}
@media screen and (min-width: 64em) {
    #r7_contact_locations .contact__offices-title {
        margin: 40px 0 50px 0;
        font-size: 3.4375rem;
    }
}
#r7_contact_locations .contact__offices .tabsContainer {
    background: 0 0;
    margin: 0 auto 20px;
}
#r7_contact_locations .contact__offices .tabsContainer ul.tabs {
    display: inline-block;
}
#r7_contact_locations .contact__offices .tabsContainer ul.tabs li.tabs-title {
    float: none;
}
@media screen and (min-width: 64em) {
    #r7_contact_locations .contact__offices .tabsContainer ul.tabs li.tabs-title {
        float: left;
    }
}
#r7_contact_locations .contact__offices .tabsContainer ul.tabs li.tabs-title:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fefefe;
    border-radius: 3px;
}
#r7_contact_locations .contact__offices .tabsContainer ul.tabs li.tabs-title.is-active a {
    background-color: #e85e26 !important;
    color: #fff;
    border-radius: 100px;
}
#r7_contact_locations .contact__offices .tabsContainer ul.tabs li.tabs-title.is-active a[aria-selected="true"] {
    background-color: #e85e26 !important;
    color: #fff;
    border-radius: 100px;
}
#r7_contact_locations .contact__offices .tabsContainer ul.tabs li.tabs-title a {
    min-width: 7.5625rem;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px;
}
@media screen and (min-width: 64em) {
    #r7_contact_locations .contact__offices .tabsContainer ul.tabs li.tabs-title a {
        font-size: 1rem;
        padding: 12px 14px;
    }
}
#r7_contact_locations .contact__offices .tabsContainer ul.tabs li.tabs-title a:hover {
    background: rgba(232,94,38,.2) !important;
    color: #3b454a;
    text-decoration: none
}
/* #r7_contact_locations .contact__offices .tabsContainer ul.tabs li.tabs-title > a[aria-selected="true"] {
    background-color: transparent;
} */
#r7_contact_locations .contact__offices .tabsContent .tabs-content {
    background: 0 0;
    padding-top: 0;
}
#r7_contact_locations .contact__offices .tabsContent .tabs-content p {
    color: #595959;
    font-size: 0.75rem;
    line-height: 1.5rem;
}
#r7_contact_locations .contact__offices .tabsContent .location {
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #3b454a;
    position: relative;
    min-height: 300px;
    width: 16.25rem;
    margin: 0 23px 46px;
}
#r7_contact_locations .contact__offices .tabsContent .location__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 76.5rem;
    margin: auto auto;
    -ms-flex-pack: center;
    justify-content: center;
}
#r7_contact_locations .contact__offices .tabsContent .location__main {
    background: #242b2e;
    transition: background-color 0.2s ease;
    height: 100%;
    text-align: left;
    padding: 1.25rem 2.375rem 1.25rem 1.25rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#r7_contact_locations .contact__offices .tabsContent .location__main h6 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.375rem;
}
#r7_contact_locations .contact__offices .tabsContent .location__main *,
#r7_contact_locations .contact__offices .tabsContent .location__main a,
#r7_contact_locations .contact__offices .tabsContent .location__main p {
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.25;
    font-weight: 600;
}
#r7_contact_locations .contact__offices .tabsContent .location__bottom a {
    font-size: 1rem;
}
#r7_contact_locations .contact__offices .tabsContent .location__bottom a:hover {
    text-decoration: underline;
}
#r7_contact_locations .contact__offices .tabsContent .location__fax,
#r7_contact_locations .contact__offices .tabsContent .location__tel {
    font-size: 1rem;
}
#r7_contact_locations .contact__offices .tabsContent .location__fax {
    min-height: 1.25rem;
    padding-top: 4px;
}
#r7_contact_locations .contact__offices .tabsContent .location__directions {
    height: 1rem;
    margin-top: 1.5rem;
    padding-left: 20px;
    background: url(https://s3.us-east-1.amazonaws.com/rec-marketing-usea1-uploads/public/uploads/4ad2b985cd778667fd81dc28e80a75f9/images/files/8a6314661bd8621e4c9307f0041ca179/original/icon-map.png?1666203216);
    background-repeat: no-repeat;
    background-size: 9px 13px;
    background-position: left center;
}
#r7_contact_locations .contact__offices .tabsContent .location__country {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 38px;
    background: #3b454a;
    color: #b1c1c9;
}
#r7_contact_locations .contact__offices .tabsContent .location__country span {
    position: absolute;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: 1px;
    right: -1px;
    bottom: 15px;
    font-size: 1.75rem;
    font-weight: 700;
    white-space: nowrap;
}
/* STICKY NAV DROPDOWN SHOW ON HOVER *DESKTOP ONLY* */
@media all and (min-width: 992px) {
	.navbar .nav-item .sticky-nav-dropdown-menu { 
        display: none; 
    }
	.navbar .nav-item:hover .nav-link.sticky-nav-links {
      
    }
	.navbar .nav-item:hover .sticky-nav-dropdown-menu { 
        display: block; 
    }
	.navbar .nav-item .sticky-nav-dropdown-menu { 
        margin-top:0; 
    }
    .r7-sticky-nav .navbar-nav .sticky-nav-dropdown.show .dropdown-toggle::after {
        font: var(--fa-font-solid);
        content: "\f107" !important;
    }
}

/* JOB DESCRIPTION <LI> LIST STYLE */
.r7-job-description li:not(.job-component-icon-and-text) {
    list-style: disc;
}
/* BORDER RADIUS UTILITY CLASSES */
.r7-rounded-6 img {
    border-radius: 6px;
}
.r7-rounded-6 .block-image-cover {
    border-radius: 6px;
}
.r7-rounded-12 img {
    border-radius: 10px;
}
.r7-rounded-12 .block-image-cover {
    border-radius: 10px;
}
.r7-rounded-18 img {
    border-radius: 20px;
}
.r7-rounded-18 .block-image-cover {
    border-radius: 20px;
}
/* cookie consent modal - close button fix */
button.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z"/></svg>') center/1em auto no-repeat;
    border: 0;
    border-radius: 0.375rem;
    opacity: 0.5;
}
/* recently posted jobs list styling */
.r7-recent-jobs .jobs-list .job {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 3rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    box-shadow: 0px 8px 8px rgb(0 0 0 / 16%);
    border-radius: 12px;
}
.r7-recent-jobs .jobs-list .job-field.job-title {
    color: #e85e26;
    font-weight: 900;
    letter-spacing: inherit;
}
.r7-recent-jobs .jobs-list .job-field.job-title:hover {
    text-decoration: underline;
}
.r7-recent-jobs .jobs-list .job-field.job-location {
    line-height: 3;
    font-weight: 600;
    letter-spacing: 0.05rem;
}
.r7-recent-jobs .jobs-list .job-summary {
    color: #3b454a;
    font-weight: 400;
    letter-spacing: 0.04rem;
}
/* job page cta item background color */
.selectize-control.multi .selectize-input > div {
    background-color: #3b454a;
}
.form-template-field-job-alert .selectize-input {
    z-index: 0;
}
/* ----- r7 typeface changes ----- */
/* jobs list - job titles */
.block-jobs .job h3.job-title {
    font-size: 19px;
    color: #006EC5;
}
.block-jobs .job h3.job-title:hover {
    text-decoration: underline;
}
/* jobs list - job location */
.block-jobs .job span.job-location {
    color: #3B454A;
}
/* headings */
h1 {
  font-size: 42px;
  line-height: 54px;
}
h2 {
  font-size: 36px;
  line-height: 45px;
}
h3 {
  font-size: 28px;
  line-height: 36px;
}
h4 {
  font-size: 22px;
  line-height: 28px;
}
/* paragraph text */
p {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 2.188rem;
}
/* location page - carousel */
.carousel-loc-img {
    width: 540px;
    height: 400px;
    object-fit: cover !important;
    border-radius: 10px;
}
.carousel-img-group {
  display: flex;
  justify-content: space-between;
}
.carousel-control-prev,
.carousel-control-next {
  width: 7%;
  opacity: 1;
}
span.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
  width: 25px;
  height: 25px;
}
span.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
  width: 25px;
  height: 25px;
}
/* job listing page - orange bar after job title */
.block-job-description ul.job-component-details::before {
    content: url('https://s3.us-east-1.amazonaws.com/rec-marketing-usea1-uploads/public/uploads/4ad2b985cd778667fd81dc28e80a75f9/images/files/c28d92e785b851b1fef56fe0ad7fd923/medium/orange-header-bar.png?1668097136');
    position: relative;
    top: -10px;
}

/* blue hyperlink utility class */
.blue-links a,
.blue-links a:active,
.blue-links a:visited,
.blue-links a:focus,
.blue-links a:hover {
  color: #006EC5 !important;
}

.dropdown-menu .btn-primary,  
.dropdown-menu .btn-primary:hover, 
.dropdown-menu .btn-primary:active,
.dropdown-menu .btn-primary:focus,
.dropdown-menu .btn-primary:visited {
  background-color: #e85e26;
  border-color: transparent;
  color: #fff;
  padding: 8px 12px 6px 12px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 100px;
  margin: 0.5rem 1.5rem;
}

.dropdown-footer-subtitle {
  color: #82939c;
  font-size: .75rem;
  font-weight: 400;
  margin-top: 0.25rem;
  width: 180px;
}

.dropdown-menu .border-bottom {
  border-bottom: 1px solid #d5dee3;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.dropdown-menu .container {
  display: block;
}

.dropdown-footer-title {
  font-weight: 800;
  font-size: 1rem;
}

.padding-9 .dropdown-item {
  padding: 9px!important;
}

.padding-9 .btn-primary,  
.padding-9 .btn-primary:hover, 
.padding-9 .btn-primary:active,
.padding-9 .btn-primary:focus,
.padding-9 .btn-primary:visited {
  margin: 0.5rem 1rem!important;
}

.margin-0 {
  margin: 0; 
}

.row.margin-0.padding-15 {
  padding-bottom: 15px;
}

/* accordion title*/
.faq-accordion .card-header .accordion-button.btn {
    font-size: 19px;
    color: #3b454a;
    text-transform: capitalize;
    text-decoration: underline;
}

@media (max-width: 768px) {
  .page-body.page.not-editing {
    padding-top: 50px;
  }
}
.legal-footer-links-inner {
  display: block;
}

.legal-footer-link-each {
  width: auto;
}

.footer .legal-footer-copyright {
  width: auto;
}

.accordion-item .accordion-button {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  font-size: 19px;
  color: #3b454a;
  text-transform: capitalize;
}

/* MAKE SIX COLUMN ROW --> FIVE COLUMN ROW */
@media (min-width: 768px) {
  .five-col-row-wrapper .col-md-2 {
      width: 20%;
  }  
}
.five-col-row-wrapper .col-md-2:last-of-type {
    display: none;
}
.posts-cards h5.posts-card-title {
    color: black;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 2.188rem;
}

/* Map height aligmnet*/
.map-height .block-map .google-map {
    height: 300px;
}
/* MAKE SIX COLUMN ROW --> FIVE COLUMN ROW */
@media (min-width: 768px) {
  .five-col-row-wrapper .col-md-2 {
      width: 20%;
  }  
}
.five-col-row-wrapper .col-md-2:last-of-type {
    display: none;
}
.posts-cards h5.posts-card-title {
    color: black;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 2.188rem;
}

/*Blog Updates*/
span.post-tag {
    background-color: #e85e26 !important;
    padding: 10px 15px;
    font-family: Mulish, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}


/* ==== CHATBOT SPECIFIC STYLES =============*/
.chatbot-header-name {
    color: #fff;    
}

.navbar-brand-logo {
    width: 100%;
    max-width: 135px;
}
.btn.btn-nav {
    background: #e85e26;
    border: 1px solid #e85e26;
    color: #ffffff;
    padding: 7px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 15px !important;
    font-weight: 600;
    font-family: ff-good-web-pro-narrow, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, Impact, Arial;
}
.dark-hero-gradient-blue {
  background-image: url('https://d25wby5c7p9100.cloudfront.net/public/uploads/4ad2b985cd778667fd81dc28e80a75f9/images/files/6453ae754670b31d3f289446cb9f93fd/medium/dark-hero-gradient-blue.jpg?1744925796');
}

.dark-hero-gradient-grey {
  background-image: url('https://d25wby5c7p9100.cloudfront.net/public/uploads/4ad2b985cd778667fd81dc28e80a75f9/images/files/e15f12808e0e4b82f30c3437e8b2d893/medium/dark-hero-gradient-grey.jpg?1744925796');
}

.dark-hero-gradient-orange {
  background-image: url('https://d25wby5c7p9100.cloudfront.net/public/uploads/4ad2b985cd778667fd81dc28e80a75f9/images/files/606be5c68aee4514e5c22de11260ccd2/medium/dark-hero-gradient-orange.jpg?1744925796');
}

.light-hero-gradient-blue {
  background-image: url('https://d25wby5c7p9100.cloudfront.net/public/uploads/4ad2b985cd778667fd81dc28e80a75f9/images/files/3b99908e2063d37785fdc967daf9e74c/medium/light-hero-gradient-blue.jpg?1744925796');
}

.light-hero-gradient-grey {
  background-image: url('https://d25wby5c7p9100.cloudfront.net/public/uploads/4ad2b985cd778667fd81dc28e80a75f9/images/files/d4995309571dd0938569077347684c2a/medium/light-hero-gradient-grey.jpg?1744925796');
}

.light-hero-gradient-orange {
  background-image: url('https://d25wby5c7p9100.cloudfront.net/public/uploads/4ad2b985cd778667fd81dc28e80a75f9/images/files/5ef3e94aa314a0d44f7ac247fc3eef58/medium/light-hero-gradient-orange.jpg?1744925796');
}
.dark-hero-gradient-blue, .dark-hero-gradient-grey, .dark-hero-gradient-orange, .light-hero-gradient-blue, .light-hero-gradient-grey, .light-hero-gradient-orange {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.navbar .nav-link {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    font-family: ff-good-web-pro-narrow, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, Impact, Arial;
}
li.nav-item {
    padding: 3px 10px;
}
.nav-item {
	margin: 0px;
	margin-top: auto !important;
	margin-bottom: auto !important;
}
/** new navigation **/
.top-nav {
  background: #ffffff !important;
  border-radius: 16px 16px 0px 0px;
  padding: 0px 16px;
}
.bottom-nav {
  background: #ffffff !important;
  border-radius: 0px 0px 16px 16px;
  padding: 0px 16px;
}
.top-nav .container {
  background: #ffffff;
}
div#page_row_0 {
  padding-top: 150px !important;
}
.bg-transparent {
  background-color: transparent;
}
h5.text-size {
  font-size: 26px;
  line-height: 28.5px;
}
header p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgb(59, 69, 79);
}
header .text-primary {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2rem;
  letter-spacing: .04em;
  color: #e85e26 !important;
  text-transform: uppercase;
}
.text-gray-roman-silver {
  color: hsl(201, 12%, 56%);
}
.p-10 {
  padding: 10px;
}
.px-10px {
  padding-left: 10px;
  padding-right: 10px;
}
.py-6px {
  padding-top: 6px;
  padding-bottom: 6px;
}
.bg-nav-highlighted-glassy {
  background-color: rgba(237, 136, 95, .08);
}
.bg-boredr-nav-highlighted-glassy {
  border: 1px solid rgba(237, 94, 38, .2);
}
.header-icon-img {
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 10px;
}
.rounded-border {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  --webkit-border-bottom-left-radius: 16px;
  --webkit-border-bottom-right-radius: 16px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.megamenu_dropdown {
  padding: 1.25rem !important;
}
.megamenu_dropdown a {
  color: hsl(200, 11%, 26%);
  align-items: center;
}
.megamenu_dropdown a:hover {
  background-color: rgba(242, 240, 239, .6);
  color: #000;
}
.megamenu_dropdown a:hover>small.text-muted {
  color: #000 !important;
}
.z-10 {
  z-index: 10;
}
.megamenu-orange-badge {
  background-color: #e85e26;
  font-size: 10px;
  line-height: 10px;
  border-radius: 10px;
  color: #fff;
  padding: 6px 10px;
}
.megamenu-blue-badge {
  background-color: hsl( 207, 87%, 44%);
  font-size: 10px;
  line-height: 10px;
  border-radius: 10px;
  color: #fff;
  padding: 6px 10px;
}
.megamenu_dropdown li {
  position: relative;
}
.megamenu_dropdown li a::after {
  content: '';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 8px;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.megamenu_dropdown li:hover a::after {
  content: '\f061';
  opacity: 1;
  color: #e85e26;
}
.relative {
  position: relative;
}
.overflow-hidden {
  overflow: hidden;
}
.rounded-2xl {
  border-radius: 1rem;
}
.p-30px {
  padding: 30px;
}
.h-60 {
  height: 60%;
}
.top-0 {
  top: 0;
}
.inset-x-0 {
  left: 0;
  right: 0;
}
.mt-40 {
  margin-top: -40%;
}
.font-semibold {
  font-weight: 600;
}
.text-28px {
  font-size: 28px;
}
.mb-12px {
  margin-bottom: 12px;
}
.mb-30px {
  margin-bottom: 30px;
}
.top-nav {
  border-bottom: 1px solid hsl(198, 18%, 89%);
}
#mainNav li.nav-item:hover {
  border-bottom: 4px solid #000;
}
#mainNav li.nav-item {
  border-bottom: 4px solid #Fff;
}
#mainNav a.nav-link {
  text-decoration: none;
}
@media (max-width: 768px) {
  .top-nav {
    padding: 1rem;
  }
}
/* Side panels */
.side-panel {
	box-shadow: none;
	padding: 40px 25px;
	margin-bottom: 20px;
	border-radius: 16px;
    background:#ffffff;
}
.side-panel .job-title {
	font-size: 22px !important;
	font-weight: 500 !important;
	margin-bottom: 10px !important;
}
.side-panel .job-field {
	color: #484848;
	font-size: 14px;
	font-weight: 600;
}
.side-panel h3 {
	font-size: 24px;
}
.side-panel .job-summary {
	margin-top: 2px;
	padding-top: 2px;
}

.map300 .block-map .google-map {
  height: 300px;
}