
/**--------------------- News MiddelBox Fa Type2 -------------------**/


.news-card-type2 {
    position: relative;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 10px;
    /*border: solid 1px #e6e5e1;*/
    border-radius: 5px;
    box-shadow: 0px 0px 9px #00000036;
}

    .news-card-type2 .h200 {
        height: 200px !important;
    }

    .news-card-type2 .h40 {
        height: 40px !important;
    }

    .news-card-type2 .display-flex {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .news-card-type2 i {
        opacity: 0;
        font-size: 18px;
        color: #fff;
        will-change: transform;
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .news-card-type2 img {
        width: 100%;
        height: 100%;
    }


    .news-card-type2 .verticall-dot {
        z-index: 99;
        position: absolute;
        right: 39px;
        top: 5px;
        list-style-type: none;
    }

        .news-card-type2 .verticall-dot li {
            width: 2px;
            height: 2px;
            border-radius: 2px;
            margin: 6px 0;
            background-color: #e6e5e1;
        }

    .news-card-type2 .title {
        z-index: 99;
        pointer-events: none;
        font-size: 1.5rem;
        font-weight: 700;
        width: 100%;
        color: #000;
        text-align: right;
        text-shadow: 0px 0px 0px #040404f7;
        text-overflow: ellipsis;
        border-bottom: solid 2px var(--darkColor1);
    }

    .news-card-type2 .publish-date {
        position: absolute;
        right: 15px;
        bottom: 7px;
        font-size: 15px;
        float: right;
        font-weight: 700;
        color: var(--darkColor1);
        margin: 0px !important;
    }

.fa-arrow-right {
    z-index: 100;
    position: absolute;
    right: 75px;
    bottom: 25px;
    font-size: 40px;
    cursor: pointer;
}

.news-card-type2 .summary {
    z-index: 99;
    color: #333;
    font-size: 14px;
    text-align: right;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin: 0px !important;
}

.news-card-type2 .pic {
    z-index: 100;
    height: 200px;
    filter: grayscale(0);
}

    .news-card-type2 .pic:before {
        content: "";
        z-index: 99;
        position: absolute;
        top: -10px;
        right: 32px;
        display: block;
        width: 20px;
        height: 20px;
        border-radius: 16px;
        background-color: white;
    }

    .news-card-type2 .pic:after {
        content: "";
        z-index: 99;
        position: absolute;
        bottom: -10px;
        right: 32px;
        display: block;
        width: 20px;
        height: 20px;
        border-radius: 16px;
        background-color: white;
    }

.news-card-type2 button {
    position: absolute;
    left: 20px;
    bottom: 5px;
    width: 30px;
    height: 30px;
    background-color: #da4d1d;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    /*mix-blend-mode: hard-light;*/
    z-index: 100;
}

    .news-card-type2 button i {
        font-size: 3rem;
    }

.news-card-type2:hover button {
    transform: scale(12.5);
    opacity: 0.9;
}

.news-card-type2:hover .pic {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.news-card-type2 button {
    background-color: var(--darkColor1);
}

.news-card-type2 .dr {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 100px;
}

.news-card-type2 .read-more {
    display: none;
    position: absolute;
    left: 37px;
    bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    z-index: 100;
    transition: all 0.3s ease;
}

.news-card-type2:hover .read-more {
    display: block;
    transition: all 0.3s ease;
}
