.employees {
  padding: 120px 0;
  background: #F9F9FB;
}
@media (max-width: 991px) {
  .employees {
    padding: 64px 0;
  }
}
.employees__inner {
  display: grid;
  grid-template-columns: minmax(350px, 408px) 1fr;
  align-items: center;
  gap: 120px;
}
@media (max-width: 991px) {
  .employees__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.employees__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-transform: uppercase;
  color: #17171C;
  margin-bottom: 8px;
}
.employees__title {
  margin-bottom: 16px;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: -1.2px;
  max-width: 450px;
}
@media (max-width: 992px) {
  .employees__title {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1.2px;
  }
}
@media (max-width: 480px) {
  .employees__title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.9px;
  }
}
.employees__description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #666666;
  max-width: 450px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .employees__description {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 40px;
  }
}
.employees__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.employees__actions .button {
  margin: 0;
}
@media (max-width: 580px) {
  .employees__actions {
    gap: 10px;
  }
}
.employees__media {
  border-radius: 12px;
  overflow: hidden;
  max-width: 769px;
}
.employees__image {
  width: 100%;
  height: auto;
  display: block;
}
