﻿
.intro 
{
    position: fixed;
    left: 0;
    right: 0;
    top:0;
    bottom:0;
    list-style: none;
    padding-left: 0px;
    z-index: 150;
    margin: 0px;
    background: #333333;
}
.intro li 
{
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.intro span.skip {
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 2000;
    font-size: 48px;
    color: #FFFFFF;
    cursor: pointer;
}

/*
    Figure
**/
figure .wrapper
{
   position: relative;
   width: 100%;
   padding-top: 56.25%; /* 16:9 Aspect Ratio */
   display: inline-block;
   overflow: hidden;
}

figure .wrapper .holder 
{
   position:  absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
}

figure .wrapper .holder img 
{
    width: auto;
    height: 100%;
}

/*
    Paging
**/

ul.paging
{  
    list-style-type: none;
    padding: 0px;
}

.paging .page-item 
{
    width: 100%;
    border-bottom: 1px solid #CCCCCC;
}

.paging .page-item .cover figure 
{
    line-height: 0px
}

.paging .page-item .cover figure .wrapper
{
   padding-top: 70%; /* ?:? Aspect Ratio */
}

.paging .page-item .cover figure .wrapper .project-name {
    position: absolute;
    bottom: 10px;
    left: 0;
    padding: 5px 15px 5px 50px;
    background: #CCCCCC;
    text-shadow: none;
    color: #666666;
    font-size: 16px;
    line-height: 16px;
    max-width: 400px;
}

.paging .page-item .cover > *
{
    margin-bottom: 0px;
}

.paging .page-item .cover aside 
{
    position: relative;
    text-align: center;
    display: none;
}

.paging .page-item .cover aside h1 {
    position: absolute;
    left: -15px;
    right: 15px;
    bottom: 50%;
    color: #A3A3A3;
    font-size: 28px;
}

.paging .page-item .cover aside .holder {
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: 40%;
    margin: 0px auto;
}

.paging .page-item .cover aside .holder p 
{
    color: #898989;
    padding: 0px 5%;
}

.paging .page-item .cover aside .holder p.caption 
{
    display: none;
}

.paging .page-item .cover aside .holder p.links {
    color: #A3A3A3;
}

.paging .page-item .cover aside .holder p.links span:not(:first-child):before {
    content: ' & ';
    color: #C4C4C4;
}

.paging .page-item .cover aside .holder a {
    color: #A3A3A3;
    display: inline-block;
}

.paging .page-item .portfolio 
{
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 50px;
    min-height: 600px;
}

.paging .page-item .portfolio h1 
{
    text-transform: capitalize;
    font-variant: small-caps;     
    font-weight: normal;
    font-size: 32px;
    margin-bottom: 20px;
    color: #666666;
}

.paging .page-item .portfolio .project figure 
{
    border: 2px solid #D3D3D3;
    overflow: hidden;
    line-height: 0;
}

.paging .page-item .portfolio .project figure .wrapper
{
   padding-top: 51.8%; /* (?!) 16:9 Aspect Ratio */
}

.paging .page-item .portfolio .project figure figcaption 
{
    padding: 5px 20px;
    overflow: hidden;
    color: #888888;
    font-size: 14px;
    line-height: 20px;
    display: none;
    height: 50px;
    align-items: center;
}

@media (min-width: 576px) 
{
    .container 
    {
        padding-left: 15px;
        padding-right: 15px;
    }
    .paging .page-item .portfolio .project figure
    {
        line-height: initial;
    }
    
    .paging .page-item .portfolio .project figure figcaption 
    {
        display: flex;
    }
}

@media (min-width: 768px) 
{
    .paging .page-item .cover aside
    {
        display: block;
    }
    
}

@media (min-width: 992px) 
{
    .paging .page-item .cover aside .holder p.caption
    {
        display: block;
    }
    
}

