#rpa-holder {
    position: relative;
    width: 1250px;
    height: 700px;
    margin: auto;
}

/* CONTROL */

.rpa-control-holder {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 360px;
    height: 570px;
    z-index: 2;
}

.rpa-control-button {
    /* width: fit-content; */
    padding: 10px;
    font-size: 20px;
    background-color: #ffd800;
    color: #000000;
    border-radius: 8px;
    text-align: center;
    transition: 0.2s;

}

.rpa-control-button:hover {
    cursor: pointer;
    color: #ffffff;
}


.rpa-control-button.active {
    background-color: #012F6B;
    color: #FFFFFF;
}

/* CONTENT */

.rpa-content-holder {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 1070px;
    height: 650px;
    padding-left: 200px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #d4e6f9;
    border-radius: 32px;
    z-index: 1;
}

/* CONTENT CHANGE */
.rpa-content {
    opacity: 0;
    transition: 0.4s;
    z-index: 2;
}

.rpa-content.active {
    opacity: 1;
    z-index: 4;
}

/* CONTENT */

.rpa-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(100% - 200px);
    height: 90%;
    transform: translate(0, -50%);
    
}

.rpa-content-problem-description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: #000000;
    padding-right: 10px;
    width: 50%;
}

.rpa-content-problem-description h3 {
    font-size: 18px;
}

.rpa-content-problem-description p {
    font-size: 16px;
}

.rpa-content-solution {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: #000000;
}

.rpa-content-solution h3 {
    font-size: 18px;
}

.rpa-content-solution-card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: calc(100% - 26px);
}

.rpa-content-solution-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    transition: 0.4s;
}

.rpa-content-solution-card:hover {
    background-color: #d4e6f9;
}


.rpa-content-solution-card-icon-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #F5F9FF;
    border-radius: 8px;
}

.rpa-content-solution-card-icon {
    width: 26px;
    height: 26px;
    margin: auto;
    background-image: url('https://stage.qbcs.com/wp-content/uploads/2025/03/gear.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.rpa-content-solution-card-name {
    width: 100%;
    height: 100%;
    padding: 0px 10px;
    color: #000000;
    transition: 0.4s;
}

/* .rpa-content-solution-card-name a:hover{
    background-color: #f5f9ff;
} */

.rpa-content-solution-card-name p {
    margin: 0;
}

.rpa-content-solution-card-name p:nth-child(2) {
    font-size: 14px;
}