.table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 97px;
}

.table__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    transition: .3s;
    height: 39px;
    text-align: center;
    border-bottom: 1px rgba(10, 44, 102, 0.08) solid;
}
.table__item:nth-last-child(1) {
    border-bottom: none;
}
.table__item:nth-last-child(2) {
    border-bottom: none;
}
.table__item:hover {
    background: #8db4ff;
}
.table__item a {
    text-align: center;
}