.happy-hover-card-mod {
 position: relative;
  overflow: hidden;    
  width: 100%;
  height: 340px;
}

.happy-hover-card-mod img {
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
	min-height: 100%;
	max-width: 100%;
  width: 100%;
}

.happy-hover-card-caption {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
  padding: 5px;
  z-index: 2;
}

.happy-hover-card-caption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.happy-hover-card-caption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.happy-hover-card-mod h2,
.happy-hover-card-mod p {
	margin: 0;
  position: relative;
  z-index: 2;
}

.happy-hover-card-overlay {
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 z-index: 1;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

{# ALIGNMENT #}
.c-justify-center,
.c-justify-left,
.c-justify-right {
  display:flex;  
  flex-flow: wrap;
}

.c-justify-center {
 justify-content: center;
}
.c-justify-left {
 justify-content: left;
}
.c-justify-right {
 justify-content: right;
}
