.training-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (width >= 60rem) {
  .training-hero {
    flex-direction: row;
    justify-content: space-between;
  }
}
.training-hero--left, .training-hero--video {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.938rem;
}
@media screen and (width >= 60rem) {
  .training-hero--left, .training-hero--video {
    max-width: 40rem;
  }
}
@media screen and (width >= 60rem) {
  .training-hero--content {
    max-width: 608px;
  }
}
.training-hero--video {
  position: relative;
  max-width: 100%;
}
@media screen and (width >= 60rem) {
  .training-hero--video {
    max-width: 39.813rem;
  }
}
.training-hero--video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  margin: 0;
}
.training-hero--video-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.training-hero--eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (width >= 60rem) {
  .training-hero--eyebrow {
    margin-bottom: 0.5rem;
  }
}
.training-hero--title {
  line-height: 1;
}
.training-hero--title span {
  position: relative;
  display: inline-block;
}
.training-hero--title span::after {
  content: "";
  position: absolute;
  bottom: -18%;
  left: 0;
  width: 100%;
  height: 65%;
  background: url(_images/underline.png) no-repeat bottom right;
  background-size: 100% 100%;
  z-index: -1;
}
.training-hero--buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  margin-top: 0.938rem;
  align-items: center;
}
