.post-item, .archive .post-item {
    margin-bottom: 28px;
}

.site-main {
    margin-bottom: 192px;
    margin-top: 45px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0
}

#breadcrumbs {
    font-size: 12px;
    font-family: var(--medium_font);
    color: #000;
    margin-top: 0;
    overflow-x: auto;
    white-space: nowrap;
    background-color: #F5F7FE;
    padding: 15px 0;
}

    #breadcrumbs a {
        color: #B4B2B2;
    }

    #breadcrumbs .icon-caret-down {
        transform: rotate(90deg);
        position: relative;
        top: 6px;
        right: 2px;
        color: #b4b2b2;
    }

.title-part.inner-title .title-heading {
    font-size: 30px;
}

.inner-title .title-heading {
    color: #000;
}

.title-part .editor-content p, .title-part .editor-content {
    line-height: 40px;
    font-size: 18px;
    color: #000;
    margin-bottom: 0;
}

.title-part.inner-title {
    margin-bottom: 20px;
    text-align: center;
}

#sidebar {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    max-width: 300px;
    transition: all 0.5s;
    z-index: 4;
    background: var(--bg_danger);
}

    #sidebar.active {
        right: 0;
    }

    #sidebar .sidebar-close {
        display: flex;
        width: 20px;
        height: 20px;
        position: relative;
        background: #fff;
        text-align: center;
        margin: 10px auto 10px 0;
        color: var(--danger);
        border: 1px solid var(--danger);
        font-size: 13px;
        cursor: pointer;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        transition: ease 0.3s;
    }

.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-btn {
    position: fixed;
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color1);
    color: var(--color1);
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    background-color: #fff;
    right: 20px;
    bottom: 20px;
    justify-content: center;
    align-items: center;
    font-family: 'icomoon';
    font-size: 26px;
}

.widget-title {
    background: #140342;
    padding: 12px 10px;
    border: 1px solid var(--color2);
    border-radius: 10px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-family: var(--medium_font);
    margin-bottom: 22px;
}

    .widget-title h4 {
        margin-bottom: 0
    }

.widget-side > ul > li {
    background-color: #fff;
    font-size: 16px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid transparent;
    transition: ease 0.3s;
}

    .widget-side > ul > li > a {
        display: flex;
        padding: 15px 15px 15px 15px;
        border-bottom: 1px solid transparent;
        transition: ease 0.3s;
    }

    .widget-side > ul > li ul {
        padding: 0;
        margin-right: 40px !important
    }

        .widget-side > ul > li ul li {
            padding: 5px 10px;
            border-bottom: 1px solid transparent;
            transition: ease .3s;
        }

#sidebar li > a {
    color: #4F4F4F;
    font-family: var(--medium_font);
    position: relative;
    display: flex;
}

.page-template-template-blog .post-item, .archive .post-item {
    margin-bottom: 28px;
}

.post-item .post-item-image {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

    .post-item .post-item-image::before {
        /*content: " ";*/
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: #000014;
        transition: ease 0.3s;
    }

.post-item img {
    width: 100%;
}


.post-item h2 {
    font-size: 16px;
    font-family: var(--medium_font);
    line-height: 27px;
    margin-top: 25px;
    min-height: 62px;
    margin-bottom: 0;
}

.post-item h2 {
    min-height: 41px;
    line-height: 1.5;
}

    .post-item h2 a {
        color: #000;
    }

.post-item p {
    line-height: 25px;
    font-size: 14px;
    color: #666;
    transition: ease 0.3s;
    max-height: 80px;
    overflow: hidden;
    text-align: justify
}

.post-item:hover .post-item-image::before {
    background-color: rgba(254,202,109,.48);
}

.post-item:hover .post-item-image::after, .post-item-service:hover .post-item-image::after {
    width: 68px;
    height: 62px;
}
/*.sidebar-btn::before {
    content: "\e938";
}*/
.pagination {
    margin-bottom: 0;
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

    .pagination li {
        margin: 0 8px;
        font-family: roboto;
        font-size: 18px;
        position: relative;
    }

        .pagination li::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            background-color: var(--color2);
            width: 0;
            height: 0;
            border-radius: 50%;
            z-index: -1;
            transition: ease 0.3s;
        }

        .pagination li a, .pagination li span {
            line-height: 1;
        }

    .pagination .active a {
        color: #fff !important;
        padding: 0 7px;
    }

    .pagination .active::before {
        width: 24px !important;
        height: 24px !important;
    }

    .pagination a {
        color: #4F4F4F;
    }

    .pagination li a.next, .pagination li a.prev {
        font-size: 13px;
        color: #797878;
    }
.cat__item {
    background-color: #D9D9D91A;
    padding: 23px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 20px -8px rgba(0, 0, 0, .16);
    border-radius: 10px;
    transition: 400ms;
    position: relative;
}
.cat__img {
    margin-bottom: 28px;
    max-width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    transition: filter 400ms;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.cat__title {
    color: #4F4F4F;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    transition: color 400ms;
    min-height: 50px;
    display: flex;
}
.cat__item::after, .item-feature::after {
    content: '';
    background-color: var(--color2);
    border-radius: 10px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    outline: 3px solid #fff;
    transition: 400ms;
    height: 0;
    width: 10px;
    opacity: 0;
}
.cat__item:hover {
    background-color: #140342;
}
.cat__item:hover .cat__title{color:#fff;}
.service-cat{margin-bottom:25px}

@media screen and (min-width: 992px) {
    .sidebar-btn {
        display: none;
    }

    #sidebar li > a {
        color: #4F4F4F;
    }

    #sidebar .sidebar-close {
        display: none;
    }

    #sidebar {
        position: unset;
        right: auto;
        overflow-y: unset;
        background: transparent;
    }
}

@media screen and (max-width: 1200px) {
    .widget-title {
        font-size: 18px;
        padding: 10px;
    }

    .widget-side > ul > li {
        font-size: 15px;
    }

        .widget-side > ul > li > a {
            padding: 10px 10px 10px 25px;
        }

    .site-main {
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .title-part.inner-title {
        margin-bottom: 50px;
    }

    .mb-blog {
        margin-bottom: 125px;
    }
}

@media screen and (max-width: 992px) {
    .site-main {
        margin-top: 25px;
        margin-bottom: 50px;
    }

    .title-part.inner-title {
        margin-bottom: 25px;
    }

    .mb-blog {
        margin-bottom: 75px;
    }
}

@media screen and (max-width: 768px) {
    .mb-blog {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 576px) {
    .site-main {
        margin-top: 10px;
        margin-top: 20px;
    }

    .mb-blog {
        margin-bottom: 40px;
    }

    .title-part.inner-title .title-heading {
        font-size: 18px !important;
    }

    .title-part .editor-content p, .title-part .editor-content {
        font-size: 14px !important;
        line-height: 26px !important;
    }
}
