.portfolio-our-works-custom-card {
    width: 100%;
    margin: 10px;
    background-color: transparent;
    border: none;

}

.portfolio-our-works-custom-card .our-works-img {
    display: block;
    width: 100%;
    height: auto;
    min-width: 250px;
    min-height: 250px;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-our-works-custom-card:hover .our-works-img {
    transform: scale(1.1);
    filter: brightness(0.7);
}



.portfolio-our-works-custom-card .card-body {
    padding: 0 0;
    width: 100%;
}


.portfolio-our-works-custom-card .card-body .card-text {
    font-size: 21px;
    font-weight: 600;
    line-height: 31.5px;
    text-align: left;
    color: var(--secondary-color);

}

.portfolio-our-works-custom-card .card-body .card-sub-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
    color: #B7B7B7;

}

.portfolio-our-works-custom-card a {
    text-decoration: none;
    overflow: hidden;
}


/* Responsive Design for max-width 768px */
@media (max-width: 768px) {
    .portfolio-our-works-custom-card {
        margin: 5px;
        padding: 10px;
    }

    .portfolio-our-works-custom-card .card-body .card-text {
        font-size: 18px;
        line-height: 26px;
    }

    .portfolio-our-works-custom-card .card-body .card-sub-text {
        font-size: 11px;
        line-height: 16px;
    }

    
    .portfolio-our-works-custom-card .our-works-img {
        min-width: 220px;
        min-height: 220px;
    }
    
}

/* Responsive Design for max-width 576px */
@media (max-width: 576px) {
    .portfolio-our-works-custom-card {
        margin: 0;
    }

    .portfolio-our-works-custom-card .card-body .card-text {
        font-size: 16px;
        line-height: 24px;
    }

    .portfolio-our-works-custom-card .card-body .card-sub-text {
        font-size: 10px;
        line-height: 15px;
    }

    
    .portfolio-our-works-custom-card .our-works-img {
        max-height: 200px;
        min-width: 180px;
        min-height: 180px;
    }
}