/*Autonomous Services page */
.half-fluid .left-half,
.half-fluid .right-half {
    left: 50%;
    margin-left: -50vw;
    max-width: 100vw;
    position: relative;
    right: 50%;
    width: 100vw;
    padding: 0px;
}

.half-fluid .image {
    background-image: url("../images/who.jpg");
    background-size: cover;
    background-position: center;
    min-height: 400px;
    height: 100%;
}


.dot-list {
    list-style-type: none;
    margin: 0 0;
    padding: 0;
}

.dot-list-ordered {
    counter-reset: list-counter;
    display: block;
}

.dot-list-ordered .dot-list-item {
    /* background-image: linear-gradient(180deg, #ddd 0%, #ddd 100%); */
    background-repeat: no-repeat;
    background-size: 2px 100%;
    background-position: 1rem center;
    display: flex;
    min-height: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #000000;
    align-items: center;
}

.dot-list-ordered .dot-list-item::before {
    background: rgba(13, 110, 253, 0.25);
    background-repeat: no-repeat;
    /* background-size: 2rem 20rem; */
    border-radius: 50%;
    color: #c2dbfe;
    content: counter(list-counter);
    counter-increment: list-counter;
    display: block;
    height: 1rem;
    left: 0;
    /* line-height: 6; */
    position: absolute;
    text-align: center;
    width: 1rem;
    font-size: 0;
}

.doted li {
    font-weight: 700;
    margin-top: 11px;
}


.subtitle{margin: 23px 0;background: rgb(13 110 253 / 10%);display: flex;align-items: center;justify-content: space-between;padding: 0 20px;}
.subtitle h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: auto;
    text-align: left;
    white-space: nowrap;
    padding-bottom: 13px;
    position: relative;
}

.subtitle h2:before {
    background-color: #0dcaf0;
    content: '';
    display: block;
    height: 3px;
    width: 90px;
    margin-bottom: 5px;
}

.subtitle h2:after {
    background-color: #0dcaf0;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 90px;
    margin-bottom: 0;
}
.bggrey{
    background: rgb(13 110 253 / 4%);
}
.imga{

margin: 9px;
}
.imga img{
    
width: 85px;
    
height: 85px;
    
margin: 9px;
}
@media screen and (max-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .services h2 {
        font-size: 34px;
        margin-bottom: 5px;
    }

    .services .text-services {
        font-size: 14px;
        line-height: 1.7;
    }

    .cards {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
}


@media (min-width: 992px) {
    .half-fluid .left-half {
        padding-left: 0 !important;
        position: absolute;
        left: 0;
        right: 50%;
        margin-left: auto;
        width: auto;
    }

    .half-fluid .right-half {
        padding-right: 0 !important;
        position: absolute;
        right: 0;
        left: 50%;
        margin-left: auto;
        width: auto;
    }
}