/* prueba css */

.hero-header {
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
 z-index:1;
  overflow: hidden;
}
.hero-header.no-thumbnail {
  background-color: #18E7FF;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,rgba(20,20,20,0.10) 15%,rgba(0,0,0,0.66) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  color: #fff;
  text-align: center;
  font-family: 'agency', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  
 
  padding: 20px 36px;
  border-radius: 0 0 18px 18px;
 
  display: inline-block;
}

@media (max-width: 700px) {
  .hero-header {
    height: 290px!important;
    border-radius: 0 0 16px 16px;
  }
  .hero-title {
    font-size: 1.6rem;
    padding: 12px 10px;
    border-radius: 0 0 10px 10px;
  }
}
