.list-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.list-services-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.list-service-tab.is-active,
.list-service-tab:hover {
    color: #12c4eb;
}

.list-service-tab {
    background: #F7F7F7;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F1F1F1;
    box-shadow: 0px 0px 15px 3px #EEEEEE;
    color: #00dcab;
    font-weight: 700;
    display: flex;
    gap: 20px;
    padding: 15px 35px;
    cursor:pointer;
}
.list-service-tab p
{
    align-content: center;
    text-align: start;
}
.services-accordion {
    width: 100%;
}

/* MAIN SERVICE ACCORDION */
.service-item {
    font-size: 14px;
    box-shadow: 0px 0px 15px 3px rgba(238, 238, 238, 1);
    margin-top: 10px;
}
.service-header {
    width: 100%;
    background: #f9fafb;
    border: 0;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.service-header[aria-expanded="true"] {
    background: #334454;
    color: #ffffff;
}

.service-body {
    background: #ffffff;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* SUB ACCORDIONS */

.service-sub-accordion {
    background-color: #F7F7F7;
    padding: 10px 5px;
    margin: 0;
    align-items: center;
}

.service-sub-header {
    outline: none;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
    line-height: 1;
    padding: 15px 20px;
    background: #f3f3f3;
    transition: all 300ms cubic-bezier(0, .49, .27, .99);
    border: 0;
    border-left: 5px solid #12c4eb;
    margin-bottom: 0;
    font-weight: normal;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.service-sub-body {
    padding: 15px 20px;
    background:#f7f7f7;
    margin-block-start: 0;
}

.service-sub-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-sub-body li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}
html[lang='ar'] .service-sub-body li {
    padding-left: 0px;
    padding-right: 20px;
}
.service-sub-body li > ul li:before {
    content: '\f00c';
    color: #01DAAF;
    font-family: FontAwesome;
    height: 0 ;
    left: 0px ;
    top: 0px;
}
html[lang='ar'] .service-sub-body li > ul li:before {
    right:0px;
}

.service-sub-body li:before {
    content: '';
    height: 4px ;
    width: 40px ;
    background-color: #01DAAF ;
    border-radius: 0% ;
    display: inline-block;
    position: absolute;
    left: -40px ;
    top: 9px ;
}
html[lang='ar'] .service-sub-body li:before {
    right:-40px;
}

/* ICONS */
.service-toggle-icon,
.service-sub-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}
.term-icon {
    width: 40px;
    height: 40px;
}
[aria-expanded="true"] .service-toggle-icon,
[aria-expanded="true"] .service-sub-icon {
    transform: rotate(-135deg);
}