.career-hero-section {
  position: relative;
}

.career-hero-section .waves {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.career-hero-section .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 548px;
  padding-top: 172px;
}

.career-hero-section .career-hero-content {
  /* margin-top: 280px; */
}

.career-hero-section .career-hero-title {
  font-family: Satoshi-Bold, sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  font-feature-settings: 'liga' off;
  line-height: 80px; /* 111.111% */
  color: var(--e-global-color-bg);
}

.career-hero-section .career-hero-description {
  margin-top: 24px;
  font-family: Satoshi-Regular, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: 'liga' off;
  line-height: 32px; /* 133.333% */
  color: var(--e-global-color-bg);
}

.career-hero-section .career-hero-nav-list {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: auto 0 24px;
  list-style: none;
}

.career-hero-section .career-hero-nav-item {
  font-family: Satoshi-Medium, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  font-feature-settings: 'liga' off;
  line-height: 20px; /* 142.857% */
  color: var(--e-global-color-bg);
  text-transform: uppercase;
  letter-spacing: 0.56px;
}

@media screen and (min-width: 1530px) {
  .career-hero-section .container {
    min-height: clamp(548px, -126.7692px + 44.1026vw, 720px);
    padding-top: clamp(172px, -251.6923px + 27.6923vw, 280px);
  }
}

@media screen and (max-width: 1360px) {
  .career-hero-section .container {
    min-height: clamp(373px, 250.5px + 21.875vw, 548px);
    padding-top: clamp(30px, -60.3636px + 16.1364vw, 172px);
  }

  .career-hero-section .career-hero-title {
    font-size: clamp(44px, 26.1818px + 3.1818vw, 72px);
    line-height: 1.1111;
  }
}

@media screen and (max-width: 768px) {
  .career-hero-section .career-hero-description {
    position: absolute;
    display: none;
    visibility: hidden;
  }
}

@media screen and (max-width: 560px) {
  .career-hero-section .container {
    min-height: 373px;
    padding-top: 30px;
  }

  .career-hero-section .career-hero-title {
    font-size: 44px;
    line-height: 52px;
  }
}