@charset "utf-8";


/* ==============================
   Portfolio
   ============================== */


.works-filter{
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.07em;
    cursor: default;
}
.works-filter a{
    display: inline-block;
    position: relative;
    margin: 0 27px;
    padding-bottom: 2px;
    color: #111;
    opacity: .6;
    text-decoration: none;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    cursor: pointer;
}
.works-filter a:hover{
    opacity: 1;
    text-decoration: none;
}
.works-filter a.active{
    opacity: 1;
    cursor: default;
}
.works-filter a.active:hover{
    color: #111;
}
.works-filter a:after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: #171717;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: transform .25s ease-out;
    transition: transform .25s ease-out;
}
.works-filter a.active:after{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.works-filter a:hover:after{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
.light-content .works-filter a{
    color: #fff;
    opacity: .72;
}
.light-content .works-filter a:hover,
.light-content .works-filter a.active{
    color: #fff;
    opacity: 1;
}
.light-content .works-filter a:after{
    background-color: #fff;
}


/*
 * Works grid 
 */

.works-grid{
    list-style: none;
    margin: 0;
    padding: 0;
}
.work-item{
    width: 25%;
    float: left;
    margin: 0;  
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.work-grid-2 .work-item{
    width: 49.99%;
}
.work-grid-3 .work-item{
    width: 33.333%;
}
.container .work-grid-3 .work-item{
    width: 33.2%;
}
.work-grid-5 .work-item{
    width: 20%;
}

.works-grid.work-grid-gut{
    margin: 0 0 0 -30px;
}
.works-grid.work-grid-gut .work-item{
    padding: 0 0 30px 30px;
}

.work-item > a{
    display: block;    
    padding: 0 0 100px 0;
    position: relative;
    box-sizing: border-box;
    text-decoration: none;
}
.work-item a,
.work-item a:hover{
    color: #111;
    border: none;
}
.light-content .work-item a,
.light-content .work-item a:hover{
    color: #fff;
}
.work-img{
    position: relative;
    overflow: hidden;
    -webkit-transform: rotate(0.0001deg) translateZ(0);
    transform: rotate(0.0001deg) translateZ(0);
}
.work-img-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}
.light-content .work-img-bg{
    background-color: #282828;
}
.work-img img{
    display: block;
    position: relative;
    width: 100%;    
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.work-intro{
    width: 100%;
    height: 100px;
    padding: 20px 20px 0 20px;    
    box-sizing: border-box;    
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.work-title{
    margin: 0 0 3px 0;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.container .work-grid-4 .work-title,
.container .work-grid-5 .work-title{
    font-size: 18px;
}
.work-descr{   
    display: inline-block; 
    font-size: 16px;
    text-align: center;;
    line-height: 1.2;
    text-transform: none;
    opacity: .8;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.works-grid.hide-titles .work-item > a{
    overflow: hidden;    
    padding: 0;
}
.works-grid.hide-titles .work-item .work-intro{
    opacity: 0;
    bottom: 20px;
}
.works-grid.hide-titles .work-item:hover .work-intro{
    opacity: 1;
}



/* Work item hover state */

.work-intro{
    -webkit-transition: all 0.35s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.35s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -webkit-transform: rotate(0.001deg);
    transform: rotate(0.001deg);
    will-change: transform;
}
.work-item:hover .work-intro{
    color: #fff; 
    -webkit-transform: translateY(-115px);
    transform: translateY(-115px);   
    z-index: 3; 
}
.work-item:hover .work-title,
.work-item:hover .work-descr{;
    color: #fff;
    -webkit-transition: all 0.35s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.35s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.work-item .work-img:after{
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(250,250,250, 0);
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    
}
.work-item:hover .work-img:after{    
    background: rgba(20,20,20, .85);
}

.works-grid.hover-white .work-item:hover .work-intro,
.works-grid.hover-white .work-item:hover .work-title,
.works-grid.hover-white .work-item:hover .work-descr{
    color: #000;
}
.works-grid.hover-white .work-item:hover .work-img:after{    
    background: rgba(250,250,250, .9);
}

.work-item .work-img > img{ 
    -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.work-item:hover .work-img > img{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

/*
 * Works full view
 */

.work-full{
    display: none;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
}
.work-full-load{
    padding-top: 60px;
}

/* Work navigation */

.work-navigation{
    width: 100%;
    background: #fff;    
    font-size: 16px; 
    font-weight: 600;   
    z-index: 99;
}
.work-navigation .fa{
    position: relative;
    top: 1px;
    font-size: 14px;
}
.work-navigation .fa-times{
    font-size: 16px;
    margin-top: -2px;
}
.work-navigation a{
    display: block;
    float: left;
    width: 33.33333%;
    overflow: hidden;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
    cursor: default;
}
.work-navigation a,
.work-navigation a:visited{ 
    color: #757575; 
}
.work-navigation a:hover{ 
    color: #111; 
}
.work-navigation a span{
    display: inline-block;
    height: 80px;
    line-height: 79px;
    padding: 0 4%;
    background: #fff;
    cursor: pointer;
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}
.work-navigation span:hover{
    background: #f5f5f5;
}
.work-prev{
    text-align: left;
}
.work-all{
    text-align: center;
}
.work-next{
    text-align: right;
}
.work-container{
    padding: 50px 0;
}
.work-full-title{
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}
.work-full-media{
    margin-top: 30px;
}

.work-full-media img{
    max-width: 100%;
    height: auto;
}
.work-full-text{
    text-align: left;
    font-size: 18px;
    color: #757575;
}
.work-detail p:last-child{
    margin-bottom: 0;
}
.work-full-detail{
    font-size: 15px;
    color: #757575;
}
.work-full-detail p{ 
    padding: 4px 0;
    margin: 0;
    border-top: 1px solid rgba(0,0,0, .1);
}
.work-full-detail p:last-child{
    border-bottom: 1px solid rgba(0,0,0, .1);
}
.work-full-detail p strong{ 
    width: 100px;
    display: inline-block;
}
.work-full-action{
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
    text-align: center;
}
.light-content .work-full-text{
    color: #bbb;
}
.light-content .work-full-detail{
    color: #bbb;
}
.light-content .work-full-detail p{ 
    border-color: rgba(255,255,255, .1);
}
.light-content .work-full-detail p:last-child{
    border-color: rgba(255,255,255, .1);
}
.work-navigation.light-content a,
.work-navigation.light-content a:visited{ 
    color: #bbb; 
}
.work-navigation.light-content a:hover{ 
    color: #fff; 
}
.work-navigation.light-content a span{
    background-color: transparent;
}
.work-navigation.light-content span:hover{
    background-color: rgba(255,255,255, .05);
}

// JavaScript Document