/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/
.Project {
    padding-bottom: 60px;
}

.Project #Project-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
}

.Project #Project-flters li {
    cursor: pointer;
    margin: 0 12px 5px 12px;
    display: inline-block;
    padding: 0 4px 6px 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #444;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #fff;
    font-family: "Roboto", sans-serif;
}

.Project #Project-flters li:hover,
.Project #Project-flters li.filter-active {
    border-color: #68A4C4;
    color: #68A4C4;
}

.Project .Project-item {
    background: rgba(1, 10, 53, .8);
    content: "";
    overflow: hidden;
    min-height: 195px;
    position: relative;
    border-radius: 4px;
    margin: 0 0 30px 0;
}

.Project .Project-item img {
    transition: all 0.3s ease-in-out;
}

.Project .Project-item .Project-info {
    opacity: 0;
    position: absolute;
    transition: all 0.3s linear;
    text-align: center;
    top: 5%;
    left: 0;
    right: 0;
}

.Project .Project-item .Project-info h3 {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}

.Project .Project-item .Project-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.Project .Project-item .Project-info a i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    transition: 0.3s;
}

.Project .Project-item .Project-info a i:hover {
    color: white;
}

.Project .Project-item:hover img {
    opacity: 0.6;
    transform: scale(1.1);
}

.Project .Project-item:hover .Project-info {
    opacity: 1;
    top: calc(50% - 30px);
}