.list-section-ct {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    margin: 80px 0;
}

.list-section-ct .img {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.list-section-item {
    position: relative;
    min-height: 320px;
    margin-bottom: 50px;
}




.list-section-item .inner-ct {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
}

.list-section-item .inner-ct span {
    font-size: 14px;
}


.list-section-item::before {
    content: "";
    position: absolute;
    width: 100%;
    box-shadow: inset 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
    height: 7px;
}

.arw-img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    transform: translateY(-50%);
}

.arw-img {
    display: none;
}

.arw-img-mobile {
    position: absolute;
    display: flex;
    top: 0;
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
}



.list-section-ct .img img {
    height: 100%;
}


@media(min-width:992px) {
    .list-section-ct {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }


    .list-section-item .inner-ct {
        padding: 20px 50px;
    }


    .list-section-item::before {
        content: "";
        position: absolute;
        width: 7px;
        box-shadow: inset 4px 0px 4px 0px rgba(0, 0, 0, 0.25);
        height: 100%;
    }

    .arw-img-mobile {
        display: none;
    }

    .arw-img {
        display: flex;
        position: absolute;
        top: 50%;
        left: 0;
        width: 40px;
        transform: translateY(-50%);
    }
}
