.hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
  /* background-image: url();
  background-attachment: fixed; 
  background-size: cover;*/
}
.hero_video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layout{
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.4;
  background-color: black;
  top: 0;
  left: 0;
  z-index: 1;
}
/* .hero::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.5;
  background-color: black;
  top: 0;
  left: 0;
  z-index: 1;
} */
.hero_center {
  display: flex;
  width: 90%;
  height: 100%;
  z-index: 1;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.hero_content {
  width: 870px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero_title {
  margin: 10px;
  line-height: 65px;
  text-align: center;
  color: white;
}
.hero_text {
  margin: 10px;
  color: white;
}
.button--hero {
  width: 220px;
  margin-top: 5px;
}
.hero_buttons {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.hero_buttons a {
  margin: 0 10px;
}

/*MOVIL TABLET */
@media (max-width: 1024px) {
  .hero_content {
    justify-content: center;
  }
}
/*MOVIL TABLET */
@media (max-width: 768px) {
  .hero_content {
    width: 550px;
  }
}
/*MOVIL GRANDE*/
@media (max-width: 425px) {
  .hero_title{
    line-height: 45px;
    font-size: 40px;
  }
  .hero_buttons a {
    margin: 5px 10px;
  }
}
