/****************************************************** */
/******************* 10. Project Section ************** */
/****************************************************** */
body{
    overflow-x: hidden;
}

.project-wrap .project-col {
    padding: 0 15px;
}

.project-section .section-heading-content {
    margin-bottom: 64px;
}

.project-grid {
    margin-bottom: 30px;
}

.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
}

.project-img:hover .project-overlay {
    transform: scale(0.9);
}

.project-overlay {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .3s;
    transform: scale(0);
    background: linear-gradient(to right, #ff5816, #ff9f18);
}

.project-overlay a {
    color: #FFFFFF !important;
    font-size: 40px;
    margin-bottom: 40px;
}

.project-overlay h5 {
    color: #FFFFFF;
    font-size: 25px;
    margin-bottom: 14px;
    margin-top: 0;
}

.project-overlay h6 {
    color: var(--heading-color, #000F3C);
    font-size: 12px;
    font-family: 'Heebo', sans-serif;
}