
/* --------------------------------------------------------------------------------
Filter
-------------------------------------------------------------------------------- */
.filter
{
    list-style-type:none;
    margin:0 auto 40px auto;
    padding:0 40px;
    text-align:left;
    width:100%;
    max-width:1024px;
}

.filter:after
{
    content: '';
    display: block;
    clear: both;
}

.filter li
{
    display:inline-block;
    margin:0 -4px 0 0;
}

/* --------------------------------------------------------------------------------
Details
-------------------------------------------------------------------------------- */
.details
{
    width:100%;
    text-align:left;
}

.details:after
{
    content: '';
    display: block;
    clear: both;
}


/* --------------------------------------------------------------------------------
Detail
-------------------------------------------------------------------------------- */
.details .detail
{
    width:33.3%;
    height:360px;
    /*opacity: 0;*/
}

.is-showing-items .detail
{
  /*opacity: 1;*/
}

@media screen and (max-width: 719px)
{
    .details .detail
    {
        width:calc(100%);
    }
}

@media screen and (max-width: 1280px)
{
    .details .detail h2
    {
        font-size:32px!important;
        line-height:34px!important;
        margin:64px 0 0 0!important;
    }
}

@media screen and (min-width: 720px) and (max-width: 1024px)
{
    .details .detail
    {
        width:calc(50%);
    }
}

.details .detail > a
{
    width:100%;
    height:100%;
    border-right:solid 1px #FFF;
    border-bottom:solid 1px #FFF;
    overflow:hidden;
    position:relative;
    text-decoration:none;
    outline:none;
    display:block;
    padding:40px;
    background-size:cover;
    background-position:50% 50%;
    
    
    transition: all 0.125s ease-in-out;
}

.details .detail > a.dark
{
    color:#444;
    background-color:#DDD;
}

.details .detail > a.light
{
    color:#DDD;
    background-color:#444;
}

.details .detail > a.dark:hover
{
    color:#FFF;
    background-color:#666;
}

.details .detail > a.light:hover
{
    color:#444;
    background-color:#BBB;
}

.details .detail p
{
    margin:0;
}


.details .detail .type
{
    font-weight:bold;
}


.details .detail h2
{
    font-size:36px;
    line-height:38px;
    margin:84px 0 0 0;
}

.details .detail .subtitle
{
    margin:12px 0 0 0;
}


/* --------------------------------------------------------------------------------
Gallery
-------------------------------------------------------------------------------- */
.details .detail.gallery > a:after
{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#000;
    content:"";
    z-index:1;
    opacity:0;
    transition: all 0.25s ease-in-out;
}

.details .detail.gallery > a:hover:after
{
    opacity:0.5;
}

.details .detail.gallery .cover
{
    position:absolute;
    top:0;
    left:0%;
    width:100%;
    height:100%;
    background: linear-gradient(to bottom left, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
}

.details .detail.gallery i
{
    opacity:0;
    transition: all 0.5s ease-in-out;
    position:absolute;
    bottom:26px;
    left:36px;
    z-index:10;
    color:#FFF;
}

.details .detail.gallery a:hover i
{
    opacity:1;
    bottom:36px;
}

.details .detail.gallery i
{
    float:left;
    font-size:48px;
    margin:0 6px 6px -6px;
}


/* --------------------------------------------------------------------------------
Print
-------------------------------------------------------------------------------- */
@media print
{
    .details .detail > a
    {
        padding:0;
    }

    .details .detail h2
    {
        margin-top:0;
    }

    .details .detail .subtitle
    {
        margin-top:0;
    }
}