        /**
         * #######################################
         *      Custom Our Service Stylesheet
         * #######################################
         */
/* ===================== main our service block ===================== */
    .service--main--img {
        width: 100%;
        padding-top: 56.25%;
        position: relative;
    }
    .service--main--img > img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
    }
    .service--container {
        padding-top: 50px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
    }
    .service--items {
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .service--items:last-child { margin-bottom: 0px; }
    .service--items h4 {
        margin-bottom: 30px;
        text-align: center;
    }
    .service--icon {
        margin-bottom: 50px;
        padding: 20px;
        display: inline-block;
        border-radius: 50%;
        background-color: var(--main-color);
    }
    .service--img {
        width: 30px;
        height: 30px;
    }
    .service--description {
        width: 100%;
        align-self: flex-start;
    }

    /**
     * ####################
     *     Media Query
     * ####################
     */
    /* tablet screen to laptop screen [ 768 <=> 1440px ]*/
    @media (min-width: 992px) {
        .service--container {
            flex-wrap: wrap;
            flex-direction: row;
        }
        .service--items {
            width: 50%;
            margin-bottom: 50px;
            height: fit-content;
            flex-direction: row;
            align-items: flex-start;
        }
        .service--items h4 {
            margin-bottom: 10px;
            text-align: left;
        }
        .service--description {
            padding-left: 25px;
            padding-right: 15px;
        }
        .service--items:nth-child(1) { order: 1; }
        .service--items:nth-child(2) {
            margin-bottom: 0px;
            order: 4;
        }
        .service--items:nth-child(3) {
            margin-bottom: 0px;
            order: 3;
        }
        .service--items:nth-child(4) { order: 2; }
    }
