/* ***********************
    TECHNOLOGY PAGE
*********************** */
.one-stop-platform {
    background-image: linear-gradient(to bottom, #ffffff 47%, var(--bg-light) 47%);
}

.one-stop-platform .sm-img,
.one-stop-platform .lg-img {
    display: none;
}

@media screen and (min-width: 992px) {
    .one-stop-platform .lg-img {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .one-stop-platform {
        padding-bottom: 3%;
    }

    .one-stop-platform {
        background-image: linear-gradient(to bottom, #ffffff 50%, var(--bg-light) 50%);
    }

    .one-stop-platform .sm-img {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }
}

.box-card ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.box-card ul li::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}