.hero {
	position: relative;
	min-height: 30vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.social-fixed-buttons {
	position: fixed;
	bottom: 50px;
	right: 0;
	transform: translateY(-50%);
	z-index: 1050;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 2px;
}
.social-fixed-buttons a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ced4da;
	border-radius: 0.375rem;
	transition: transform 0.2s ease;
}
.social-fixed-buttons img {
	width: 32px;
	height: 32px;
}
.rating-icons svg {
	width: 1rem;
	height: 1rem;
	fill: #f0ad4e;
	margin-right: 2px;
}
#logo {
	height: 60px;
	width: 120px;
}
.nav-icon svg {
	transition: transform 0.2s ease, fill 0.2s ease;
}
a:active .nav-icon svg {
	transform: scale(1.2);
}
h1 {
	color: #08384a;
	text-align: center;
}
@media (min-width: 992px) {
	.hero {
		min-height: 40vh;
	}
	#logo {
		height: 80px;
		width: 160px
	}
}
