@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');

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

a {
	color: #418fde;
}

body {
	background-color: #f2f2f2;
}

.header-wrapper {
	background-color: white;
	border-top: 25px solid #418fde;
	margin-bottom: 30px;
}

.header__logo {
	width: 170px;
}

.header {
	width: 100%;
	padding: 0 40px;
	display: flex;
	max-width: 1600px;
	align-items: center;
}

.header__nav {
	display: flex;
	padding: 0 16px;
	justify-content: space-around;
	width: 100%;
}

.header__nav a {
	padding: 61px 10px;
	font-size: 17px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 17px;
	color: #434040;
	margin-right: 20px;
	transition: all 200ms ease-in-out;
}

.header__home {
	width: 105.6px;
	padding: 61px 10px;
	font-size: 17px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 17px;
	color: #434040;
	text-align: center;
	transition: all 200ms ease-in-out;
	display: inline-block;
}

.header__icon {
	width: 40px;
	padding: 61px 10px;
	height: 138px;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 16px;
	color: #434040;
	text-align: center;
	transition: all 200ms ease-in-out;
	display: none;
}

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

.header__home:hover,
.header__icon:hover {
	color: #2480c3;
	text-decoration: none;
}

.header-wrapper::after {
	content: 'Planroom';
	line-height: 84px;
	padding: 32px 40px;
	font-size: 60px;
	font-weight: 300;
	font-family: 'Montserrat', sans-serif;
	color: white;
	width: 100%;
	display: block;
	background: linear-gradient(to top, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, 0)75%), url('header-bg.png');
	background-repeat: no-repeat, repeat;
	background-size: cover, 240px 16px;
}

@media (max-width: 1408px) {
	.header__nav a {
		font-size: 16px;
		line-height: 16px;
	}

	.header__icon {
		display: inline-block;
	}

	.header__home {
		display: none;
	}

	.header__nav {
		width: calc(100% - 210px);
	}
}

@media (max-width: 1298px) {
	.header__nav a {
		margin: 0;
	}
}

@media (max-width: 1178px) {
	.header__nav a {
		font-size: 14px;
		line-height: 14px;
	}

	.header__icon {
		font-size: 14px;
		line-height: 14px;
		height: 136px;
	}
}

@media (max-width: 1178px) {

	.header__nav,
	.header__icon {
		display: none;
	}

	.header__logo {
		padding: 20px 0;
	}
}

@media (min-width: 1600px) {
	.header-wrapper::after {
		padding-left: calc(50% - 760px);
	}
}