#noticias{
    padding-top:40px;
    margin-top: 40px;
    margin-bottom:40px;
}
.article-content{
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 10px;
    box-shadow: 1px 1px 5px gray;
    border-radius: 30px;
    background-color:#006EC7;
    color: white;
}
.article-content header{
    width: 100%;
}
.noticia-content{
    border-radius: 20px ;
}

#carrouselnoticias .carousel-item{
    border-radius: 20px ;
    text-align: center;
    padding-top:15px ;
    padding-bottom: 15px;
}

#carrouselnoticias .carousel-inner{
    /*padding-bottom: 20px;*/
    padding:10px;
}

.carusel-controls{
    text-align: center;
    display: flex;
    justify-content:space-between;
    align-items:center;
    padding:10px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 950px;
    max-height: 45px;
    margin: auto;
    z-index: 1;
}
.carusel-control-prev, .carusel-control-next{
    color: gray;
    opacity: 0.5;
    transition: opacity .15s ease;
    font-size: 1.2em;
    z-index: 200;
}

.carusel-control-prev:hover, .carusel-control-next:hover{
    opacity: 1;
    transition: all .15s ease;
    
}


.notice-card {
    display:flex;
    flex-flow: row wrap;
    justify-content:space-around;
    align-items: center;
    
    max-width: 870px;
    /*background-color: #fff;*/
    margin:0 auto;
    overflow: hidden;
    border-radius: 20px;
/*    box-shadow: 1px 1px 5px gray;*/
    padding: 10px;
    position: relative;
    z-index: 50;
    
}

.notice-card .notice-img-card{
    max-width: 350px;
    height: 250px;
    
    /*padding-right: 10px;*/
    display: flex;
    justify-content:center;
    align-items: center;
}
.notice-card .notice-img-card img{
    max-width: 350px;
    max-height: 250px;
    border-radius: 30px;
}

.notice-body-card{
    display:flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    /*flex: 1 0 auto;*/
}

.notice-body-card .notice-content{
    text-align: justify;
    max-height: 210px;
    max-width: 500px;
    font-size: 1.2em;
    overflow: hidden;
    /*text-overflow: ellipsis;*/
    margin: 0px;    
    padding-left: 10px;
    color:inherit;
    
}

.notice-title{
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    font-size: 1.3rem;
    max-width: 90%;
    font-weight: bold;
}

.ntlink{
    text-decoration:none;
    color: inherit;
    width: 100%;
    border-radius: 20px;
    padding: 5px;
}
.ntlink:hover{
    text-decoration: none;
    color: #006EC7;
    /*text-shadow:1px 1px white;*/
    box-shadow: 1px 1px 5px white;
    transition: all .3s;
    background-color: white;
    
}


.link-noticia{
    text-align: center;
    padding: 10px;
}