.values-box {
    border-left: 4px solid rgba(238, 242, 251, 1);
    padding-left: 16px;
    position: relative;
}

.values-box::before {
    content: '';
    width: 4px;
    background: rgba(213, 216, 224, 1);
    position: absolute;
    left: -4px;
    height: 35px;
    top: 0;
    animation: moveUpDown 2s infinite alternate;
}

@keyframes moveUpDown {
    0% {
        top: 0;
    }

    100% {
        top: calc(100% - 35px);
    }
}

.values-box img {
    width: 39px;
    height: 39px;
    margin-bottom: 14px;
}

.values-box-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: rgba(19, 9, 17, 1);
    margin-bottom: 32px;
}

.values-box-des {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
    color: rgba(99, 100, 102, 1);
}

@media (max-width: 991px) {
    .values-box {
        padding-left: 0;
        border-left: 0;
        padding-bottom: 26px;
        border-bottom: 4px solid rgba(238, 242, 251, 1);
    }

    .values-box::before {
        content: '';
        width: 35px;
        background: rgba(213, 216, 224, 1);
        position: absolute;
        bottom: -4px;
        height: 4px;
        top: auto;
        left: 0;
        animation: moveright 2s infinite alternate;
    }

    @keyframes moveright {
        0% {
            left: 0;
        }

        100% {
            left: calc(100% - 35px);
        }
    }

    .values-box {
        margin-bottom: 26px;
    }

    .values-box img {
        margin: 0 auto 14px;
    }

    .values-box-title {
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
        text-align: center;
        margin-bottom: 23px;
    }

    .values-box-des {
        font-weight: 400;
        font-size: 14px;
        line-height: 26px;
        text-align: center;
    }
    .section-values .col-lg-4:last-child .values-box{
        margin: 0;
        border: 0;
        padding: 0;
    }
    .section-values .col-lg-4:last-child .values-box::before{
        display: none;
    }
}