.shape {
	margin: 100px 0;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}


.diamond {
	margin-top: -40px;
	margin-right: 30px;
	width: 233px;
	height: 275px;
	position: relative;
}

.diamond .x {
	width: 0;
	height: 0;
	border-top: 70px solid #0ab3e6;
	border-right: 117px solid transparent;
	border-left: 117px solid transparent;
}

.diamond:hover .x {
	border-top: 70px solid #ff6493;
}

.diamond .z {
	width: 234px;
	height: 135px;
	background-color: #0ab3e6;
}

.diamond:hover .z {
	background-color: #ff6493;
}

.diamond .s {
	width: 0;
	height: 0;
	border-bottom: 70px solid #0ab3e6;
	border-right: 117px solid transparent;
	border-left: 117px solid transparent;
}

.diamond:hover .s {
	border-bottom: 70px solid #ff6493;

}

.diamond:hover .title {
	display: none;
}

.diamond .text {
	position: absolute;
	display: none;
	top: 29%;
	left: 5%;
	color: white;
	text-align: center;
}

.diamond:hover .text {
	display: block;
}

.diamond .title {
	position: absolute;
	width: 100%;
	top: 40%;
	left: 50%;
	transform: translateX(-31%);
	font-size: 33px;
	color: white;
	font-weight: 700;
}