/* eh-chrome.css — tokens, utilities, header, mega-menu, footer + RWD */
:root {
    /* Colors */
    --color-1: #191A15;
    --color-2: #2B2B2B;
    --color-3: #424242;
    --color-4: #EFEFEF;
    --color-5: #EAEAEA;
    --color-6: #F9F9F9;
    --color-7: #454545;
    --color-8: #CBE5FF;
    --color-9: #D8E9FD;
    --color-10: #F5FAFF;
    --color-11: #1A77E1;
    --color-12: #919191;
    --color-13: #0A0A0A;
    --color-black: #000;
    --color-white: #FFF;
    --btn-color1: #414651;
    --btn-blackBG: #1E1006;

    /* Typography */
    --font-family-inter: 'Inter', sans-serif;
    --h1-size: 3.375rem;
    --h2-size: 3.125rem;
    --h3-size: 2rem;
    --h4-size: 1.5rem;
    --h5-size: 1.25rem;
    --h6-size: 1rem;
    --heading-weight: 700;


    --font-size-small: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.125rem;
    --font-size-lg: 1.375rem;
    --font-size-22: 1.5rem;
    --font-size-xl: 1.625rem;
    --font-size-xxl: 2.125rem;
    --font-size-18: 1.125rem;
    --fs14: 0.875rem;
    --fs56: 3.5rem;
    --fs64: 4rem;


    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi-medium: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Border */
    --border-1: 1px solid #D9D9D9;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --input-border: 1px solid rgba(17, 17, 19, 0.20);
    --btn-border: 1px solid #D5D7DA;
    --btn-border-width: 2px;
    --border-radius-48: 48px;

    --Line-height68: 136%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-inter);
}

html {
    scroll-behavior: smooth;
}

/* Pre defined classes */
.heading-1 {
    font-size: var(--h1-size);
    color: var(--color-2);
    font-weight: var(--heading-weight);
    line-height: var(--Line-height68);
}

.heading-2 {
    font-size: var(--h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--Line-height68);
}

.heading-3 {
    font-size: var(--h3-size);
    font-weight: var(--heading-weight);
}

.heading-4 {
    font-size: var(--h4-size);
    font-weight: var(--heading-weight);
}

.heading-5 {
    font-size: var(--h5-size);
    font-weight: var(--heading-weight);
}

.heading-6 {
    font-size: var(--h6-size);
    font-weight: var(--heading-weight);
}

.my-container {
    max-width: 1260px;
}

.Fw-400 {
    font-weight: var(--font-weight-regular) !important;
}

.Fw-500 {
    font-weight: var(--font-weight-medium) !important;
}

.Fw-600 {
    font-weight: var(--font-weight-semi-medium) !important;
}

.Fw-700 {
    font-weight: var(--font-weight-bold) !important;
}

.FM-Inter {
    font-family: var(--font-family-inter) !important;
}

.Fs14 {
    font-size: var(--fs14) !important;
}

.Fs22 {
    font-size: var(--font-size-lg) !important;
    line-height: 154.545% !important;
}

.Fs56 {
    font-size: var(--fs56) !important;
    line-height: 114.286% !important;
    letter-spacing: -2.24px !important;
}

.FsLarge {
    font-size: var(--fs64) !important;
    line-height: 118.75% !important;
    letter-spacing: -2.56px;
}

.my-btn {
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: normal;
    margin: 0;
    border: none;
    box-shadow: none;
    outline: 0;
}

.my-btn:hover,
.my-btn:focus,
.my-btn:active {
    border: none;
    outline: 0;
}

.btn-light {
    border: var(--btn-border);
    background-color: var(--color-white);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    border: var(--btn-border) !important;
    background-color: #D9D9D9 !important;
}

.btn-blackBg {
    color: var(--color-white);
    border: 2px solid transparent;
    background:
        linear-gradient(var(--btn-blackBG), var(--btn-blackBG)) padding-box,
        linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box;
}

.btn-blackBg:hover,
.btn-blackBg:active,
.btn-blackBg:focus {
    color: var(--color-white) !important;
    border: 2px solid transparent !important;
    background:
        linear-gradient(#392727, #392727) padding-box,
        linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box !important;
}

.btn-glow {
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 12px rgba(123, 72, 254, 0.4),
        0 0 12px rgba(254, 140, 178, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.25) !important;
}


.my-paragraph {
    font-size: var(--font-size-base);
    color: #000;
    font-weight: 400;
    line-height: normal;
}

.Para {
    font-size: var(--font-size-sm);
}

.P140 {
    padding-top: 140px;
    padding-bottom: 140px;
}

.P8080 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.P7098 {
    padding-top: 70px;
    padding-bottom: 98px;
}

.P3080 {
    padding-top: 30px;
    padding-bottom: 80px;
}

.P4860 {
    padding-top: 70px;
    padding-bottom: 60px;
}

.P6060 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.gap-12 {
    gap: 12px;
}

.gap-20 {
    gap: 20px;
}

.Color-white {
    color: var(--color-white) !important;
}

.Color-black {
    color: var(--color-black) !important;
}

.Color-1 {
    color: var(--color-1) !important;
}

.Color-2 {
    color: var(--color-2) !important;
}

.Color-3 {
    color: var(--color-3) !important;
}

.Color-4 {
    color: var(--color-4) !important;
}

.Color-5 {
    color: var(--color-5) !important;
}

.Color-6 {
    color: var(--color-6) !important;
}

.Color-7 {
    color: var(--color-7) !important;
}

.Color-8 {
    color: var(--color-8) !important;
}

.Color-9 {
    color: var(--color-9) !important;
}

.Color-10 {
    color: var(--color-10) !important;
}

.Color-11 {
    color: var(--color-11) !important;
}

.Color-12 {
    color: var(--color-12) !important;
}

.BG-white {
    background: var(--color-white);
}

.BG-1 {
    background: linear-gradient(135deg, #5f5fff, #b57cff, #ff9acb);
}

.BG-2 {
    background: var(--color-8);
}

.Letter-space-h1 {
    letter-spacing: -2.24px;
}

.Letter-space-h2 {
    letter-spacing: -3.5px;
}

.W-max-content {
    width: max-content !important;
}

/* Form */
.form-label {
    color: var(--color-black);
    font-size: 14px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
}

.form-control,
.form-select {
    font-size: 16px;
    line-height: 140%;
    padding: 11px 16px;
    border: var(--input-border);
    border-radius: var(--border-radius-sm);
    -webkit-border-radius: var(--border-radius-sm);
    -moz-border-radius: var(--border-radius-sm);
    -ms-border-radius: var(--border-radius-sm);
    -o-border-radius: var(--border-radius-sm);
}

.form-control::placeholder {
    font-size: 12px;
    color: rgba(17, 17, 19, 0.60);

}

.form-control:focus,
.my-selectbox:focus {
    box-shadow: none;
    border: var(--input-border);
}

.my-selectbox {
    background-image: url(https://qa.experthiring.com/wp-content/uploads/2026/05/Arrow-Down.svg);
    background-size: 18px 18px;
}

.error-msg {
    font-size: 12px;
    color: #bf0606;
    display: none;
}

.Overflow-hidden {
    overflow: hidden;
}

.Link {
    color: var(--color-11) !important;
}

.Link:hover {
    color: #0061cf !important;
}

.my-hr {
    border-color: #E8E8E8;
    opacity: 1;
    margin: 32px 0;
}

/* Pre defined classes end */



/* header section start here */
.My-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 999;
    border-bottom: 1px solid #f5f3f3;
}

.My-NavBar {
    padding-top: 16px;
    padding-bottom: 16px;
}

.myLogo {
    width: 160px;
    height: auto;
}

.My-NavBar .nav-link {
    color: var(--color-1);
    font-size: var(--font-size-sm);
    cursor: pointer;
    border-radius: var(--border-radius-md);
    transition: all 0.25s ease;
    -webkit-border-radius: var(--border-radius-md);
    -moz-border-radius: var(--border-radius-md);
    -ms-border-radius: var(--border-radius-md);
    -o-border-radius: var(--border-radius-md);
}

.My-NavBar .nav-link:hover {
    background: rgba(25, 26, 21, 0.07);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.my-nav-dropdown.show>.nav-link {
    background: rgba(25, 26, 21, 0.07);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.My-NavBar .dropdown-toggle {
    display: flex;
    align-items: center;
    border: none;
}

.My-NavBar .navbar-nav {
    margin: 0 auto;
}

/* .My-NavBar .dropdown-toggle::after {
    background-image: url(https://qa.experthiring.com/wp-content/uploads/2026/05/Nav-down-arrow.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    border: none;
    transition: transform 0.25s ease;
} */
.My-NavBar .dropdown-toggle::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M15 8.33325L10.5893 12.744C10.2638 13.0694 9.73618 13.0694 9.41074 12.744L5 8.33325' stroke='%23191A15' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: none;
    transition: transform 0.25s ease;
}
.My-NavBar .dropdown-toggle.show::after,
.my-nav-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.Nav-right-btns .my-btn {
    padding: 10px 16px;
    border-radius: var(--border-radius-48);
}

.My-NavBar .navbar-toggler {
    padding: 2px 3px;
    background-color: #FFFFFF;
}

.My-NavBar .navbar-toggler:focus,
.My-NavBar .navbar-toggler:hover,
.My-NavBar .navbar-toggler:active {
    background-color: #FFFFFF !important;
    box-shadow: none;
}

.my-nav-dropdown .dropdown-menu {
    width: max-content;
    left: auto;
    right: 0;
    padding: 0;
    background: #FFF;
    box-shadow: rgb(0 0 0 / 0%) 0px 4px 8px 0px, rgb(0 0 0 / 7%) 0px 6px 8px 0px;
    border: 1px solid #e1e0e0;
    border-radius: 4px;
}

.Nav-overlay {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    background-color: #0003;
    width: 100%;
    height: 100vh;

    inset: 100% 0% 0%;
    top: 100%;
    pointer-events: none;
    overflow: hidden;
    transition: 0.3s ease;
}

.RSN-section {
    border-radius: 12px;
    padding: 48px;
}

.RSN-heading {
    color: #646464;
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 7px;
}

.RSN-border {
    border-color: #d9d9d9;
}

.RSN-learnMore-section h5 {
    color: var(--color-3);
    font-size: 14px;
    line-height: 21px;
}

.RSN-learnMore-section h6 {
    color: var(--color-3);
    font-size: 14px;
    line-height: 20px;
}

.RSN-Itemgap {
    gap: 11px;
}

.RSN-header {
    margin-bottom: 37px;
}

.RSN-hiring-strip {
    background: #FFF;
    margin-top: 108px;
}

.RSN-hiringteams-Section p {
    color: var(--color-3);
    margin-bottom: 3px;
}

.RSN-hiringteams-Section a {
    color: #3063D2;
    font-style: italic;
    text-decoration: none;
}

.RSN-hiringteams-Section p,
.RSN-hiringteams-Section a {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.28px;
}

.RSN-hiringteams-Section a:hover {
    text-decoration: underline;
}

.RSN-Itemgap {
    cursor: pointer;
}

.RSN-MenuItemsSections {
    gap: 40px;
}

.RSNForstaffing-owners-icon {
    width: 24px;
    margin-top: -1px;
}

.RSN-hiring-strip,
.RSN-MenuItemsSections {
    padding-left: 22px;
}

.RSN-Resources-Menu {
    padding-left: 12px;
    padding-right: 12px;
}

/* header section ends here */

.flag-icon,
img.countryFlag {
    margin-left: 12px;
    width: 18px;
    height: 14px;
    max-width: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.Select-box .Select1 {
    width: 22%;

}

.Select-dropdown {
    border: var(--input-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
}

.Select-dropdown .my-selectbox {
    padding-left: 8px;
    border: none;
}

.Select-box .Select2 {
    width: 78%;
}

/* Upload box */
.upload-box {
    padding: 24px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 18px;
    border: 1px dashed #000;
    background: rgba(0, 0, 0, 0.05);
}

.fileText {
    font-family: var(--font-size-small);
}

.uploadBtn {
    border: none;
    font-size: var(--font-size-small);
    color: var(--color-white);
    padding: 7px 16px;
    border-radius: 48px;
    background: var(--btn-blackBG);
    box-shadow:
        0 0 0 1px rgba(10, 13, 18, 0.18) inset,
        0 -2px 0 0 rgba(10, 13, 18, 0.05) inset,
        0 1px 2px 0 rgba(10, 13, 18, 0.05);
}

.mdl-btn {
    padding: 11px 24px;
    border-radius: 48px;
    box-shadow:
        inset 0 0 0 1px rgba(10, 13, 18, 0.18),
        inset 0 -2px 0 0 rgba(10, 13, 18, 0.05),
        0 1px 2px 0 rgba(10, 13, 18, 0.05);
}


/*Footer*/
.EH-footer {
    background: var(--color-black);
    padding: 72px 0 0;
    font-family: var(--font-family-inter, 'Inter', sans-serif);
}

.EH-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(108px, 1fr));
    gap: 36px;
    padding-bottom: 54px;
}

.EH-footer-title {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 22.5px;
    margin-bottom: 18px;
}

.EH-footer-list {
    display: flex;
    flex-direction: column;
    gap: 13.5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.EH-footer-link {
    color: #cbc7c7;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.EH-footer-link:hover,.EH-footer-link:focus,.EH-footer-link:active {
    color: var(--color-white);
    transform: translateX(2px);
}

.EH-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 36px;
}

.EH-footer-logo {
    width: 162px;
    height: auto;
    display: block;
}

.EH-footer-copy {
    color: #c3a9a9;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
    white-space: nowrap;
}

.EH-footer-social {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.EH-footer-social:hover {
    transform: translateY(-2px);
}

.EH-footer-social img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.My-border {
    border-top: 1.125px solid #423d3d;
    opacity: 1;
}


/* --- from newStyle.css chrome ---
 */
/* ExpertHiring homepage redesign - nav/footer deltas + homepage sections */
/* Loaded after style.css on home.html only */
/* Header base styles: style.css + rwd.css. New nav rules below are mega-menu + phone only. */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

/* New header elements (phone + CTA row) */
.Nav-right-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone-link {
  font-weight: 400;
}

.My-NavBar .nav-phone-link:hover,
.My-NavBar .nav-phone-link:focus,
.My-NavBar .nav-phone-link:active {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

.My-NavBar .nav-link:focus {
  outline: none;
  box-shadow: none;
}

.nav-hiring-logos {
  height: 48px;
}

.industries-mega .RSN-hiring-strip .logos,
.resources-mega .RSN-hiring-strip .logos {
  flex-shrink: 0;
  width: auto;
  max-width: max-content;
}

.industries-mega .nav-hiring-logos,
.resources-mega .nav-hiring-logos {
  display: block;
  height: 48px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

/* Mega dropdown panels */
.my-nav-dropdown .industries-mega,
.my-nav-dropdown .resources-mega {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-nav-dropdown .industries-mega > .RSN-section,
.my-nav-dropdown .resources-mega > .RSN-section {
  list-style: none;
}

.industries-mega .RSN-hiring-strip,
.resources-mega .RSN-hiring-strip {
  margin-top: 32px;
}

.industries-mega .RSN-header,
.resources-mega .RSN-header {
  margin-bottom: 16px;
}

.resources-mega .RSN-Itemgap {
  padding: 10px 14px;
  border-radius: 10px;
  transition: background .18s;
}

.resources-mega .RSN-Itemgap:hover {
  background: #F5F7FF;
}

.resources-mega .RSN-learnMore-section h5 {
  margin-bottom: 2px;
}

.resources-mega .RSN-learnMore-section h6 {
  margin: 0;
}

.ind-mega-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 992px) {
  .ind-mega-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ind-mega-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none !important;
  color: #2B2B2B;
  transition: background .18s;
}

.ind-mega-item:hover {
  background: #F5F7FF;
  color: #2B2B2B;
}

.ind-mega-item .rm-sub {
  display: none;
}

.ind-mega-item .rm-title {
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
}

.ind-mega-item .rm-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-mega-item .rm-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  display: block;
}

.ind-mega-view-all {
  padding: 10px 14px;
  color: #3063D2;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  line-height: 18px;
  letter-spacing: -0.28px;
  text-decoration: none;
}

.ind-mega-view-all:hover {
  color: #3063D2;
  text-decoration: underline;
}

@media (min-width: 992px) {
  .ind-mega-view-all {
    grid-column: 4;
    align-self: start;
  }
}

.industries-mega {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
  border: 1px solid #EAEAEA;
  overflow: hidden;
  margin-top: 8px;
  background: #fff !important;
}

.resources-mega {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
  border: 1px solid #EAEAEA;
  overflow: hidden;
  margin-top: 8px;
  background: #fff !important;
}

@media (min-width: 992px) {
  .industries-mega {
    min-width: 780px;
  }

  .resources-mega {
    min-width: 640px;
  }
}

/* Footer */
.EH-footer {
  background: #0A0A0A;
  padding: 72px 0 0;
  font-family: 'Inter', sans-serif;
  border-top: 2px solid rgba(255, 255, 255, .12);
}

.EH-footer-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 40px;
}

.EH-footer-tagline {
  color: rgb(203, 199, 199);
  font-size: 17px;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

.EH-footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 32px;
}

.EH-footer-contact-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 80px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 32px 0 24px;
}

.EH-footer-contact-left {
  display: flex;
  flex-direction: column;
}

.EH-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  border-top: none;
  align-items: center;
}

.EH-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgb(203, 199, 199);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}

.EH-footer-contact-item svg {
  opacity: .6;
  flex-shrink: 0;
}

.EH-footer-contact-item:hover {
  color: #fff;
}

.EH-footer-logo-sm {
  width: 120px;
  height: auto;
  display: block;
}

.EH-footer-contact a,
.EH-footer-contact span {
  color: rgb(203, 199, 199);
  font-size: 14px;
  text-decoration: none;
  line-height: 1.65;
  transition: color .2s;
}

.EH-footer-contact a:hover {
  color: #fff;
}

.EH-footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: none;
  margin-bottom: 20px;
}

.EH-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.EH-footer-link {
  color: rgb(203, 199, 199);
  font-size: 16px;
  text-decoration: none;
  transition: color .2s;
}

.EH-footer-link:hover {
  color: #fff;
}

.My-border {
  border-color: #1F1F1F !important;
}

.EH-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.EH-footer-logo {
  width: 160px;
  height: auto;
  display: block;
}

.EH-footer-copy {
  color: rgb(195, 169, 169);
  font-size: 14px;
  margin: 0;
}

.EH-footer-social {
  width: 40px;
  height: 40px;
  background: #0077B5;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background .2s;
}

.EH-footer-social:hover {
  background: #005f8e;
  color: #fff;
}

/* Extra icon colors */
.rm-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  display: block;
}

/* Dropdown backdrop overlay - unused; header uses .Nav-overlay */

.rm-icon-blue {
  background: #E8F1FF;
  color: #1A77E1;
}

.rm-icon-indigo {
  background: #EBEBFF;
  color: #4f46e5;
}

.rm-icon-slate {
  background: #F0F2F5;
  color: #475569;
}

.rm-icon-yellow {
  background: #FFF8E1;
  color: #d97706;
}

/* â”€â”€ Hover-open + centered mega dropdowns â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Remove underlines from all CTA buttons */
.BJB-btn,
.my-btn,
.btn-glow,
.SeeCandidates-Btn,
.BJB-btn:hover,
.my-btn:hover,
.btn-glow:hover,
.SeeCandidates-Btn:hover {
  text-decoration: none !important;
}


.EH-footer-sparkle {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 4px;
}

.EH-footer-contact-item--address {
  gap: 10px;
}

.EH-footer-social--inline {
  flex-shrink: 0;
  margin-left: 16px;
  color: #fff;
}


/* --- from newRWD.css chrome ---
 */
/* ExpertHiring homepage redesign - responsive overrides */
/* Loaded after rwd.css on home.html only */

@media (min-width: 992px) {
  .my-nav-dropdown { position: static !important; }
  .navbar { position: relative !important; }
  .my-nav-dropdown .industries-mega,
  .my-nav-dropdown .resources-mega {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px) !important;
    -webkit-transform: translateX(-50%) translateY(20px) !important;
    top: 100%;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1040;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    background: #fff !important;
  }
  .my-nav-dropdown:hover .industries-mega,
  .my-nav-dropdown:hover .resources-mega,
  .my-nav-dropdown.show .industries-mega,
  .my-nav-dropdown.show .resources-mega {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
    -webkit-transform: translateX(-50%) translateY(0) !important;
  }
  .my-nav-dropdown:hover .dropdown-toggle::after,
  .my-nav-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  .my-nav-dropdown .industries-mega::before,
  .my-nav-dropdown .resources-mega::before {
    content: '';
    display: block;
    height: 20px;
    margin-top: -20px;
    background: transparent;
  }
  .Nav-overlay {
    position: absolute; left: 0; top: 100%; width: 100%; height: 100vh;
    background: #0003; z-index: 1029;
    display: block !important; opacity: 0; pointer-events: none; overflow: hidden;
    transition: opacity 0.3s ease;
  }
  .My-header:has(.my-nav-dropdown:hover) .Nav-overlay,
  .My-header:has(.my-nav-dropdown.show) .Nav-overlay {
    opacity: 1;
    pointer-events: none;
  }
}

@media (max-width: 991px) {
  .Nav-overlay {
    display: none !important;
  }

  .My-header {
    z-index: 999;
  }

  .my-nav-dropdown .industries-mega,
  .my-nav-dropdown .resources-mega,
  .my-nav-dropdown .dropdown-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    border: 1px solid #EAEAEA !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08) !important;
    overflow: hidden !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .my-nav-dropdown .industries-mega > .RSN-section,
  .my-nav-dropdown .resources-mega > .RSN-section {
    padding: 22px !important;
    border-radius: 0 !important;
  }

  .ind-mega-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .ind-mega-view-all {
    grid-column: auto !important;
  }

  .industries-mega, .resources-mega { min-width: 0 !important; }

  .industries-mega .RSN-hiring-strip .logos,
  .resources-mega .RSN-hiring-strip .logos {
    max-width: 100%;
  }

  .industries-mega .nav-hiring-logos,
  .resources-mega .nav-hiring-logos {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 576px) {
  .ind-mega-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 991px) {
  .EH-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 991px) {
  .EH-footer-copy { white-space: normal; }
}
@media (max-width: 767px) {
  .EH-footer-links { grid-template-columns: 1fr; gap: 28px; }
  .EH-footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .EH-footer-contact-section { flex-direction: column; gap: 24px; }
}

/* --- header/footer/token RWD from rwd.css ---
 */
@media (max-width: 1540px) {
.P4860 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

}

@media (max-width: 1400px) {
.P4860 {
        padding-top: 50px;
        padding-bottom: 60px;
    }

}

@media (max-width: 1300px) {
:root {
        --font-size-small: 0.75rem;
        --font-size-sm: 0.875rem;
        --font-size-base: 1rem;
        --font-size-lg: 1.25rem;
        --font-size-22: 1.375rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 2rem;
        --fs56: 3rem;
    }

.my-container {
        max-width: 1140px;
    }

}

@media (max-width: 1199px) {
.my-container {
        max-width: 90%;
    }

.locations .my-container {
        max-width: 100%;
    }

}

@media (max-width: 1080px) {
:root {
        --fs56: 2.375rem;
        --fs64: 2.5rem;
    }

.P140 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

.P8080 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

}

@media (max-width: 991px) {
.my-container {
        max-width: 98%;
    }

.My-NavBar .nav-link {
        padding: 0.5rem;
    }

.Nav-right-btns {
        margin-top: 16px;
    }

.my-nav-dropdown .dropdown-menu {
        width: stretch;
    }

.RSN-section {
        padding: 22px;
    }

.RSN-header {
        margin-bottom: 24px;
    }

.RSN-hiring-strip {
        margin-top: 22px;
    }

.CND-SubmitInformation-Container .my-container {
        max-width: 95%;
    }

.P140 {
        padding-top: 70px;
        padding-bottom: 60px;
    }

.EH-footer {
        padding: 72px 0 0;
    }

.EH-footer-links {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        padding-bottom: 42px;
    }

.EH-footer-bottom {
        align-items: flex-start;
    }

}

@media (max-width: 768px) {
:root {
        --h1-size: 2.5rem;
        --h2-size: 2.19rem;
        --h3-size: 1.5rem;
        --h4-size: 1.25rem;
        --h5-size: 1rem;
        --h6-size: 0.875rem;
        --fs56: 2rem;
        --fs64: 2.125rem;
    }

.RSN-section {
        border-radius: 0px;
        padding: 16px;
        width: 100%;
        height: auto;
    }

.RSN-section .my-container {
        max-width: 100%;
    }

.RSN-header {
        margin-bottom: 30px;
    }

.RSN-hiring-strip {
        margin-top: 10px;
    }

.RSN-section .col-12 {
        margin-top: 10px;
    }

.RSN-learnMore-section h5 {
        margin-bottom: 1px;
    }

.RSN-MenuItemsSections {
        gap: 20px;
        flex-direction: column;
    }

.RSN-hiring-strip,
    .RSN-MenuItemsSections {
        padding-left: 17px;
    }

.my-nav-dropdown .dropdown-menu {
        width: auto;
    }

.BA-title-section .FsLarge {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        letter-spacing: -1px;
    }

}

@media (max-width: 550px) {
.P4860 {
        padding-top: 50px;
        padding-bottom: 40px;
    }

.FsLarge {
        letter-spacing: -2px;
    }

.EH-footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

.EH-footer-link {
        font-size: 16px;
        line-height: 24px;
    }

.EH-footer-copy {
        width: 100%;
        font-size: 15px;
        line-height: 22px;
        white-space: normal;
        order: 3;
    }

}

/* Dark-CTA Google pill colors (Contact/Submit skip newStyle.css; leftover dumps still have these) */
.cta-google-pill,
.cta-google-pill:hover,
.cta-google-pill:focus,
.cta-google-pill:visited {
  color: rgba(255, 255, 255, .85);
}

.g-stars-yellow {
  color: #FBBC04;
}

.cta-google-pill-text {
  color: rgba(255, 255, 255, .85);
}

/* Shared buttons + BJB/lock card (copied from leftover style.css; dumps kept) */
.btn-gradient-wrap {
    display: inline-block;
    padding: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #FF8DB3, #7B48FE);
    margin-top: 39px;
}

.BJB-btn {
    background: #1E1006;
    color: #fff !important;
    border: none;
    padding: 14px 24px;
    border-radius: 48px;
    font-size: 14px;
}

.BJB-btn:hover {
    background: #2c190b;
}

.Lg-btn {
    margin: auto;
    min-width: 258px;
    display: block;
    padding: 14px 24px;
    border-radius: 54px;
    border: 2px solid #FF8DB3;
    box-shadow: 0 2.25px 5.625px 2.25px rgba(254, 140, 178, 0.20);
}

.My-btn-gradient {
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.My-btn-gradient .BJB-btn {
    font-size: var(--font-size-sm);
    padding: 16px 24px;
    line-height: normal;
    border-radius: 54px;
    border: 2.25px solid transparent;
    background:
        linear-gradient(#1E1006, #1E1006) padding-box,
        linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box;
    box-shadow:
        0 2.25px 5.625px 2.25px rgba(254, 140, 178, 0.20),
        0 0 14px rgba(123, 72, 254, 0.22);
}

.My-btn-gradient .BJB-btn:hover,
.My-btn-gradient .BJB-btn:focus,
.My-btn-gradient .BJB-btn:active {
    color: #fff;
    background:
        linear-gradient(#2c190b, #2c190b) padding-box,
        linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box;
}

.cursor-pointer {
    cursor: pointer;
}

.cta-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    border-radius: 999px;
    background: #fff;
    border: none;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    color: #111 !important;
    transition: background .2s, box-shadow .2s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
}

.cta-pill-btn:hover {
    background: #F5F5F5;
    color: #111 !important;
    box-shadow: 0 6px 32px rgba(0, 0, 0, .28);
}

.cta-pill-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
    background: #F5F5F5;
    color: #111 !important;
}

.cta-pill-btn,
.cta-pill-btn *,
.cta-pill-btn span {
    color: #111 !important;
}

.BJB-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.BJB-card {
    border-radius: 24px;
    background: #FFF;
    padding: 40px 20px;
    max-width: 1064px;
    height: 503px;
}

.BJB-title {
    font-size: 54px;
    color: var(--color-2);
    line-height: 68px;
    margin-top: 54px;
}

.My-reviews-section {
    padding: 100px 0 0 0;
}

.My-reviews {
    padding: 130px 20px 100px 20px;
    height: auto;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.My-reviews .BJB-title {
    margin-bottom: 50px;
}

.My-reviews .Para {
    color: var(--color-7);
    font-size: var(--h5-size);
    line-height: 140%;
}

.Lock-secton {
    gap: 32px;
}

@media (max-width: 991px) {
    .My-reviews-section { padding: 60px 0 0 0; }
    .My-reviews { padding: 80px 20px 50px 20px; }
    .My-reviews .BJB-title { margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .BJB-card { padding-top: 32px; }
    .BJB-title { font-size: 33px; line-height: 39px; }
    .BJB-btn { padding: 10px 24px; }
    .BJB-section { padding-top: 20px; padding-bottom: 20px; }
    .My-reviews-section { padding: 40px 0 0 0; }
}

@media (max-width: 550px) {
    .btn-gradient-wrap { margin-top: 7px; }
    .BJB-btn { font-size: 13px; padding: 9px 24px; }
    .BJB-title { font-size: 22px; line-height: 23px; letter-spacing: -1px; }
    .My-reviews { border-radius: 6px; padding: 45px 15px 35px 15px; }
    .Lg-btn { min-width: 0; width: 100%; }
}

