.project-page-item {
    padding-bottom: 35px;
}

.project-page-item-description {
    font-size: 13px;
    border-top: 0;
    padding: 35px 28px;
    transition: all .3s ease;
    height: 180px;
    background-color: #f2f4fa;
}

.project-page-item-description:hover {
    background-color: #002e5b;
    color: #fff !important;
}

.project-page-item-description h5 {
    padding: 0;
    margin: 0 0 9px;
    line-height: 24px;
    font-size: 18px;
    font-weight: 700;
}

.project-page-item-description h5 a {
    text-decoration: none!important;
}

.project-page-item-description p {
    line-height: 22px;
    font-size: 14px;
}

.project-detail-content h2 {
    color: #243238;
    line-height: 24px;
    padding: 25px 0px;
}

.project-detail-content p {
    color: #243238;
    line-height: 24px;
    margin: 0 0 15px;
}

.project-detail-content h4 {
    text-align: left;
    line-height: 34px;
    font-size: 28px;
    font-weight: 700;
    color: #002e5b;
    margin-bottom: 30px 0px;
    text-transform: none;
}

.project-detail-content h4:after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: #6c98e1;
    margin: 14px 0 0;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

.from-left {
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

.from-right {
    animation: 1s ease-out 0s 1 slideInFromRight;
}

.from-bottom {
    animation: 1s ease-out 0s 1 slideInFromBottom;
}

.project-page-item-thumbnail
{
    opacity: 1;
    position: relative;
}

.project-page-item-thumbnail .img-overlay {
    background-image: -webkit-linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, .9) 100%);
    background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .9) 100%);
}

.project-page-item-thumbnail:hover {
    opacity: 0.6;
    transition: .5s ease;
}


.project-page-item-info {
    height: 100%;
    position: relative;
}

.project-page-item-customer {
    background-color: #fade2a;
    text-decoration: none;
    background: #FBBE3F;
    display: inline-block;
    padding: 5px 20px;
    color: #2A2F35;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
}

.project-page-item-price {
    background-color: #fade2a;
    text-decoration: none;
    background: #FBBE3F;
    display: inline-block;
    padding: 5px 20px;
    color: #2A2F35;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 100%;
}