@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;900&display=swap');

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

a {
	color: #805314;
}

body {
	background-color: white;
}

.header {
	width: 100%;
	border-bottom: 42px solid black;
	height: 122px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 15px;
}

.logo__wrapper {
	margin-bottom: 12px;
}

.header__logo {
	width: 250px;
}

.header-wrapper::after {
	content: 'Planroom';
	display: block;
	width: 100%;
	padding: 8px 15px 10px;
	border-bottom: 1px solid black;
	font-size: 14.4px;
	line-height: 30px;
	font-weight: 900;
	background-color: #cbb677;
	color: black;
	font-family: 'Nunito Sans', sans-serif;
}

.header__nav {
	font-size: 16px;
	display: flex;
}

.header__nav a {
	font-size: 14px;
	font-family: 'Nunito Sans', sans-serif;
	color: black;
	padding: 5px 10px;
	margin-left: 4px;
	line-height: 21px;
	font-weight: 400;
	position: relative;
}

.header__nav a:hover {
	color: white;
	text-decoration: none;
	transition: all .3s ease;
}

.header__nav a::after {
	content: '';
	position: absolute;
	transition: all .2s ease-in-out;
	width: 100%;
	height: 100%;
	z-index: -1;
	left: 0;
	top: 100%;
	background-color: black;
}

.header__nav a:hover::after {
	top: 0;
}

.main {
	padding: 40px 20px;
}