.tools-flex {
    display: flex;
    justify-content: space-between;


}

.tools-flex:not(:last-child) {
    margin-bottom: 30px;
}

.tools-item {
    
    position: relative;
    display: flex;
    width: 384px;
    padding: 20px 40px;
    /* height: 100px; */
    background-color: #f2f2f2;
}

.tools-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: #555;
}

.tools-title {
    display: flex;
    justify-items: center;
    align-items: center;
    margin-right: 20px;
    word-break: keep-all;
    white-space: nowrap;
    color: #6a91ad;
    font-weight: bold;
}


.tools-link {
    margin-right: 14px;
    line-height: 28px;
    color: #333;
}

.tools-link:hover {
    font-weight: bold;
}

.tools-image img {
    display: block;
    width: 283px;
    height: 90px;
}

.tools-column_title {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}