﻿body {
    text-align: left;
}

.blogList-widget {
    background-color: #efefef;
}

    .blogList-widget .section-title {
        position: relative;
        display: flex;
        justify-content: space-between;
    }

        .blogList-widget .section-title .title,
        .blogList-widget .section-title .view-all {
            background-color: #efefef;
            padding: 0 10px;
            z-index: 1;
            color: #000;
            margin: 0;
            display: flex;
            align-items: center;
            direction: rtl;
        }

        .blogList-widget .section-title:after {
            content: "";
            position: absolute;
            top: 50%;
            right: 40px;
            left: 40px;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            height: 2px;
            background-color: #aaa;
        }

        .blogList-widget .section-title .view-all:hover {
            color: #ff2626;
        }

    .blogList-widget .owl-carousel .owl-stage-outer {
        padding: 30px 0;
    }

    .blogList-widget .center .blogs-item {
        transform: scale(1);
        filter: grayscale(0);
        opacity: 1;
    }

.blogs-item {
    position: relative;
    background-color: #fff;
    display: block;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 20px 20px -25px #000;
    overflow: hidden;
    transform: scale(.92);
    filter: grayscale(70%);
    opacity: .6;
    transition: all .4s;
}
.blogs-item:hover{
    color:#000;
}
    .blogs-item .picture {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .blogs-item .picture img {
            width: auto;
            max-height: 100%;
        }

    .blogs-item .tags {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 10px;
        color: #000;
    }

        .blogs-item .tags li {
            transform: skew(-10deg,0);
            padding: 3px 5px;
            background-color: #fff;
            border: 1px solid #aaa;
            border-radius: 3px;
            color: #000;
            margin: 3px 0;
        }

            .blogs-item .tags li:not(:last-child) {
                margin-right: 5px;
            }

    .blogs-item:hover .tags {
        display: none;
    }

    .blogs-item .details {
        padding: 15px;
    }

    .blogs-item .blogs-title {
        font-size: 15px;
        color: #000;
        text-align: center;
        font-weight: bold;
        height: 50px;
        line-height: 25px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .blogs-item .blogs-date {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        color: #888;
        font-size: 13px;
        margin: 10px 0;
    }

    .blogs-item .blogs-body {
        height: 66px;
        line-height: 22px;
        font-size: 12px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        color:#808080;
    }

    .blogs-item .button {
        position: absolute;
        bottom: -80px;
        right: 0;
        width: 100%;
        text-align: center;
        background-color: #fff;
        padding: 15px 0;
        transition-duration: .3s;
    }

    .blogs-item:hover .button {
        bottom: 15px;
    }

.blogList-widget .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 37px;
    height: 37px;
    line-height: 37px !important;
    text-align: center;
    font-size: 35px !important;
    font-weight: 100 !important;
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 50% !important;
    transition-duration: .3s;
}

    .blogList-widget .owl-nav button:hover {
        background-color: #ff2626 !important;
    }

    .blogList-widget .owl-nav button.owl-prev {
        left:15px;
    }

    .blogList-widget .owl-nav button.owl-next {
        right:15px;
    }
