.home-global {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-global .hero-image {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.home-global .container {
	position: relative;
	z-index: 1;
}

.home-global .container .row {
	justify-content: center;
}

.home-global__card {
	
	display: flex;
	align-items: center;
	text-align: center;
	padding: 3.2rem;
	height: 100%;
	
	background: rgba(255, 255, 255, 0.6);
	border-radius: 1.6rem;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	
	transition: .3s ease;
}

.home-global__card > div {
	width: 100%;
}

.home-global__card:hover {
	background: rgba(255, 255, 255, 1);
}

.home-global__card img {
	height: 10rem;
	width: auto;
	object-fit: contain;
	margin: 0 auto;
}

.home-global__card .title-5 {
	margin: 2.4rem 0;
}





