.about-company-video,
.about-company-video * {
  box-sizing: border-box;
}

.about-company-video {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 46px auto 42px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1d2025;
}

.about-company-video__media {
  display: block;
  width: 100%;
  height: 100%;
  background: #F9F9F9;
  object-fit: contain;
}

.about-company-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: 0;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.about-company-video__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.about-company-video__play:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .55);
  outline-offset: 4px;
}

.about-company-video__play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #d91f55;
}

.about-company-video.is-playing .about-company-video__play {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .about-company-video {
    margin: 28px auto 26px;
  }

  .about-company-video__play {
    width: 62px;
    height: 62px;
  }

  .about-company-video__play span {
    margin-left: 4px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }
}
