.contact-banner {
		gap: 0.625rem;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1rem;
		line-height: 1;
		color: white;
		background-color: #002244;
		min-height: 2.5rem;
		font-style: italic;
		width: 100%;
		text-align: center;
}

.excess-banner {
	display: none;
	height: 2.5rem;
	width: calc((100vw - 1440px) / 2);
	background-color: #002244;
	position: absolute;
}
.excess-footer {
	display: none;
	height: 262px;
	width: calc((100vw - 1440px) / 2);
	background-color: #002244;
	position: absolute;
}

@media only screen and (min-width: 1440px) {
	.excess-banner {
		display: inline-block;
	}

	.excess-footer {
		display: inline-block;
	}
}

/* Tooltip Styles */
.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 140px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 8px;
	position: absolute;
	z-index: 1000;
	bottom: 80%;
	left: 50%;
	margin-left: -70px;
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 12px;
	font-weight: normal;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.footer {
		font-family: Montserrat;
		display: flex;
		overflow: hidden;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 3.5rem 5rem;
		width: 100%;
		font-size: 1rem;
		background-color: #002244;
		color: #f5f5f5;
		height: 262px;
}