#contact-us-container {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
}

.contact-us-email {
	background: #00b5e2;
	margin: 0 10vw;
	padding: 1vh 3vw;
	border-radius: 10px;
	box-shadow: 0 0 10px 5px #046d87;
	width: 50vw;
	color: white;
	text-align: center;
}

.contact-us-email h3 {
	border-bottom: 1px solid white;
}

@media screen and (max-width:1024px) {
	.contact-us-email {
		width: 90%;
	}

	.header-bottom-inner a {
		display: none;
	}

	#page-heading {
		font-size: 2.5rem;
	}

	.header-bottom::after {
		height: 5rem;
		background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0.6) 3rem, transparent 100%);
	}

	main {
		margin-top: 4rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.5rem;
	}
}