/*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/serdes.jpg");
    background-size: cover;
    background-position: center;
    min-height: 400px;
    height: 100%;
    background-repeat: no-repeat;
}

.dot-list {
    list-style-type: none;
    margin: 36px 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: block;
    min-height: 4rem;
    padding-top: 0rem;
    padding-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
    color: #000000;
}

.dot-list-ordered .dot-list-item::before {
    background: #2e3092;
    background-repeat: no-repeat;
    background-size: 2rem 20rem;
    border-radius: 50%;
    color: white;
    content: counter(list-counter);
    counter-increment: list-counter;
    display: block;
    height: 2rem;
    left: 0;
    line-height: 2;
    position: absolute;
    text-align: center;
    width: 2rem;
}

.doted li {
    font-weight: 700;
    margin-top: 11px;
}
.bggrey{
    background: #7ea7cf1f;
}
@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;
    }
}
@media (max-width: 767px) {
.half-fluid .image {
    background-color: rgb(13 110 253 / 6%);
}
}