.portfolio-section-1{
    padding: 220px 0 120px;
    background-color: #EDF0F7;
}

.portfolio-title{
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-desc{
    max-width: 896px;
    font-size: 24px;
    text-align: center;
    display: block;
    margin: auto;
}

.portfolio-section-2{
    padding: 120px 0;
}

.portfolio-items-container{
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
}

.works-card{
    width: 50%;
    cursor: pointer;
}

.works-img{
    max-width: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.works-card:hover img{
    transform: scale(1.1); /* You can adjust the scale value as per your preference */
}

.works-card-img{
    overflow: hidden;
    border-radius: 10px;
}

.works-card-text-section{
    padding: 32px;
}

.works-card-title-row{
    border-bottom: 1px solid #1A202C;
    margin-bottom: 12px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: end;
}

.works-card-title{
    text-align: left;
    margin-bottom: 12px;
    font-size: 24px;
}

.works-card-desc{
    font-size: 16px !important;
    margin: 0 !important;
    text-align: left;
}

@media (max-width: 991px) {
    .portfolio-title {
        font-size: 32px;
    }

    .portfolio-desc{
        font-size: 16px;
    }
}

@media (max-width: 819px) {
    .portfolio-section-1 {
        padding: 130px 0 80px;
    }

    .portfolio-section-2{
        padding: 80px 0;
    }
}

@media (max-width: 711px){
    .grid-item {
        width: 100%; /* Set the width of both items to 50% */
    }

    .grid-item-gutter {
        width: 0; /* Set the width of both items to 50% */
    }

    .grid-height-set-a,.grid-height-set-b,.grid-height-set-c,.grid-height-set-d,.grid-height-set-e{
        max-height: unset;
    }
}

@media (max-width: 575px) {
    .portfolio-section-1 {
        padding: 90px 0 40px;
    }

    .portfolio-section-2{
        padding: 40px 0;
    }

    .portfolio-items-container{
        display: block;
        margin-bottom: 0;
    }

    .works-card{
        width: 100%;
        margin-bottom: 32px;
    }
}