.news-card {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    object-fit: cover;
}

.news-card .contents {
    background: rgba(0, 0, 0, .2) !important;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.news-card:hover .contents {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-nav {
        display: none;
    }
}

html[dir="ltr"] .fa-arrow-left:before {
    content: '\f061'
}

html[dir="ltr"] ol.breadcrumb > li:not(:last-child):after {
    content: '\f105';
}


