/*** PROS & CONS ***/
section.pros_cons {
    padding: 10px 0;
}

.pros_cons_wrap {
    border: 1px solid var(--gray);
    padding: 20px 20px 10px;
    border-radius: 10px;
    margin: 0 10px;
    flex: 1;
    background: var(--bg-gray);
}

.pros_cons_title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
    font-weight: 600;
}

.pros_icon, .cons_icon {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.pros_icon {
    background: green;
}

.cons_icon {
    background: red;););););
}

.pros_icon span, .cons_icon span {
    height: 2px;
    width: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--wh);
}

.pros_icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.pros_list, .cons_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros_list li, .cons_list li {
    padding-left: 20px;
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.pros_list li:before, .cons_list li:before {
    content: '';
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: 5px;
    left: 0;
}

.pros_list li:before {
    background: green;
}

.cons_list li:before {
    background: red;
}

/*** END PROS & CONS ***/
