/* Imágen principal */

#image {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    filter: contrast(1.1);
    background-position:center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    margin-bottom: 5vh;
}


#float-title {
    color: white;
    font-size: calc(15px + 4vw);
    transition: .5s;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 300;
}

#float-title>small {
    display: block;
    font-size: calc(5px + .9vw);
    padding-left: 3px;
}

#bloque {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgb(46, 117, 52) 0%, rgb(28, 77, 39) 100%);
    opacity: 0;
    animation-name: image;
    animation-duration: 3s;
}

#img-consulta {
    width: 100%;
    height: 100%;
}

@keyframes image {
    0% {
        opacity: 1;
        left: 0%;
    }

    70% {
        opacity: .8;
    }

    100% {
        left: 100%;
    }
}

@media screen and (max-width: 769px) {

    #image{
        height: 32vh;
    }

    #float-title {
        font-size: calc(20px + 4vw);
        font-weight: 400;
    }
    
    #float-title>small {
        font-size: calc(5px + 1.6vw);
    }

}