.list_item {
    max-width: 1200px;
    margin-top: 30px;
}

.list_item > div {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.list_item::after {
    content: "";
    background-color: #BABABA;
    height: 1px;
    width: 100%;
    display: block;
    margin-top: 30px;
}

.list_item .left_side {
    display: flex;
    gap: 25px;
}

.list_item .name {
    font-weight: 500;
}

.list_item .right_side {
    display: flex;
    align-items: center;
}

.right_side {
    gap: 16px;
}

.list_item:last-of-type {
    padding-bottom: 100px;
}

.list_item:last-of-type::after {
    display: none;
}

.blue_item {
    max-width: 1140px;
    padding: 25px 30px;
    background-color: #D2DBED;
    border-radius: 20px;
}

.blue_item::after {
    display: none;
}

@media (max-width: 650px) {
    .blue_item {
        padding: 20px 15px 20px 15px;
    }

    .list_item {
        margin-top: 20px;
    }

    .list_item .left_side {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .list_item .name {
        text-align: center;
    }

    .list_item > div {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
    
}