
article.card-new {
    width: 100%;
    height: 350px;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

article.card-new .thumb-new {
    width: auto;
    height: 260px;
    
    background-size: cover;
    border-radius: 3px;
}

article.card-new .infos-new {
    width: auto;
    height: 350px;
    position: relative;
    padding: 14px 24px;
    background: #fff;
    transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
    cursor: pointer;
}

article.card-new .infos-new .title-new {
    position: relative;
    margin: 10px 0;
    color: #152536;
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 0px #32577f;
}

article.card-new .infos-new .flag {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 35px;
    height: 23px;
    background: url("/imgs/flag.png") no-repeat top right;
    background-size: 100% auto;
    display: inline-block;
}

article.card-new .infos-new .date, article.card-new .infos-new .seats {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(21, 37, 54, 0.7);
    text-align: right;
}

article.card-new .infos-new .seats {
    /*display: inline-block;*/
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}

article.card-new .infos-new .txt {
    line-height: 2;
    color: rgba(21, 37, 54, 0.7);
    opacity: 0;
    transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
    text-align: right;
}

article.card-new .infos-new .details {
    position: absolute;
    left: 0;
    left: 0;
    bottom: 0;
    margin: 10px 0;
    padding: 20px 24px;
    color: #4e958b;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}

article.card-new:hover .infos-new {
    transform: translateY(-260px);
}

article.card-new:hover .infos-new .seats, article.card-new:hover .infos-new .txt, article.card-new:hover .infos-new .details {
    opacity: 1;
}
