@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

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

a {
	color: #1d67cd;
}

body {
	background-color: #fff;
}

.container {
	width: 1050px;
}

.header-wrapper {
	border-top: 15px solid #a52a2a;
}

.header-wrapper::after {
	height: 150px;
	content: "";
	display: block;
	background-image: linear-gradient(to bottom, rgba(83, 81, 81, 0.68), rgba(83, 81, 81, 0.68)), url('banner-bg.jpg');
	background-size: cover;
	background-position: center;
}

.header {
	display: flex;
	justify-content: space-between;
	padding: 24px 21px;
}

.header__right {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: flex-end;
}

.planroom-link {
	color: #A52A2A;
	letter-spacing: 0.1em;
	font-size: 16px;
	font-weight: 500;
	font-family: "Nunito", sans-serif;
	text-transform: uppercase;
	transition: all 0.2s ease, visibility 0s;
	background: rgba(0, 0, 0, 0);
	border: 1px solid #A52A2A;
	padding: 0 12px;
	line-height: 20px;
	margin-right: 14px;
}

.planroom-link:hover {
	text-decoration: none;
	color: #c2c2c2;
}

.header__nav {
	font-size: 0;
}

.header__nav a {
	color: #808080;
	font-size: 20px;
	font-family: "Roboto Condensed", sans-serif;
	text-transform: uppercase;
	line-height: 49px;
	padding: 14px;
	letter-spacing: -0.5px;
}

.header__nav a:hover {
	text-decoration: none;
	color: #e1a9a9;
	border-top: 4px solid #c37a7a;
}