body{
    direction: rtl!important;
}
.service-item {
    background: #f3f6f8;
    text-align: center;
    padding: 10px 5px;
    box-shadow: 0 8px 20px 0px rgb(29 70 110 / 24%);
    border-radius: 20px;
    transition: all 0.5s ease 0s;
    margin: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-item:after {
    content: ' ';
    width: 955px;
    height: 965px;
    position: absolute;
    bottom: 57%;
    right: -260px;
    border-radius: 35%;
    background: #ffffff;
    z-index: 0;
    transform: rotate(-45deg);
}
.service-item-body{
    z-index: 9;
    position: relative;
}
.service-item:hover{
    background: #f4fbff;
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07) !important;
    transition: all 0.5s ease 0s;
}
.service-item .icon {
    font-size: 50px;
    width: 90px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    color: #1d466e;
}
.service-item .icon i{
    font-size: 40px;
    margin: 10px auto;
    color: #100DD1;
}

.service-item p{
    font-size: 11px;
    line-height: 26px;
    height: 50px;
    overflow: hidden;
    color: #1d466e;
}
.service-item h6 {
    margin-bottom: 10px;
    color: #1d466e;
    font-weight: 500;
}
@media (max-width: 768px) {
    .service-item p{
        display: none;
    }
    .service-item h6 {
        margin-bottom: 0;
        font-size: 13px;
    }
    .dashboard .card{
        margin: 0;
    }
    .dashboard .list-group li{
        padding: 10px!important;
    }
}
.filters .owl-nav {
    position: absolute;
    top: 5%;
    width: 100%;
    justify-content: space-between;
    display: flex;
    z-index: 0;
}
.filters .owl-stage-outer{
    z-index: 1;
    padding: 5px 0;
}
.filters a{
    display: flex;
    background: white;
    box-shadow: 0 0 5px #c3c3c3;
    border: none;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    height: 25px;
    font-weight: 400;
    color: #1d466e!important;
    cursor: pointer!important;
    padding: 0 15px;
    transition: 300ms background;
    width: max-content;
}
.filters a:hover{
    background: rgba(138, 187, 228, 0.29);
}
.filters .owl-stage{
    width: 100% !important;
    display: flex;
    flex-direction: row;
}
.filters .owl-prev{
    right: -12px;
    position: absolute;
    top: 6px;
}
.filters .owl-next{
    left: -12px;
    position: absolute;
    top: 6px;
}
.filters a.selected{
    background: #1d466e!important;
    color: #fff!important;
}