.hero-wrapper {
    width: 80%;
    height: 500px;
    margin: 50px auto;
}

.hero-wrapper .article-wrapper {
    margin-bottom: 65px;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: 0 0 2px gray;
    background-image: url("../assets/img/bakbaner.png");
    background-position: -350px -150px;
    /* ANIMACIÓN */
    animation: backBanner 10s linear;
    -webkit-animation: backBanner 10s linear;
}

.hero-wrapper .article-wrapper h1 {
    text-align: center;
    font-family: "BebasNeue";
    font-size: 45px;
    font-weight: normal;
    letter-spacing: 2px;
    line-height: 100px;
    height: 100px;
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px black;
    /*ANIMACIÓN*/
    animation: showText 10s linear;
    -webkit-animation: showText 10s linear;
}

.hero-wrapper .article-wrapper-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 315px;
}

.card {
    width: 20%;
    height: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-right: 20px;
    box-shadow: 1px 1px 2px #dddddd;
    border: solid 1px #cccccc;
    overflow: hidden;
    background-color: white;
    cursor: pointer;
    transition: all 600ms;
    -webkit-transition: all 600ms;
    -moz-transition: all 600ms;
    -ms-transition: all 600ms;
    -o-transition: all 600ms;
}

.article-wrapper-cards .card:last-child {
    margin-right: 0;
}

.article-wrapper-cards .card .icon {
    font-size: 60px;
    transition: all 600ms;
    -webkit-transition: all 600ms;
    -moz-transition: all 600ms;
    -ms-transition: all 600ms;
    -o-transition: all 600ms;
}

.article-wrapper-cards .card .category {
    width: 100%;
    font-weight: bold;
    text-align: center;
    color: #00538c;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    transition: all 300ms;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -ms-transition: all 300ms;
    -o-transition: all 300ms;
}

.article-wrapper-cards .card .description {
    color: #0370b9;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    text-align: center;
    transition: 300ms;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -o-transition: 300ms;
}