
/***** SESSÃO NOTICIAS *******/
.noticias {
    background: #ebf7fd;
}

.noticias .box-card-not,
.single-noticia .box-card-not {
    max-width: 255px;
    margin: 0 auto;
}

.noticias .box-card-not .box-img-not,
.single-noticia .box-card-not .box-img-not {
    width: 255px;
    height: 200px;
}

.noticias .box-card-not .box-img-not .img-fluid,
.single-noticia .box-card-not .box-img-not .img-fluid {
    width: 255px;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.noticias .box-info-not,
.single-noticia .box-info-not {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875em;
    color: #6d6e70;
    padding: 1em 0;
    border-bottom: 1px solid #ccc;
}

.noticias .box-info-not .cont-info,
.single-noticia .box-info-not .cont-info {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.noticias .box-card-not .h1-card-not,
.single-noticia .box-card-not .h1-card-not {
    font-size: 1em;
}

.noticias .box-card-not .desc-card-not,
.single-noticia .box-card-not .desc-card-not {
    height: 90px;
    font-size: 0.875em;
}

.noticias .btn-ler,
.single-noticia .btn-ler {
    padding: 5px 15px;
}

.noticias .btn-ler:hover {
    color: #00adee;
    border-color: #00adee;
}



/***** PAGE NOTICIAS SINGLE ******/

.single-noticia .box-img-not-gr {
    width: 100%;
    height: 500px;
}

.single-noticia .box-img-not-gr .img-fluid-2 {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: left;
}

.single-noticia .share-redes .ul-list {
    padding: 0;
}

.single-noticia .list-redes {
    list-style-type: none;
}

.noticias .nav-noticias .nav-link {
    border: 2px solid #004a8e;
    border-radius: 10px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
    color: #004a8e;
    transition: .3s ease;
    position: relative;
}

.noticias .nav-noticias .nav-link:hover,
.noticias .nav-noticias .nav-link.active {
    background: #004a8e;
    color: #fff;
    font-weight: bold;
}

.noticias .nav-noticias .nav-link.active:after {
    content: '';
    width: 10px;
    height: 10px;
    display: inline-block;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #004a8e;
    position: absolute;
}

@media(max-width: 992px){
    .noticias .owl-carousel .owl-nav {
        position: absolute;
        top: 40%;
        display: flex;
        width: 100%;
        justify-content: space-between;
        margin: 0;
    }

    .noticias .owl-theme .owl-nav [class*=owl-] {
        background: none;
        margin: 0;
        padding: 0 !important;
        cursor: pointer;
        border-radius: 0;
    }

    .noticias .owl-theme .owl-nav .owl-prev {
        position: absolute;
        top: 0;
        left: 0;
    }

    .noticias .owl-theme .owl-nav .owl-next {
        position: absolute;
        top: 0;
        right: 0;
    }

    .noticias .box-card-not .h1-card-not, .single-noticia .box-card-not .h1-card-not{
        text-align: center !important;
    }
    .noticias .box-card-not .desc-card-not, .single-noticia .box-card-not .desc-card-not{
        height: unset !important;
        text-align: center !important;
    }
}