@import url('https://fonts.googleapis.com/css?family=Open+Sans:300|Raleway');

.t-primary-bgcolor {
	background-color: #212529;
}

a {
	color: #212529;
}



.header {
	width: 100%;
}

.header-wrapper {
	background-image: linear-gradient(to bottom, rgba(35, 31, 32, 0.75), rgba(35, 31, 32, 0.75)), url(header-background.webp);
	background-size: cover;
	background-position: center bottom !important;
}

.header__masthead {
	height: 200px;
	width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
    padding: 0px 30px 14px 30px;
    max-width: 100%;
}

.header__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.header__logo img {
	display: block;
	box-shadow: drop-shadow(rgba(0, 0, 0, 0.5) 0px 0px 5px);
	width: 90px !important;
}

.header__tagline {
	font-weight: 700;
	color: white;
	text-transform: uppercase;
	letter-spacing: 2.04px;
	font-size: 13.6px;
	white-space: nowrap;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.header__tagline .dot {
	color: rgb(255, 213, 32);
	padding: 0 0.2rem;
}

.header__right {
	text-align: right;
}

.header__title {
	margin: 0;
	font-size: 40px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgb(255, 213, 32);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.header__nav {
	display: flex;
	background-color: #212529;
	justify-content: center;
	align-items: center;
	align-self: center;
}

.header__nav a {
	text-transform: uppercase;
	font-size: 13.6px;
	letter-spacing: 1px;
	font-weight: 600;
	position: relative;
	display: inline-flex;
	align-items: flex-start;
	padding: 24px 16px;
	color: white;
	text-decoration: none;
}

.header__nav a {
	transition: color 200ms ease;
}

.header__nav a:hover,
.header__nav a:focus,
.header__nav a:focus-visible {
	color: rgb(255, 213, 32);
	text-decoration: none;
}

.header__nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 14px;
	height: 4px;
	width: 8px;
	background: rgb(255, 213, 32);
	transform: translateX(-50%);
	transition: width 220ms ease, left 220ms ease, transform 220ms ease;
}

.header__nav a:hover::after,
.header__nav a:focus-visible::after {
	width: calc(100% - 32px);
	/* match padding (16px + 16px) */
	left: 16px;
	transform: translateX(0);
}


.pay-button {
	display: flex;
	color: black !important;
	padding: 6px 16px !important;
	border-radius: 2px;
	background: #ffc107;
	margin-left: 15px;
}

.pay-button:hover {
	background: rgb(255, 202, 44) !important;
}

.pay-button::before,
.pay-button::after {
	display: none !important;
}
