.mast-head .mast-head-background .mast-head-background-stars-container {
  overflow: hidden;
}

.mast-head .mast-head-background-stars {
  will-change: left;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-position: 0 0;
  pointer-events: none;
  animation: moving-stars 70s linear infinite;
}

.mast-head .mast-head-container-reduce {
  padding: 80px 0 0;
}

.mast-head .mast-head-container .heading-5.mast-head-subtitle-large {
  max-width: none;
  width: 80%;
}

.mast-head .mast-head-secondary-button-same-size a,
.mast-head .mast-head-primary-button-same-size a{
  width: 350px 
}

@keyframes moving-stars {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1440px 0;
  }
}