.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height:600px;
  display:grid;
  width: 100%;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	filter:grayscale(100%);
}

.hero__media--video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 56.25vw; /* 16:9 */
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: space-between; 
}
.hero__content {
  text-align: center;
  margin: auto 0; 
}


.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.push_down{margin-top:auto;}
.down-arrow{text-align: center;margin-top:50px}
.down-arrow svg{width:20px;height: auto;margin:auto}



.hero__inner :is(h5,h6){font-family: var(--font-body); font-weight:normal;}