#hero{
    width: 100%;
    height: 100vh;
    background-image: url('../../img/portada.jpg') ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment:fixed;
    z-index: -1;
}

#hero::after{
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    background: rgb(16,16,61);
    background: linear-gradient(132deg, rgba(16,16,61,0.8267682072829132) 0%, rgba(30,33,61,0.8379726890756303) 100%);
    margin-top: 55px;
    width: 100%;
    height: 100vh;
}
.texto-hero{
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}
#hero .texto-hero h2{
  font-size: 72px;
  color:#b3baec;
  z-index: 2;
  font-weight: bold;
  /* -webkit-text-stroke: .6px white; */
 }
 #hero .texto-hero h3{
     z-index: 10 ;
    color: white;
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    }
 #hero .texto-hero h1{
text-align: center;     
color: white;
z-index: 2;
}

.btns-cont{
    display: flex;
}
#hero .btns-cont a{
    display: block;
    padding:7px  15px;
    border:none;
    text-decoration: none;
    font-size: 22px;
    color: white;
    z-index: 2;
    border-radius: 5px;
    margin: 10px;
    font-weight: bold;
    font-size: 18px;
}
#hero .btns-cont .bg-primary{
background: #98ACF8;
}
#hero .btns-cont .bg-secondary{
background: #EF7373 !important;
z-index: 2;
}

@media only screen and (max-width:480px){
    #hero .texto-hero h2{
    text-align: center;  
            font-size: 58px;
    }
}
@media only screen and (min-width:490px) and (max-width:720){
    #hero .texto-hero h2{
    text-align: center;  
      z-index: 100;
    }
}