.HotCard {
  border-radius: 20px;
  padding: 23px 48px;
  display: flex;
  gap: 20px;
  width: 50%;
  justify-content: space-between;
}

.HotCard.orange {
  background: linear-gradient(119deg,
      rgba(250, 226, 102, 0.4) 22.95%,
      rgba(255, 208, 86, 0.84) 111.48%);
}

.HotCard.blue {
  background: linear-gradient(110deg,
      rgba(191, 224, 255, 0.3) -2.07%,
      rgba(51, 152, 255, 0.8) 105.66%);
}

.HotContent h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  background: linear-gradient(90deg, #8f01de -3.4%, #ff5400 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 28px;
}

.HotContent h3 {
  color: rgba(0, 0, 0, 0.84);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.HotContent p {
  color: rgba(0, 0, 0, 0.83);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 12px;
}

.HotContent button {
  text-align: center;
  border: none;
  border-radius: 12px;
  background: linear-gradient(91deg, #ff8b37 26.51%, #ffa500 99.59%);
  color: white;
  font-size: 16px;
  font-weight: 800;
  padding: 10px 38px;
  margin-top: 21px;
}

.HotContent {
  width: 50%;
}

.HotCard img {
  width: 250px;
  object-fit: contain;
}

.employeeEngCard {
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.06);
}

.employeeEngCard-Content {
  padding: 60px;
  width: 50%;
}

.employeeEngCard-img {
  width: 50%;
}

.employeeEngCard-img img {
  width: 100%;
  object-fit: contain;
}

.employeeEngCard-Content h2 {
  color: #1e1e1e;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
}

.employeeEngCard-Content p {
  color: #2a2a2a;
  margin-top: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}

.employeeEngCard-Content button {
  text-align: center;
  border: none;
  border-radius: 12px;
  background: linear-gradient(91deg, #ff8b37 26.51%, #ffa500 99.59%);
  color: white;
  font-size: 16px;
  font-weight: 800;
  padding: 10px 38px;
  margin-top: 21px;
}

@media (max-width: 1200px) {
  .HotCard img {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .HotCard {
    padding: 16px;
    gap: 5px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hotMobile {
    flex-wrap: wrap;
  }

  .HotCard img {
    width: 200px;
  }

  .employeeEngCard-Content {
    padding: 16px;
    width: 100%;
  }

  .employeeEngCard-img {
    width: 100%;
  }

  .HotContent {
    width: 100%;
    text-align: center;
  }

  .HotCard img {
    margin-top: 25px;
  }
}