footer{
    padding: 7.5rem 0;
}
footer h4{
    font-size: calc(1.325rem + .9vw);
}

@keyframes gradiente {
    0% {
        background-color: dodgerblue;
    }
    50% {
        background-color: limegreen;
    }
}
#main-jumbo{
    align-items: center;
    background-color:limegreen;
    display: flex;
    justify-content: center;
    /*min-height: 100vh !important;*/
    min-height: 70vh !important;
}
#main-jumbo h1{
    font-weight: 500 !important;
    line-height: 1.25;
}
#main-jumbo #logo-slider{
    max-width: 150px;
}
#main-jumbo #logo-slider img{    
    width: 100%;
}

#soluciones-software{    
    padding: 7.5rem 0;
}
#soluciones-software h2{
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 500 !important;
}


/* Create scroll-timeline on the root */
html {
    scroll-timeline: --page-scroll block;
}

/* Attach the animation using an anonymous Scroll Progress Timeline */
#main-jumbo{
    animation: gradiente auto linear;
    animation-timeline: --page-scroll;
}

