@import url("/templates/global.css");
@font-face {
	font-family: freight-sans-pro;
	src: url('freightsans.woff2');
}

@font-face {
	font-family: freight-big-pro;
	src: url('freightbig');
}

html {
	height: 100%;
}

body {
	background-color: white;
	height: 100%;
	border-left: 270px solid #f6f6f6;
}

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

a {
	color: #333;
}

.header-wrapper {
	width: 20vw;
	max-width: 270px;
	margin-left: -270px;
}

.header {
	width: 100%;
	padding: 30px;
}

.logo__wrapper {
	width: 100%;
	height: 50px;
	display: block;
}

.header__logo {
	width: 100%;
	max-width: 210px;
}

.header__nav {
	display: flexbox;
	margin-top: 10px;
}

.header__nav a {
	display: flex;
	width: 100%;
	line-height: 25px;
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
	transition: all .3s ease;
	font-size: 21px;
	font-family: freight-sans-pro, sans-serif;
}

.header__nav a:last-of-type {
	padding-bottom: 12px;
}

.header__nav a:hover {
	color: #818181;
	text-decoration: none;
}

.main-wrapper {
	margin-top: -398px;
}

.main {
	width: 100%;
	padding: 30px;
	max-width: 1100px;
}

.main-wrapper::before {
	content: 'PLANROOM';
	font-size: 72px;
	line-height: 79.2px;
	color: #333;
	font-family: freight-big-pro, sans-serif;
	display: block;
	margin: 0 30px;
	border-bottom: 3px solid #333;
}

@media (max-height: 750px) {
	.header__nav a {
		padding: 3px 0;
		font-size: 18px;
	}

	.header__nav a:last-of-type {
		padding-bottom: 5px;
	}

	.main-wrapper {
		margin-top: -314px;
	}
}

@media (max-width: 1350px) {
	.header-wrapper {
		margin-left: -20vw;
	}

	body {
		border-left: 20vw solid #f6f6f6;
	}
}

@media (max-width: 1022px) {
	.header-wrapper {
		height: 0;
	}

	.main-wrapper::before {
		margin: 0 15px;
	}
}