.resources_card {
  display: flex;
	background: white;
  flex-direction: column;
  flex: 1 0 calc(25% - 1rem);
  max-width: calc(25% - 1rem);
  border-radius: 15px;
  padding: 0px;
	margin: .5rem;
  transform: scale(1);
  transform-origin: left top;
	transition: opacity .5s ease-in-out 0s,height 0.5s ease-in-out 0s, width .5s ease-in-out 0s,transform 0.7s ease-in-out 0s,margin 0.5s ease-in-out 0s,padding 0.5s ease-in-out 0s; 
  overflow: visible;
	box-shadow: 0px 14px 40px 0px rgba(0,0,0,.2);
	position: relative;
}

.resources_card.hidden {
  display:flex;
  overflow: hidden;
  max-width: 0px;
	margin:0px;
  transform: scale(0);
  max-height: 0px;
  transition: opacity .5s ease-in-out 0s,height 0.5s ease-in-out 0s, width .5s ease-in-out 0s,transform 0.5s ease-in-out 0s,margin 0.5s ease-in-out 0s,padding 0.5s ease-in-out 0s; 
}


.resources_card .resources_card_content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
	padding: 1rem;
}

.resources_card .resources_card-img {
  position: relative;
	border-bottom: 1px solid var(--grey_100_color);
}

.resources_card .resources_card-img  {
  aspect-ratio: 3 / 2.5;
  border-radius: 15px 15px 0px 0px;
  float: left;
  object-fit: cover;
  width: 100%;
	overflow: hidden;
  background-image: linear-gradient(30deg, var(--grey_200_color), white);
}
.resources_card .resources_card-img.not_3d > img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* image 3d style sheet, brochure */
.resources_card .resources_card-img .image_3d.image_3d-sheet {
	position: relative;
	transform-style: preserve-3d;
	height: 100%;
	width: fit-content;
	perspective-origin: center;
	left: 0px;
	top: 0px;
	transform-origin: left center;
	transform: perspective(340px) rotateX(50deg) rotateY(-10deg) rotateZ(40deg) translateX(28px) translateY(-40px) translateZ(30px);
	box-shadow: 20px 10px 62px 0px rgba(0, 0, 0, .4);
}
.resources_card .resources_card-img .image_3d.image_3d-brochure {
	position: relative;
	transform-style: preserve-3d;
	height: 100%;
	width: fit-content;
	perspective-origin: center;
	left: 0px;
	top: 0px;
	transform-origin: left center;
	transform: perspective(380px) rotateX(50deg) rotateY(-20deg) rotateZ(-10deg) translateX(4px) translateY(20px) translateZ(0px);
}
.resources_card .resources_card-img .image_3d.image_3d-leaflet {
	position: relative;
	transform-style: preserve-3d;
	height: 100%;
	width: fit-content;
	perspective-origin: center;
	left: 0px;
	top: 0px;
	transform-origin: left center;
	transform: perspective(270px) rotateX(60deg) rotateY(-21deg) rotateZ(48deg) translateX(54px) translateY(-62px) translateZ(-10px);
}
.resources_card .resources_card-img .image_3d.image_3d-brochure:before {
	display: block;
	content:'';
	left:0px;
	top:0px;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #7c6207 0%, var(--secondary_color) 100%); ;
	transform: rotateX(0deg) rotateY(10deg) rotateZ(0deg);
	transform-origin: left;
	position: absolute;
	z-index:1;
	box-shadow: 0px 20px 22px 0px rgba(0, 0, 0, .3);
}
.resources_card .resources_card-img .image_3d.image_3d-leaflet:before {
	display: block;
	content:'';
	left:0px;
	top:0px;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #555 0%, #ddd 100%); ;
	transform: rotateX(0deg) rotateY(20deg) rotateZ(0deg);
	transform-origin: left;
	position: absolute;
	z-index:1;
	box-shadow: 0px 20px 22px 0px rgba(0, 0, 0, .3);
}

.resources_card .resources_card-img .image_3d.image_3d-sheet img,
.resources_card .resources_card-img .image_3d.image_3d-brochure img {
	aspect-ratio:8.5/11;
	background-size: cover;
	width: auto;
  height: 100%;
  object-fit: cover;
	position:relative;
	z-index:3;
}

.resources_card .resources_card-img .image_3d.image_3d-leaflet img {
	aspect-ratio:3.5/8.5;
	background-size: cover;
	width: auto;
  height: 100%;
  object-fit: cover;
	position:relative;
	z-index:3;
}

.resources_card[data-resource-format_types*="Vid"] .resources_card-img:before {
	content:'';
	display:block;
	left:calc(50% - 40px);
	top:calc(50% - 40px);
	width:80px;
	height:80px;
	background: rgba(255,255,255,.6);
	position:absolute;
	border-radius:50%;
	z-index:1;
}

.resources_card[data-resource-format_types*="Vid"] .resources_card-img:after {
	content: '';
	position: absolute;
	left: calc(50% - 13px);
	top: calc(50% - 20px);
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 32px solid var(--secondary_color);
	border-radius: 3px;
	z-index: 1;
}

.resources_card .resources_card-action {
	position:absolute;
	left:0px;
	top:0px;
	width: 100%;
	height:100%;
	opacity:0;
	display:flex;
	flex-direction: column;
	align-items:center;
	justify-content: center;
	transition: .5s ease-in-out;
	background: rgba(0,0,0,.5);
	border-radius: 20px 20px 0px 0px;
	padding:1rem 2rem;
	z-index:10;
}
.resources_card:hover .resources_card-action {
	opacity:1;
	transition: .3 ease-in-out;
	background: rgba(0,0,0,.95);
}
.resources_card .resources_card-action a {
	width:100%;
	margin: .5rem 0px;  
	padding: .5rem .5rem;
}
.resources_card .resources_card-description,
.resources_card .resources_card-description p,
.resources_card .resources_card-description * {
	font-size:.7rem;
	display:block;
	line-height:.9rem;
	color: var(--grey_800_color);
}

.resources_card .resources_card-title {
	margin:0px 0px 5px 0px;
	font-size: 1.1rem;
	line-height: 1.25;
} 

.resources_card .resources_card-category {
	background : var(--primary_color);
	color: white;
	font-size:.6rem;
	padding: 4px 10px;
	border-radius: 5px;
	display:none;
}
.resources_card .resources_card-tags {
	line-height:.8rem;
	margin: 0px 0px 5px 0px;
}
.resources_card .resources_card-tags span {
	color: var(--grey_500_color);
	font-size:.7rem;
	display:inline-block;
	
}
.resources_card .resources_card-tags span:not(:last-child) {
	padding-right:5px;
	border-right: 1px solid var(--grey_500_color);
	margin:right:5px;
}


@media screen and (max-width: 768px) {
	.resources_card {
    flex: 1 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
	}
	.resources_card .resources_card-title {
    font-size: .9rem;
  }
	.resources_card .resources_card-img .image_3d.image_3d-leaflet {
		transform: perspective(270px) rotateX(60deg) rotateY(-21deg) rotateZ(48deg) translateX(34px) translateY(-62px) translateZ(-10px);
	}
	.resources_card .resources_card-img .image_3d.image_3d-sheet {
	  transform: perspective(340px) rotateX(50deg) rotateY(-10deg) rotateZ(40deg) translateX(28px) translateY(-20px) translateZ(30px);
  }
	.resources_card .resources_card-action {
		padding: 1rem;
	}
	.resources_card[data-resource-format_types*="Vid"] .resources_card-img:before {
		left:calc(50% - 25px);
		top:calc(50% - 25px);
		width:50px;
		height:50px;
	}
	.resources_card[data-resource-format_types*="Vid"] .resources_card-img:after {
		left: calc(50% - 7px);
		top: calc(50% - 11px);
		border-top: 11px solid transparent;
		border-bottom: 11px solid transparent;
		border-left: 18px solid var(--secondary_color);
	}

}