/* HERO-SECTION */
.hero-section-countries {
	height: 95vh;
	padding: 20px;
	margin-top: -42px;
	background: url('https://picsum.photos/id/1019/1920/1080') center/cover no-repeat;
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	color: white;
}

.hero-section-countries::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.35);
	border-radius: inherit;
}

.hero-section-countries * {
	position: relative;
	z-index: 2;
}

h1 {
	font-size: clamp(2rem, 5vw, 4rem);
	margin-bottom: 20px;
}

@media (max-width: 768px) {

	.hero-section-countries {
		height: 90vh;
	}
}