.methods-content-title {
    font-weight: 500;
    font-size: 36px;
    color: rgba(20, 11, 18, 1);
    margin-bottom: 32px;
    line-height: 100%;
}

.methods-content-des {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    color: rgba(99, 100, 102, 1);
    margin-bottom: 24px;
}

.methods-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.methods-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 0;
}

.methods-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    width: 33%;
    position: relative;
}

.methods-list li::after {
    content: '';
    width: 4px;
    height: 60px;
    background: rgba(225, 230, 241, 1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.methods-image img {
    width: 100%;
}

.methods-list li:last-child:after {
    display: none;
}

.methods-list li span {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: rgba(0, 0, 0, 1);
}

@media (max-width: 991px) {
    .methods-content-title {
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
        text-align: center;
        margin-bottom: 22px;
    }

    .methods-image {
        margin-bottom: 22px;
    }

    .methods-content-des {
        font-weight: 400;
        font-size: 14px;
        line-height: 30px;
        text-align: justify;
    }

    .methods-list li span {
        font-size: 12px;
    }
    .methods-list li{
        width: 29%;
    }
    .methods-list li::after{
        right: -12%;
    }
}