.parallax-hero{
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.parallax-hero-image{
  z-index: -1;
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.parallax-hero-content{
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 800px;
  max-width: calc(100% - 20px);
  gap: 2rem;
}

.parallax-heading{
  text-align: center;
  color: white;
  font-weight: 900;
  margin-bottom: unset;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  font-size: 3.5rem;
  word-spacing: 0.061rem;
  line-height: 1.2;
}

.parallax-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.parallax-text *{
  text-align: center;
  color: white;
  opacity: 1;
  margin: auto;
}

.parallax-text p{
  font-size: 26px;
  font-weight: 600;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.15);
}

.parallax-hero-buttons{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 1.25rem;
  margin-top: auto;
  margin-bottom: 5rem;
}

.parallax-button {
  cursor: pointer;
  text-align: center;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  min-width: 180px;
  font-size: 16px;
  margin: auto;
  padding: 8px 12px;
  text-decoration: unset;
  border-radius: 0.25rem;
  border: 2px solid transparent;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.parallax-button:hover{
  border: 2px solid white !important;
}
