#resourcePreviewList{
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 70px;
}

.resourcePreview{
  padding-bottom: 35px;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: column;
}

.resourcePreview header{
  margin-bottom: 10px;
}

.resourcePreview .previewTitle {
  font-size: 23px;
  color: #232527;
  font-weight: 700;
  margin-top: 0px;
}

.resourcePreview .previewTitle:hover {
  color: #333285;
}

.resourcePreview .category {
  display: inline-block;
  background-color: #f0f1f1;
  color: #232527;
  text-transform: uppercase;
  padding: 3px 10px;
  letter-spacing: 0.5px;
  box-shadow: 0px 0px 0px #f0f1f1;
  margin-bottom: 13px;
  -webkit-transition: color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.resourcePreview .category:hover {
  background-color: #333285;
  color: white;
  box-shadow: 5px -5px 0px #f0f1f1;
}

.resourcePreview .preview{
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
}

.resourcePreview .preview img{
  -webkit-transition: transform 0.4s ease-in-out;
  -moz-transition: transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}

.resourcePreview .preview:hover img{
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
}

.resourcePreview img{
  width: auto;
  max-width: 100%;
}

.resourcePreview .bottom{
  margin-top: 10px;
}

.resourcePreview .bottom .customBtn{
  margin-top: 10px;
}

.resourcePreview .relItemsList{
  padding-left: 0;
  max-width: calc(100% - 25px);
  list-style: none;
}

.resourcePreview .icon{
  width: 15px;
  margin-right: 10px;
}

.relItemsList li{
  display: inline-block;
}

.relItemsList li a{
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding: 0 0 3px 0;
}

.relItemsList li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #333285;
  -webkit-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.relItemsList li a:hover::after{
  width: 100%;
}

.relItemsList li:last-child {
  margin-right: 0px;
}

@media (max-width: 767px){
  .resourcePreview{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #paginatorContainer > nav{
    text-align: center;
  }
}

@media (min-width: 768px){
  .resourcePreview{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #paginatorContainer > nav{
    text-align: center;
  }
}

@media (min-width: 992px){
  .resourcePreview{
    padding-left: 0;
    padding-right: 0;
  }

  #paginatorContainer > nav{
    text-align: right;
  }
}

@media (min-width: 1200px){
}
