.feature-cards {
    display: block;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.feature-cards__container {
    display: flex;
    align-items: stretch;
    overflow: auto;
    min-height: 198px;
}

.feature-cards__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 20px;
    min-width: 160px;
    background: #0C233CBF;
    flex: 1 1 0;
}

.feature-cards__item:not(:last-child)::after {
    content: '';
    position: absolute;
    height: 100%;
    top: 14px;
    right: -2px;
    height: 40px;
    width: 4px;
    background-color: #62EBDA;
}

.feature-cards__item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 14px;
    right: 0;
    height: calc(100% - 28px);
    width: 1px;
    background-color: #fff;
}

.feature-cards__title {
    font-weight: 700;
}
