.careerHead {
  width: 100%;
  position: relative;
}

.careerHead img {
  width: 100%;
  height: 100%;
}

.careerTitle {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  z-index: 10;
  position: absolute;
  bottom: 25%;
  margin-bottom: 5%;
}

.hrStrategy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  padding: 3rem 0;
}

.hrStrategy h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #e06026;
  line-height: 2.5rem;
  width: 30%;
}

.hrStrategy p {
  flex: 1;
  color: #6e6e6e;
  font-weight: 300;
  line-height: 1.6rem;
  font-size: 0.96rem;
}

.stepSection {
  width: 100%;
  display: flex;
}

.stepSection div {
  width: 25%;
  color: #fff;
  height: 488px;
  transition: all 0.6s;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stepSection div:first-of-type {
  background-color: #1b2f5a;
}

.stepSection div:nth-of-type(2) {
  background-color: #ef4923;
}

.stepSection div:nth-of-type(3) {
  background-color: #00a5a4;
}

.stepSection div:last-of-type {
  background-color: #79c7cc;
}

.stepSection div h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.stepSection div p {
  display: none;
  font-size: 0.876rem;
}

.stepSection div:hover {
  align-items: flex-start;
  width: 40%;
}

.stepSection div:hover p {
  display: block;
}

@media (max-width: 996px) {
  .stepSection {
    flex-wrap: wrap;
  }

  .stepSection div {
    width: 50%;
  }

  .stepSection div:hover {
    width: 50%;
  }
}

@media (max-width: 620px) {
  .stepSection div {
    width: 100%;
  }

  .stepSection div:hover {
    width: 100%;
  }
}
