@media screen and (min-width:64em){
    .flip_listing .item {
        position: relative; 
        padding: 1.5rem;
        cursor: pointer;
    }
    .flip_listing .item .item_title {
        position: absolute;
        top: 1.9375rem; left: 1.9375rem; right: 1.9375rem; bottom: 1.9375rem;
        width: auto; height: auto;
        z-index: 20; pointer-events: none;
        opacity: 1; transition: all .25s ease;
    } 


    .flip_listing .item .item_content {
        background-color: #F5F5F5;
    }

    .flip_listing .item .item_content:hover .item_title,
    .flip_listing .item .item_content .item_content_inner  {
        opacity: 0;
        transition: all .25s ease;
    }

    .flip_listing .item .item_content:hover .item_content_inner {
        opacity: 1;
        transition: all .25s ease;
    }

}