body {
	font-family: "Times New Roman", Times, serif;
	font-weight: 600;
}

.item {
	transition: all 400ms;
	overflow: hidden;
	position: relative;
}

.item.active {
	width: 34%;
}

.item.inactive {
	width: 22%;
	filter: grayscale(100);
}

.item.active h2 {
	top: 70px;
}

.item h2 {
	font-size: 40px;
	position: absolute;
	top: 38%;
	color: #fff;
	padding: 0 25px;
	line-height: 1;
	transition: all 400ms;
}

.item.active div {
	transform: translateY(0);
}

a {
	font-weight: 700;
	font-size: 10px;
	position: relative;
	left: -35px;
	display: inline-block;
	padding: 14px 35px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 40px;
	border: 1px solid #6b6b6d;
	color: #fff;
	letter-spacing: 0.3em;
	transition: border 200ms ease;
}

a::before {
	position: absolute;
	width: 56px;
	height: calc(100% + 2px);
	left: -1px;
	top: -1px;
	z-index: 5;
	background: #1d1d23;
	content: "";
}
