.servicesWidgetWrapper {
    width: 100%;
    background-color: var(--whiteColor);
    padding: 20px 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.servicesWidgetWrapper .InnerWrapper {
    display: flex;
    flex-wrap: wrap;
}

.servicesWidgetWrapper .SectionHd {
    display: block;
    text-align: center;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
    flex: 100%;
}

.servicesWidgetWrapper .SingleServiceBox {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1%;
    margin-top: 1%;
    padding: 20px 15px;
    box-sizing: border-box;
    background-color: var(--whiteColor);
    box-shadow: 0px 0px 5px #ccc;
}

.servicesWidgetWrapper .SingleServiceBox:last-child {
    margin-right: 0;
}

.servicesWidgetWrapper .SingleServiceBox h2 {
    color: var(--darkGray);
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
}

.servicesWidgetWrapper .SingleServiceBox .signleBox {
    margin-bottom: 25px;
    overflow: hidden;
    display: flex;
}

.servicesWidgetWrapper .SingleServiceBox .signleBox:last-child {
    margin-bottom: 0;
}

.servicesWidgetWrapper .SingleServiceBox .RightCol {
    width: 75%;
}

.servicesWidgetWrapper .SingleServiceBox .RightCol p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 23px;
    margin-top: 10px;
}

.servicesWidgetWrapper .SingleServiceBox .RightCol h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
}

.servicesWidgetWrapper .SingleServiceBox .RightCol a {
    text-transform: none;
    color: var(--primaryColor);
    float: none;
    padding: 0px;
    background-color: var(--whiteColor);
}

.servicesWidgetWrapper .SingleServiceBox .LeftCol {
    width: 15%;
    margin-left: 3%;
    margin-right: 4%;
    flex: 1;
    max-width: 80px;
}

.servicesWidgetWrapper .SingleServiceBox .LeftCol span {
    display: inline-block;
    border-radius: 100%;
    background: var(--lightGray);
}

@media screen and (max-width: 991px) {
    .servicesWidgetWrapper .SingleServiceBox {
        width: 100%;
        margin: 20px auto;
        padding: 30px 20px;
    }
    .servicesWidgetWrapper .InnerWrapper {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .servicesWidgetWrapper .SingleServiceBox .signleBox {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .servicesWidgetWrapper .SingleServiceBox .LeftCol {
        width: auto;
        margin: 0 auto 10px auto;
    }
    .servicesWidgetWrapper .SingleServiceBox .RightCol {
        width: auto;
    }
}