.project-section {
    background-color: var(--fv-primary-bg-color);
    padding: 140px 0 80px;
}
.filter-section {
    margin: 80px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.filter-section .filter-items {
    display: flex;
    align-items: center;
}
.filter-section .filter-item-title {
    margin-right: 45px
}
.filter-section .filter-item-title span {
    color: var(--fv-green-dark-color);
}
.filter-section .filter-item {
    margin-right: 28px
}
.filter-section .filter-item:last-child {
    margin-right: 0;
}
.filter-section .filter-item .form-select {
    max-width: 300px;
    min-width: 130px;
    border-radius: 0;
    background-color: var(--fv-green-dark-color);
    color: var(--fv-white-color);
    background-image: url(../../frontend/assets/images/expand_more_white.svg);
    background-size: 20px 30px;
}
.filter-section .filter-item .form-select#country-select {
    max-width: 160px;
}
.filter-section .filter-item .form-select:focus {
    box-shadow: none;
    border-color: transparent
}
.project-items .project-item-card {
    margin: 0 0 36px 0;
    background-color: var(--fv-white-color);
}
.project-items .project-item-card .image-box img {
    width: 100%;
    aspect-ratio: 13 / 9;
}
.project-items .project-item-card .content-box {
    background-color: var(--fv-white-color);
    padding: 10px;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.project-items .project-item-card .content-box h3 {
    font-size: 1.125rem;
    line-height: 1.625rem;
    font-weight: normal;
    color: var(--fv-black-color);
    max-height: 100px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    white-space: normal;
    margin: 0;
}
.project-item-card .content-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-item-card .content-footer > div {
    max-width: 50%;
}

.project-item-card .content-footer img {
    min-height: 40px;
    max-height: 40px;
    max-width: 150px;
    width: 100%;
    object-fit: contain;
    object-position: right;
}
.project-item-card .content-footer span {
    color: var(--fv-black-color);
    font-size: 0.9rem;
}

@media (min-width: 1200px) {
    .project-items .project-item-card {
        margin: 0 0 1.5rem 0;
    }
}

@media (min-width: 1400px) {
    .project-items .project-item-card {
        margin: 0 0 2rem 0;
    }
}
@media (max-width: 991px) {
    .project-section {
        padding: 40px 0;
    }
}
@media (max-width: 768px) {
    .filter-section .filter-item-title {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .project-section {
        padding: 40px 0;
    }
    .project-section .section-heading .section-description {
        text-align: center;
    }
    .filter-section {
        flex-direction: column;
        align-items: flex-start;
        margin: 40px 0;
    }
    .filter-section .filter-item-title {
        margin-right: 0;
        margin-bottom: 16px;
    }
    .filter-section .filter-items {
        flex-direction: column;
        width: 100%;
    }
    .filter-section .filter-item {
        margin-right: 0;
        width: 100%;
        margin-bottom: 16px;
    }
    .filter-section .filter-item:last-child {
        margin-bottom: 0;
    }
    .filter-section .filter-item .form-select {
        max-width: 100%;
    }
    .project-items .project-item-card .content-box h3 {
        font-size: 20px;
    }
    .filter-section .filter-item .form-select#country-select {
        max-width: 100%;
    }
}
