.hero-video {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero-video .hero-video__content {
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.hero-video .hero-video__content--left {
  align-items: flex-start;
  text-align: left;
}

.hero-video .hero-video__content--center {
  align-items: center;
  text-align: center;
}

.hero-video .hero-video__content--right {
  align-items: flex-end;
  text-align: right;
}

.hero-video .hero-video__buttons {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 1rem;
  max-width: 25rem;
  word-break: break-word;
  justify-content: center;
  width: 100%;
}

.hero-video .hero-video__buttons .button {
  min-height: 3.7rem;
}

.hero-video .hero-video__buttons .button:not(:last-child) {
  margin-right: 16px;
}

.hero-video .hero-video__title {
  margin: 0;
  letter-spacing: 0;
  font-weight: 400;
  line-height: normal;
}

.hero-video .hero-video__subtitle {
  letter-spacing: 0;
  margin: 0;
  line-height: normal;
}

.hero-video .hero-video__video--desktop {
  display: none;
}

.hero-video .hero-video__video--mobile {
  object-fit: cover;
}

@media screen and (min-width: 750px) {
  .hero-video .hero-video__video--desktop {
    display: block;
  }

  .hero-video .hero-video__video--mobile {
    display: none;
  }

  .hero-video .hero-video__content {
    padding: 55px;
  }
}

button.button--transparent,
.button.button--transparent {
  width: 100%;  
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 6.25px 30px;
  border-radius: 20px;

  @media screen and (max-width: 1024px) {
    padding: 4.5px 19px;
  }

  &:after {
    box-shadow: none;
  }

  &.disabled,
  &[aria-disabled='true'],
  &:disabled {
    background-color: transparent;
  }
}

.button:not([disabled]):hover::after {
  box-shadow: none;
}