.vguide {
	position: relative;
	margin-bottom: 5px;
	overflow: hidden;
}

.vguide::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #023160;
	opacity: .5;
	transition: opacity ease .4s;
	z-index: 1;
	pointer-events: none;
}

.vguide:hover::before {
	opacity: .3;
}

.vguide a {
	width: 100%;
	height: 100%;
}
.vguide h4 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	color: #fff;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Larken W05 Medium";
	font-size: 22px;
	width: 100%;
}

.vguide h4 span {
	height: 20px;
	width: 12px;
	position: relative;
	background-color: #FFC337;
	margin-left: 10px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.vguide h4 span::after {
	content:"";
	display: block;
	background-color: #FFC337;
	position: absolute;
	right: -8px;
	top: 0;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	height:20px;
	width:10px;
	z-index: -1;
}

.vguide h4 span i {
	font-size: 8px;
}
.vguide img {
	transform: scale(1);
	transition: transform ease 0.4s;
	filter: saturate(25%);
}
.vguide:hover img {
	transform: scale(1.1);
	filter: saturate(100%);
}
@media screen and (min-width: 64em) {
	.vguide {
		margin-bottom: 0;
	}
	.vguide h4 {
		font-size: 26px;
	}
}

@media screen and (min-width: 1200px) {
	.vguide h4 {
		font-size: 38px;
	}
}