.container-header-banner {
	position: relative;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.image-header-banner {
	display: block;
	/* width: 100%; */
	max-width: 100%;
	height: auto;
	float: none;
}

.text-header-banner {
	position: absolute;
	bottom: 70px;
	left: 105px;
	margin: 10px;
	color: #FF3E41;
	font-weight: bold;
	font-size: 30px;
}

.nav-header-banner {
	background-color: transparent;
	padding: 5px;
}

.horizontal-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	font-size: 20px;
}

.horizontal-menu li {
	display: flex;
	align-items: center;
	margin-right: 5px;
}

.horizontal-menu a {
	text-decoration: none;
	color: #FF3E41;
	font-weight: bold;
}

.arrow::after {
	content: ' \27A3';
	margin-left: 5px;
	color: #FF3E41;
}

.horizontal-menu a:hover {
  text-decoration: underline;
}

/* Mobile Devices */
@media screen and (max-width: 767px) {
	.text-header-banner {
		bottom: 5px;
		left: 15px;
		margin: 5px;
		font-weight: bold;
		font-size: 15px;
	}
	
	.horizontal-menu {
		font-size: 10px;
	}
}