.our-recent-project-section {
    background: var(--light-gray);
    margin: 0;
    padding: 120px 0;
}
.content-with-counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
}

.content-with-counter .content-box {
    width: 44%;
}

.content-with-counter .project-counter {
    width: 47%;
}

.project-counter {
    display: flex;
    justify-content: space-between;
}

.project-counter-col {
    width: calc(33.33% - 30px);
}

.project-counter-col .counter {
    font-size: 64px;
    line-height: 76px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}
.project-card {
    display: block;
    height: 100%;
}
.project-grid {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -40px;
}

.project-grid .project-card-col {
    width: 33.33%;
    padding: 0 20px;
    margin-bottom: 40px;
}
.our-recent-project-section {
    background: var(--light-gray);
    margin: 0;
    padding: 120px 0;
}

.project-card .project-items {
    position: relative;
    padding-bottom: 66.25%;
    margin-bottom: 20px;
}

.project-card .project-items img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.project-content .project-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.project-content .project-meta span:not(:last-child) {
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
}

.project-content .project-meta span:not(:last-child):before {
    content: "";
    display: block;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: var(--yellow);
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
}

.project-content .project-meta span {
    color: var(--text-color);
}

.project-content .project-info span {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-color);
}

.project-content .project-info span svg {
    margin-right: 10px;
}

.project-content .project-info span:not(:last-child) {
    margin-bottom: 10px;
}

.ongoing_projects_section .content-box {
    max-width: 580px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
.ongoing_projects_section .project-content .h4 {
    margin-bottom: 10px;
}
span.project-progress {
    background: var(--yellow);
    z-index: 1;
    padding: 5px 10px;
    position: absolute;
    border-radius: 50px;
    font-size: 14px;
    line-height: 14px;
    top: 20px;
    left: 20px;
    color: var(--white);
}
.our-recent-project-section.ongoing_projects_section {
    background-color: transparent;
}
@media only screen and (max-width:1199px){
    .our-recent-project-section {
        padding: 80px 0;
    }
    .project-grid {
        margin-left: -10px;
        margin-right: -10px;
    }
    .project-grid .project-card-col {
        padding: 0 10px;
    }
    .content-with-counter .content-box {
        width: 48%;
    }
    .content-with-counter .project-counter {
        width: 48%;
    }
    .project-counter-col {
        width: calc(33.33% - 10px);
    }
    .project-counter-col .counter {
        font-size: 36px;
        line-height: 40px;
    }
    .content-with-counter .content-box {
        width: 100%;
        margin-bottom: 40px;
    }
    .content-with-counter .project-counter {
        width: 100%;
    }
}
@media only screen and (max-width:991px){
    .our-recent-project-section {
        padding: 60px 0;
    }
    .project-grid .project-card-col {
        width: 50%;
    }
    .project-grid {
        margin-top: 40px;
    }
}
@media only screen and (max-width:767px){
    .our-recent-project-section {
        padding: 40px 0;
    }
    .project-grid .project-card-col {
        width: 100%;
    }
    .project-counter-col p {
        font-size: 14px;
        line-height: 20px;
    }
}
@media only screen and (max-width:374px){
    .project-counter-col .counter {
        font-size: 26px;
        line-height: 32px;
    }
    .project-counter-col {
        width: calc(33.33% - 5px);
    }
}