.eg-hero{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70vh;
  background-image: url('https://www.e-global.es/images/hero/hero-1920-960.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #ffffff;
}
.eg-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,15,20,.80) 0%, rgba(8,15,20,.55) 40%, rgba(8,15,20,.15) 75%, rgba(8,15,20,0) 100%);
  z-index: 1;
}
.eg-hero__content{
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
}
.eg-hero__lead{
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.eg-hero__title,
.eg-hero__lead{
  font-family: 'Louis George Cafe', sans-serif;
}
.eg-hero__title{
  font-weight: 700;
  letter-spacing: -0.01em;
}
.eg-hero__lead{
  font-weight: 400;
  opacity: .95;
}
.eg-hero__btn{
  background-color: #00bfa5;
  border-color: #00bfa5;
  color: #ffffff;
  font-family: 'Louis George Cafe', sans-serif;
  font-weight: 700;
  transition: background-color .2s ease, border-color .2s ease, transform .15s ease;
}
.eg-hero__btn:hover,
.eg-hero__btn:focus{
  background-color: #00a894;
  border-color: #00a894;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 767.98px){
  .eg-hero{ min-height: 55vh; }
  .eg-hero__title{ font-size: 2rem; }
  .eg-hero__lead{ font-size: 1.05rem; }
}