/* Tab block section */
.tab-section-button-left .tab-section_wrap {
    display: flex;
    padding-top: 0;
}

.tab-buttons {
    display: flex;
    flex-direction: column;
    width: 25%;
    flex-shrink: 0;
}
.tab-button {
    color: #818181;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    font-size: 1.7em;
    font-weight: 500;
    line-height: 1.09;
    text-transform: uppercase;
    padding: 0.7em;
    text-align: center;
    cursor: pointer;
    border: 1px solid #818181;
    flex-grow: 1;
}
.tab-button:hover,
.tab-button.active {
    border: 1px solid #000;
    color: #000;
}
.tab-content {
    position: relative;
    margin-left: -1px;
    padding: 2em 0 0 2em;
    border: 1px solid #818181;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.6em;
}
.tab-content.active {
    display: flex;
}
.services-text p {
    color: #000;
    font-size: 1em;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.19px;
}
.services-content-wrap {
    position: relative;
}
.services-list-wrap {
    display: flex;
    gap: 12px;
    flex-direction: column;
    padding-right: 2em;
    height: 29em;
    overflow: scroll;
}
.services-list-wrap::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    height: 8px;
}
.services-list-wrap::-webkit-scrollbar-thumb {
    background-color: #CCC;
}
.services-list__row-top,
.services-list__row-bottom {
    width: 100%;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.09;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.services-list__row-bottom {
    padding-bottom: 2.2em
}
.services-list__row-top li,
.services-list__row-bottom li {
    flex: 1 0 23%;
    box-sizing: border-box;
    min-height: 2.6em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.services-list__row-top li {
    color: #000;
    background: #CDFF3A;
}
.services-list__row-bottom li {
    color: #fff;
    background: #9382FF;
}
button.tab-button,
.tab-title h3 {
    font-family: 'CT2020',Arial,sans-serif;
    font-size: 1.73em;
    font-weight: 500;
    text-transform: uppercase;
}
.tab-section-button-left .tab-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 98%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 94%, rgba(255, 255, 255, 1) 97%);
    pointer-events: none;
}
.tab-content-legend {}
.tab-content-legend-list {
    list-style-type: none;
    display: flex;
    padding-bottom: 2em;
}
.tab-content-legend-list li {
    padding-left: 1.2em;
    position: relative;
    font-size: 1em;
    font-weight: 500;
    color: #000;
    line-height: 1.5;
    margin-right: 2.2em;
}
.tab-content-legend-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-30%);
}
.item-purple::before {
    background-color: #9283FF;
}
.item-green::before {
    background-color: #CDFF3A;
}

/* End Tab block section */
@media only screen and (max-width : 868px) {
    .services-list__row-top,
    .services-list__row-bottom {
        font-size: 0.9em;
        gap: 10px;
    }
}
@media only screen and (max-width : 768px) {
    .tab-section-button-left .tab-section_wrap {
        height: 100%;
    }
    button.tab-button {
        font-size: 1em;
    }
    .tab-title h3 {
        font-size: 1.3em;
    }
    .tab-content {
        flex-direction: column;
    }
    .services-list__row-top li,
    .services-list__row-bottom li {
        flex: 1 0 30%;
    }
    .tab-section-button-left .tab-item-overlay {
        left: 0;
        width: 100%;
    }
}
@media only screen and (max-width : 600px) {
    .tab-content-legend-list li {
        margin-right: 1em;
    }
}