.cx-problem {
    position: relative;
    overflow: hidden;
    background-color: #F08418;
}

.cx-problem-title {
    margin-bottom: calc(24 * 1px + (40 - 24) * ((100vw - 320px) / 1120));
}

.cx-problem__intro,
.cx-problem__list {
    position: relative;
    z-index: 1;
}

.cx-problem__intro {
    padding-right: 40px;
}

.cx-problem__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: white;
}

.cx-problem__highlight {
    color: #191d5b;
}

.request-demo-btn-black {

    background-color: #191d5b;
    max-width: 296px;
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Graphik";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    transition: all .3s, box-shadow .5s;
}

.request-demo-btn-black:hover {
    background: white;
    color: #F08418;
    transition: all .3s, box-shadow .5s;
    box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.4);
}

.cx-problem__lead {
    margin-top: 16px;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.cx-problem__list {
    display: flex;
    flex-direction: column;
    /* gap: 18px; */
}

.request-demo-btn {
    margin-top: 40px;
}

.cx-problem__item {
    position: relative;
    background-color: transparent;
    color: #fff;
    font-family: "Graphik";
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: start;
    margin-bottom: 24px;
    margin-left: 60px;
}

.cx-problem__item:not(.active_cx-problem):hover {
    opacity: 0.7;
}

.cx-problem__title {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 0 0 40px;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: "Graphik";
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    cursor: pointer;
    transition: color .25s ease;
}

.cx-problem__title::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -24px;
    width: 5px;
    height: 2px;
    background-color: #fff;
    transition: .3s;
    border-radius: 50px;
}

.cx-problem__desc {
    display: none;
    margin-top: 12px;
    padding-left: 40px;
    opacity: 0.7;
    color: white;
    font-family: "Graphik";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.cx-problem__item.active_cx-problem .cx-problem__title {
    color: white;

}

.cx-problem__item.active_cx-problem .cx-problem__title::before {
    background-color: white;
    width: 25px;
    left: -48px;
}

.cx-problem__item.active_cx-problem .cx-problem__desc {
    display: block;
}

@media (max-width: 992px) {
    .cx-problem__intro {
        padding-right: 0;
        margin-bottom: 24px;
    }
}