.projects-gallery-section {
    padding: 0;
    margin: 0;
    background: white;
}
.projects-gallery-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 140px 16px;
    min-height: 597px;
    justify-content: center;
    max-width: 1712px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.project-card {
    position: relative;
    flex: none;
    width: calc(33.33% - 12px);
    height: 597px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-gray-200);
}
.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.project-logo-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    display: flex
;
    align-items: center;
    justify-content: center;
    padding-right: 17px;
    padding-bottom: 18px;
    border-bottom-right-radius: 32px;
}
.project-logo-text {
    color: white;
    border-radius: 20px;
    width: 100%;
    width: 132px;
    height: 132px;
    background-color: #A37E2C;
    text-align: left;
    font-family: 'Inter', var(--font-heading);
    font-weight: var(--font-weight-bold);
/*    padding-top: 24px;*/
/*    padding-left: 16px;*/
    display: flex;
    align-items: center;
    justify-content: center;

}
.project-arrow-button {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: white;
    border-top-left-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-top: 18px;
    padding-left: 18px;
}
.project-arrow-button-bg {
    background-color: #006039;
    width: 132px;
    height: 132px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow-container {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}
.arrow-icon {
    width: 50px;
    height: 50px;
    color: white;
    fill: white;
}
@media (max-width: 880px) {
    .projects-gallery-container {
        padding: 16px;
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }
    .project-card {
        width: 100%;
    }
    .no-project-section{
        margin-top: 100px;
    }
}
@media (max-width: 480px) {
    .project-arrow-button-bg {    
        width: 82px;
        height: 82px;
        border-radius: 8px;
    }
    .project-arrow-button{
        padding-top: 4px;
        padding-left: 8px;
        border-top-left-radius: 20px;
    }
    .project-logo-badge {
        width: 82px;
        height: 82px;
        border-radius: 8px;
        padding-right: 6px;
        padding-bottom: 7px;
    }
    .logo-company-name img{
        width: 80%;
    }
    .logo-company-name{
        display: flex;
        justify-content: center;
    }
    .project-image{
        aspect-ratio: 291 / 310;
    }
    .project-card {
        height: auto;
    }
    .project-logo-text {
        border-radius: 8px;
        width: 82px;
        height: 82px;
    }
    .no-project-section {
        margin-top: 80px;
    }
    .projects-gallery-container{
        gap:16px;
    }
}