.vs-block-pdf {
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	overflow: hidden;
	position: relative;
	background-color: #3d799b;
	text-align: center;
}

.vs-block-pdf-background {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.2s ease-in-out;
}

.vs-block-pdf:hover .vs-block-pdf-background {
	transform: scale(1.2);
}

.vs-block-pdf .far {
	color: #999;
	position: relative;
	background-color: #ffffff;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	line-height: 72px;
}

@media (max-width: 800px) {
	.vs-block-pdf {
		min-height: 450px;
	}
}