.body-container {
	padding: 0;
}
.resources-listing-wrapper {
  padding: 75px 0 60px;
}
.resources-listing .resources-item {
  width: calc(100% / 3 - 20px);
  margin: 0 10px 20px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .15);
  background-color: #FFF;
  float: left;
}
.resources-item .feat-image {
	height: 194px;  
  position: relative;
}
.resources-item .feat-image img {
  height: 194px;
  width: 100%;
  object-fit: cover;
}
.resources-item .feat-image img:hover {
  opacity: 0.8;
}
.resources-item .feat-image .resource-cat {
	position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  padding: 5px 12px;
  border-radius: 30px;
  background-color: #ee5c39;
  box-shadow: -1px 1px 8px 0 rgba(0, 0, 0, .4);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 12px;
  line-height: 1.5em;
  text-transform: uppercase;  
}
.resources-item .feat-image .resource-cat:hover {
  background-color: #2a8c8b;
}
.resources-item .resources-body {
  padding: 10px 20px 30px;
  border-top: 1px solid rgba(0, 0, 0, .15);
  min-height: 170px;
}
.resources-item .resources-body h3 a {
  margin-top: 10px;
  color: #172134;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  text-align: left;
}
.resources-item .resources-body p {
  margin-top: 10px;
  margin-bottom: 0;
  color: #6c7d81;
  font-size: 15px;
  line-height: 1.5em;
  font-weight: 300;
}
.resources-item .resources-link {
  padding: 15px 20px;
  border-top: 1px solid rgba(0, 0, 0, .15);
  text-align: right;
}
.resources-item .resources-link a {
  opacity: 0.8;
  -webkit-transition: padding 100ms ease;
  transition: padding 100ms ease;
  color: #f05c30;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.resources-item .resources-link a:hover {
  padding-right: 5px;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++
                    Responsive                                                 
+++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ================  Desktop ================ */
@media only screen and (min-width: 960px) and (max-width: 1280px) {
    
}
@media only screen and (min-width: 1300px) {
    
}
@media only screen and (min-width: 1366px) {
    
}
@media only screen and (min-width: 1440px) {
    
}
@media only screen and (min-width: 1900px) {
   
}

/* ================ Tablets (portrait and landscape) ================ */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .resources-listing .resources-item {
    width: calc(100% / 3 - 20px);
  }
	/* end of tablet (portrait and landscape) */
}

/* ================ Tablets (portrait) ================ */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {   	
	.resources-listing .resources-item {
    width: calc(100% / 2 - 20px);
  }
}

/* ================ Phones (portrait and landscape) ================ */
@media only screen and (max-width: 767px) {
  .resources-listing .resources-item {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
	/* end of mobile (portrait and landscape) */  
}

/* ================ Phones (landscape) ================ */
@media screen and (min-width: 480px) and (max-width: 768px) {

}

/* ================ Phones (old mobiles) ================ */
@media screen and (max-width: 320px) {
	
}

/* ================ IE only ====================== */
@supports (-ms-ime-align: auto) {
	
}