/* Pros and Cons Template */

.section-pros-cons {
    background: #e4e5e5;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
}
@media (max-width: 768px) {
    .section-pros-cons {
        padding: 20px 30px;
   }
}
.section-pros-cons .verdict {
    margin-bottom: 20px;
}
.section-pros-cons .verdict .label-text {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
}
.section-pros-cons .verdict .content {
    font-weight: 500;
    font-size: 16px;
}
.section-pros-cons .verdict p {
    line-height: 20px !important;
}
.section-pros-cons .pros {
    width: 50%;
    margin: 0 !important;
    border-right: 2px dotted #ffffff;
    font-size: 16px !important;
}
@media (max-width: 768px) {
    .section-pros-cons .pros {
        width: 100%;
        border-right: 0;
        margin-bottom: 20px !important;
   }
}
.section-pros-cons .pros .label-text {
    text-transform: uppercase;
    font-weight: 700;
    color: #07a816;
    font-size: 16px;
}
.section-pros-cons .pros ul li {
    display: flex;
    padding: 5px 0;
    font-size: 16px;
}
.section-pros-cons .pros .list p span {
    margin-right: 20px;
}
.section-pros-cons .cons {
    width: 50%;
    margin: 0 !important;
    padding-left: 20px !important;
    font-size: 16px !important;
}
@media (max-width: 768px) {
    .section-pros-cons .cons {
        width: 100%;
        margin-top: 10px;
        padding-left: 0 !important;
   }
}
.section-pros-cons .cons .label-text {
    text-transform: uppercase;
    font-weight: 700;
    color: #e9393b;
    font-size: 16px;
}
.section-pros-cons .cons ul li {
    display: flex;
    padding: 5px 0;
    font-size: 16px;
}
.section-pros-cons .cons .list p span {
    margin-right: 20px;
}
.section-pros-cons .label-text i {
    margin-right: 5px;
}
.section-pros-cons p {
    margin: 0 !important;
}
.section-pros-cons ul {
    list-style: none;
	margin: 0 !important;
}