.item-story{
    position: relative;
    height: 400px;
    max-width: 250px;
    width: 100%;
    margin: 20px auto 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
    transition: .3s all;
    box-shadow: 3px 4px 8px rgba(0,0,0,.5);
    overflow: hidden;
  }
  .background-capa-story{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.1);
    z-index: 1;
    bottom: 0;
  }
  .item-story:hover{
    text-decoration: none;
    opacity: .8;
  }
  .item-story .logo-jc{
    z-index: 2;
    background-image: url("../../images/new-home/new-mob-logo-webstories.png");
    width: 100%;
    height: 22px;
    position: absolute;
    top: 30px;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0px 1px 2px black);
  }
  .item-story h4{
    z-index: 2;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 4px 5px rgba(0,0,0,.5);
  }