input#SFil,
h2.NWS_Title,
h3.NWS_SubTitle,
img.NWS_ImageBase {
  display: none;
}

p a.btn {
  text-decoration: none;
}



/* novo Page and System Styles */

.LTR_LiteratureHeaderRow,
.LTR_LiteratureFooterRow,
.LTR_LiteratureTable input,
.LTR_LiteratureALTPDFLink,
.LTR_LiteraturePDFLink {
	display: none;
}

.LTR_LiteratureTable {
	width: 100%;
}

.LTR_LiteratureTable tbody {
	display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}

.LTR_LiteratureALTThumbnailURL,
.LTR_LiteratureThumbnailURL {
	width: 82px;
	height: auto;
}

.LTR_LiteratureALTCell,
.LTR_LiteratureCell {
	display: flex;
    flex-direction: column-reverse;
    align-items: center;
    grid-gap: 20px;
}

.LTR_LiteratureALTTitle a,
.LTR_LiteratureTitle a {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #ce0e2d;
    cursor: pointer;
    text-align: center;
}

.LTR_LiteratureALTTitle a:hover,
.LTR_LiteratureTitle a:hover {
	text-decoration: none;
}

.LTR_LiteratureALTTitle a::after,
.LTR_LiteratureTitle a::after {
    margin-top: 3px;
    display: block;
    width: 100%;
    content: '';
    border-bottom: solid 2px #ce0e2d;
    transition: transform 500ms ease-in-out;
}

.LTR_LiteratureALTTitle a:hover::after,
.LTR_LiteratureTitle a:hover::after {
    transform: scaleX(0);
}


.sidebar-page {
	width: 100%;
}

.sidebar {
	min-width: 275px;
}

@media screen and (min-width: 928px) {
	.sidebar-page {
		width: 100%;
    	display: flex;
    	justify-content: space-between;
    	grid-gap: 20px;
	}
}



/* NEWS LISTING */

#news-listing div.category {
  width: 100%;
}
#news-listing div.category .items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  height: auto!important;
}
#news-listing div.category .items .customItemTile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  flex-basis: 100%;
  list-style-type: none;
  width: 100%!important;
  height: 200px!important;
  padding: 0;
  left: 0!important;
  top: 0!important;
  background-size: cover;
  background-position: top center;
  height: 100%;
}
#news-listing div.category .items .customItemTile .item-content {
  padding: 200px 15px 15px 15px;
  transition: 1s ease-out;
  z-index: 10;
  position: relative;
  width: 100%;
}
#news-listing div.category .items .customItemTile .item-content h3 {
  color: #fff;
  text-transform: uppercase;
}
#news-listing div.category .items .customItemTile .item-content p {
  font-size: 18px;
  font-weight: 400;
  overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}
#news-listing div.category .items .customItemTile .item-content .btn {
  margin-top: 15px;
}
#news-listing div.category .items .customItemTile .item-content p:last-of-type {
  margin-bottom: 0;
}
#news-listing div.category .items .customItemTile .item-content p:last-of-type a {
  margin-bottom: 0;
}
#news-listing div.category .items .customItemTile .item-content li {
  margin-bottom: 0!important;
  font-size: 18px;
}

#news-listing div.category .items .customItemTile .overlay {
  z-index: 1;
  transition: 1s;
  position: absolute;
  pointer-events: none;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: " ";
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,f2f2f2+100&0+30,1+65,1+100 */
  background: -moz-linear-gradient(
    top,
    rgba(242, 242, 242, 0) 0%,
    rgba(242, 242, 242, 0) 30%,
    #f2f2f2 65%,
    #f2f2f2 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(242, 242, 242, 0) 0%,
    rgba(242, 242, 242, 0) 30%,
    #f2f2f2 65%,
    #f2f2f2 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(242, 242, 242, 0) 0%,
    rgba(242, 242, 242, 0) 30%,
    #f2f2f2 65%,
    #f2f2f2 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f2f2f2', endColorstr='#f2f2f2', GradientType=0);
  /* IE6-9 */
}

#news-listing div.category .items .customItemTile .overlay {
    -webkit-animation: 0.5s overlayFade;
    animation: 0.5s overlayFade;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ce0e2d+0,ce0e2d+100&0+19,1+86,1+100 */
    background: -moz-linear-gradient(
      top,
      rgba(206, 14, 45, 0) 0%,
      rgba(206, 14, 45, 0) 19%,
      #ce0e2d 86%,
      #ce0e2d 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      top,
      rgba(206, 14, 45, 0) 0%,
      rgba(206, 14, 45, 0) 19%,
      #ce0e2d 86%,
      #ce0e2d 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to bottom,
      rgba(206, 14, 45, 0) 0%,
      rgba(206, 14, 45, 0) 19%,
      #ce0e2d 86%,
      #ce0e2d 100%
    );
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ce0e2d', endColorstr='#ce0e2d', GradientType=0);
    /* IE6-9 */
  }
  /*@keyframes overlayFade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes overlayFade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }*/
  }

@media only screen and (min-width: 768px) {
  #news-listing div.category .items .customItemTile .item-content {
    position: absolute;
    bottom: 0;
  }
  #news-listing div.category .items .customItemTile .item-content .btn {
    margin-top: 0;
  }
  #news-listing div.category .items .customItemTile .item-content .post-content {
    /*max-height: 0px;
    transition: all 1.1s ease-in;
    opacity: 0%;*/
    overflow: hidden;
  }
  #news-listing div.category .items .customItemTile .item-content .post-content ul {
    padding-left: 30px;
    margin-bottom: 0;
  }
  #news-listing div.category .items .customItemTile:hover .item-content h3,
  #news-listing div.category .items .customItemTile:hover .item-content li,
  #news-listing div.category .items .customItemTile:hover .item-content p,
  #news-listing div.category .items .customItemTile:hover .item-content a {
    color: #ffffff;
  }
  #news-listing div.category .items .customItemTile:hover .item-content a:after {
    border-bottom: solid 2px #ffffff;
  }
  #news-listing div.category .items .customItemTile:hover .item-content .post-content {
    opacity: 100%;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
  
}

@media only screen and (min-width: 768px) {
  #news-listing div.category .items .customItemTile .item-content {
    padding: 200px 20px 20px 20px;
  }
  #news-listing div.category .items {
    gap: 25px;
    flex-direction: row;
  }
  #news-listing div.category .items .customItemTile {
    height: 450px!important;
    flex-basis: calc(50% - 14px)!important;
  }
  #news-listing div.category .items .customItemTile .btn {
    font-size: 18px !important;
  }
}

@media only screen and (min-width: 1200px) {
    #news-listing div.category .items .customItemTile {
        flex-basis: calc(33% - 14px)!important;
    }
    div.category .items .customItemTile .item-content h3 {
        font-size: 16px;
    }
}