

/* ----------------------------------------------------------------------------------------
*                               06. Portfolio/work area css
* --------------------------------------------------------------------------------------- */
.portfolio .mix {
    display: none;
}

.filters {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}



.filters li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    width: 70px;
    cursor: pointer;
    color: #777;
    font-size: 16px;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    padding: 5px;
}

.filters li.active {
    color: #fff;
    background-color: #777;
}

.filters li span {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
    margin-top: 5px;
}

.work-items {
    margin-top: 20px;
}

.work-items .item {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.work-items .item img {
    width: 100%;
    transition: 0.8s ease-out;
    height:270px; 
}

.work-items .overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    text-align: center;
    opacity: 0;
    transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
    -ms-transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
    -moz-transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.work-items .item:hover {    
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    z-index: 100;
}
.work-items .item:hover .overlay {
    opacity: 0.9;
    width: 100%;
    height: 85%;
    top: 0;
    left: 0;
}

.work-items .overlay i.fa {
    font-size: 20px;
    color: #fff;
    background-color: #ffa500;
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.item .title {
    color: #fff;
    background: #1e3f8b;
    padding: 10px;
    font-size: 14px;
    text-align: center; 
}
.item .title:hover {
	text-decoration:none;
    color: #fff;
}

.item a:hover {
    text-decoration:none;
}
