/* - Services - */
.tab-panel {
    display: flex;
    flex-wrap: wrap;
}

.tab-panel__header {

    font-size: 12px;
    position: relative;
    top: 1px;
}

.tab {
    flex: 0 0 25%;
    /* Four tabs per row */
    box-sizing: border-box;
    background-color: #101010;
    border: 1px solid #9099A2;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    z-index: 0;
}

.tab--selected {
    font-size: 14px;
    font-weight: bold;
    padding-top: 6px;
    z-index: 1;
}

.tab--selected .tab__label {
    color: #4bffa5;
    text-decoration: underline;
}

.tab .tab__label:hover {
    color: #6D7993;
}

.tab__label_content {
    position: relative;
    padding-left: 45px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
}

.tab__label {
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.tab-panel__content {
    margin-top: 20px;
    background-color: #101010;
}



.dot {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #4bffa5;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    display: inline-block;
}

.dot.multi-lines {
    top: 12px !important;
}
.small-font {
    font-size: 16px !important;
}
/* Artificial Intelligence */
.custom-text .inline-title {
    color: #4bffa5;
    font-size: 20px;
    text-decoration: underline;
    font-weight: 400;
    cursor: pointer;
}

.highlights-title {
    font-weight: bold;
    color: #4bffa5;
}

.points-holder {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.table-row {
    display: flex;
    justify-content: space-around;
    box-sizing: border-box;
}

.table-row>div {
    border: 1px solid #9099A2;
    flex: 1;
    text-align: center;
    padding: 10px;
    min-width: 130px;
}

/* case study table */
.case-study-title {
    color: #fff;
    text-align: center;
}

.case-study-title span {
    color: #4bffa5;
}

.case-study-holder {
    display: flex;
    justify-content: space-between;
}

.case-study-table {
    background-color: #101010 !important;
    width: 65%;
}

.case-study-table th,
.case-study-table td {
    background-color: #101010 !important;
    border: 1px solid #999;
    color: #fff
}

.table-desc-holder {
    margin-top: 50px;
    padding-inline: 14px;
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-desc-holder img {
    width: 150px;
}

.table-desc-holder h1 {
    color: #fff;
}

/* Aidm ai Section */
.paragraph-arrow {
    position: relative;
}

.paragraph-arrow::before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    left: -15px;
    top: 5%;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #4bffa5
}
.ask-ai-title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
.collaps-title-holder {
    display: flex;
    justify-content: space-between;
}

.react-collapse {
    transition: height 300ms ease-in-out;
}
.collapse-desc-container{
    margin: 30px
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
@media (max-width: 720px) {
    .case-study-holder {
        display: block;
    }

    .table-desc-holder {
        width: 100%
    }

    .case-study-table {
        width: 100%
    }

    .tab {
        flex: 0 0 50%;
    }
}