.mtbcorrentino-hero{
    height: 100vh;
    position:relative;
}



.mtbcorrentino-hero .background-mtb{
    position: absolute;
    z-index: -1;
    /* height: 65vh;
    width: 100vw; */
    height: 100%;
    width: 100%;    
    opacity: 0.5;
    object-fit:cover;
}

.mtbcorrentino-hero h2 {
    text-align:center;    
}

.mtbcorrentino-hero a {
    /* color: #ffc929; */
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}



.mtbcorrentino-hero .back-bottom {
    position:absolute;
    left:0;
    bottom: 0 ; 
    width: 100%;
    height: 100px;
    z-index: 2; 
    opacity: 0.5;
}

.mtbcorrentino-hero .mtb-title{
    position:absolute;
    top: 5% ; 

}

.mtbcorrentino-hero  .mtb-text {
    position:absolute;
    left:0;
    bottom: 0 ; 
    width: 100%;
    height: 30%;
    z-index: 3; 
    /* opacity: 1;     */
    /* color: #ffc929; */
    color: #352f2fc9;
    font-weight: normal;
    padding-inline: 5%;
    font-size: 1rem;
    padding-bottom: 20px;
}

.mtbcorrentino-hero  .mtb-text h2{
    text-decoration:none;
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    /* color: #352f2fc9; */
    color: #fff;
}

@media only screen and (max-width: 767px){
    .mtbcorrentino-hero a {
        font-size: 1.5rem;
    }

    .mtbcorrentino-hero  .mtb-text h2{
        font-size: 1rem;
    }

}

.mtbcorrentino-hero  .mtb-text h2 a{
    text-decoration:none;
}

.mtbcorrentino .animate {
    opacity: 0; /* Comienza invisible */
    transition: opacity 1.5s ease-in-out; /* Transición de opacidad */
    /* font-size: 24px; */
}
  
  /* Clase que se agrega al hacer intersección */
  .mtbcorrentino .animate.show {
    opacity: 1; /* Aparece gradualmente */
  }