.characteristics {
    margin-bottom: 120px;
}

.characteristics-title {
    font-family: 'Lato';
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
}
.characteristics-item__title {
    font-family: 'Mulish';
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 5px;
    color: #131313;
}

.characteristics-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.characteristics-list__item:not(:last-child) {
    border-bottom: 1px solid #000000;
}

.characteristics-list__item-title {
    max-width: 254px;
    font-family: 'Mulish';
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #717171;
}

.characteristics-list__item-desc {
    font-family: 'Mulish';
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: #717171;
}
.characteristics-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 47px;
}

@media (max-width: 480px) {
    .characteristics-items {
        grid-template-columns: repeat(1, 1fr);
    }
}