.hero-contacto{
    width: 100vw;
    height: 100vh;
    position: relative;
}

.hero-contacto img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.hero-contacto-texto{
    width: 40%;
    position: absolute;
    top: 40%;
    padding: 0px 5%;
    font-size: 3rem;
    line-height: 4rem;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: 'MyriadPro-Regular', sans-serif;
    font-weight: 100;
    
}


.hero-contacto-texto a{
    font-size: 1rem;
    background-color: royalblue;
    color: white;
    padding: 0px 10px;
    border-radius: 10px;
    border: white 1px solid;
    width: 120px;
    line-height: 2rem;
    padding: 2px 10px;
    transition: all .3s ease;
    font-family: 'MyriadPro-Regular', sans-serif;;
}

.hero-contacto-texto a:hover{
    background-color: white;
    color: royalblue;
    border: royalblue 1px solid;
}

@media (max-width: 668px){
    
    .hero-contacto-texto{
    width: 100%;
    top: 40%;
    padding: 0px 15%;
    }
}