.box{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: top;
}

*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.card {
	border-radius: 2em;
	width: 300px;
	height: 300px;
	position: relative;
	cursor: pointer;
	margin: 4em 2em;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

figure {
	position: absolute;
	width: 100%;
	height: 100%;
	top: -35%;
	left: -35%;
	/* transform-origin: 0% 0%; */
	transform: scale(0.6);
	transition: all 850ms ease-in-out;
	z-index: 2;
	background: #E5DED4;
    border-radius: 2em;
}

.bubblesBG {
	background: #E5DED4;
}

.blossomBG {
	background: #E5DED4;
}

.buttercupBG {
	background: #E5DED4;
}

/*
.card:hover figure {
	top: -10%;
	left: -10%;
	transform: scale(0.6);
}
*/
img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2em;
}

.title {
	position: absolute;
	width: 50%;
	height: 50%;
	right: 0;
	display: grid;
	place-items: center;
	z-index: 1;
}

.title h2 {
	font-size: 1.25rem;
	text-align: center;
}

.content {
	position: absolute;
	bottom: 0;
	padding: 1em 1.5em;
	z-index: 1;
	color: #161c2a;
	line-height: 20px;
}

.backBTN{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 5px;
    padding: 5px;
    font-size: 18px;
}

.backBTN a{
    text-decoration: none;
    color: #000;
}

.ri-arrow-left-line{
    width: 100px;
    height: auto;
}

/** Responsive **/
@media (min-width: 768px) {
	section {
		display: flex;
	}
	.title h2 {
		font-size: 1.45rem;
	}
}