@-webkit-keyframes jump {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-30px);
    }
}

@keyframes jump {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-30px);
    }
}


#cabecera {
    padding-top: 150px;
    padding-bottom: 80px;
    background-position: 0% 30%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-image: url(../img/bg/bosch_i40_5g-connected-industry.jpg);
}

section#cabecera .subtitle {
    color: #fff;
    font-size: 0.7rem;
}

#cabecera:before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(8, 25, 43, 0.15);
    background-image: -webkit-linear-gradient(rgba(8, 25, 43, 0.15), rgba(8, 25, 43, 0.85));
    background-image: linear-gradient(rgba(8, 25, 43, 0.15), rgba(8, 25, 43, 0.85));
    width: 100%;
    height: 100%;
    opacity: 0.5;
    content: '';
}

#cabecera:after {
    content: '';
    position: absolute;
    display: block;
    position: absolute;
    width: 50%;
    height: 120%;
    background-image: url(../img/images/cositas.png);
    background-size: cover;
    background-position: bottom;
    top: 0;
    right: 0;
    filter: invert(1);
    opacity: 0.6;
    -webkit-animation: jump 3s infinite alternate;
    animation: jump 3s infinite alternate;
}

#cabecera>div[class*="container"] {
    position: relative;
}

#cabecera>div[class*="container"]>h2.title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

#cabecera>div[class*="container"]>h2.title:before {
    content: "";
    border-left: 3px solid #fff;
    margin-right: 25px
}

/*Mobile*/
@media screen and (max-width: 900px){
    #cabecera {
        padding-top: 125px;
        padding-bottom: 50px;
    }
    section#cabecera .subtitle {
        font-size: 0.6rem;
        line-height: 1.5;
    }
    #cabecera:before {}
    #cabecera:after {}
    #cabecera>div[class*="container"] {}
    #cabecera>div[class*="container"]>h2.title {
        font-size: 1.2rem;
    }
    #cabecera>div[class*="container"]>h2.title:before {
        margin-right: 14px;
    }
}