.project-sec .grid--content .column--wrapper {
    display: column;
    columns: 3;
    gap: 20;
    break-inside: avoid;
}

.grid--content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.project-sec .post--item {
    break-inside: avoid;
    margin-bottom: 20px;
}

@media screen and (max-width: 1399px) {
    .project-sec .grid--content .column--wrapper {
        columns: 4;
    }
}

@media screen and (max-width: 991px) {
    .project-sec .grid--content .column--wrapper {
        columns: 2;
    }
}

@media screen and (max-width: 450px) {
    .project-sec.grid--content .column--wrapper {
        columns: 2;
    }
}

.section-wrapper {
    will-change: transform;
    background: #efefef;
}

.point-card {
    display: grid;
    grid-template-columns: 114px auto;
    gap: 40px;
}
.point-card:last-child .point-body{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon-wrap {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    background-color: #e9e9e9;
    padding: 22px;
    border-radius: 20px;
    border: 1px dashed #c3c3c3;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgb(50 50 93 / 3%) 0px 30px 60px -12px inset, rgb(0 0 0 / 8%) 0px 18px 36px -18px inset;
    height: fit-content;
}

.icon-wrap img {
    max-width: 60px;
    height: 100%;
    object-fit: contain;
}

.point-title {
    font-size: 30px;
}

.point-body {
    border-bottom: 1px solid rgb(213 213 213);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.section-inner {
    display: flex;
    margin: 0 auto;
}

.left-col {
    width: 40%;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.left-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.right-col {
    width: 55%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;

}

@media (max-width: 1599px) {
    .right-col {
        padding: 60px 30px 60px 60px;
    }
}
@media (max-width: 768px) {
    .section-inner {
        flex-direction: column
    }

    .left-col {
        width: 100%;
        position: relative;
        height: 56vw;
        min-height: 260px;
    }

    .right-col {
        width: 100%;
        padding: 3rem 1.5rem;
    }
}
@media (max-width: 575px) {
    .point-title {
        font-size: 24px;
    }
    .point-card{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .icon-wrap{
        display: inline-block;
        width: fit-content;
        padding: 15px;
    }
    .icon-wrap img{
        max-width: 50px;
    }
}
@media (max-width: 480px) {
    .point-card {
        gap: 10px;
    }
}

/* .process-sec{
    background-color: #b6c1b6;
} */
