figure.effect-milo {
	background: orange;
	display: inline-block;
	margin: 0 10px 10px 0;
	overflow: hidden;
	position: relative;
	width: 360px;
}
figure.effect-milo figcaption {
	bottom: 0;
	color: #fff;
	font-size: 18px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

figure.effect-milo img {
	opacity: 1;
	transition: opacity 0.35s;
	width: 100%;
}

figure.effect-milo:hover img {
	opacity: 0.5;
}

figure.effect-milo p {
	margin: 0;
	opacity: 0;
	transition: opacity 0.35s, transform 0.35s;
	transform: translate3d(-40px,0,0);
}

figure.effect-milo p.name {
	border-right: 1px solid #fff;
	bottom: 30px;
	font-size: 26px;
	padding-right: 10px;
	position: absolute;
	right: 30px;
	text-align: right;
}

figure.effect-milo p.name span {
	font-weight: 800;
}

figure.effect-milo p:not(.name) {
	border-left: 1px solid #fff;
	left: 30px;
	padding-left: 10px;
	position: absolute;
	top: 30px;
}

figure.effect-milo:hover p {
	opacity: 1;
	transform: translate3d(0,0,0);
}
@media (min-width: 1200px) {	
	figure.effect-milo:nth-of-type(3n) {
		margin-right: 0;
	}
}
@media (min-width: 992px) and (max-width: 1199px ) {
	figure.effect-milo {
		width: 300px;
	}	
	figure.effect-milo:nth-of-type(3n) {
		margin-right: 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	figure.effect-milo {
		width: 335px;
	}
	
	figure.effect-milo:nth-of-type(2n) {
		margin-right: 0;
	}
}
@media (max-width: 767px) {
	.hide-br {
		display: none;
	}

	figure.effect-milo {
		background: none;
		margin-bottom: 40px;
		margin-right: 0;
		width: 100%;
	}
	
	figure.effect-milo figcaption {
		position: static;
		color: black;
	}
	
	figure.effect-milo:hover img {
		opacity: 1;
	}

	figure.effect-milo p.name span {
		font-weight: 300;
	}
	
	figure.effect-milo p.name,
	figure.effect-milo p:not(.name) { 
		border: none;
		opacity: 1;
		padding: 0;
		position: static;
		text-align: left;
		transform: unset;
		transition: unset;
	}
}