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

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

a {
	color: #012A5E;
}

body {
	background-color: #fff;
}

.header {
	width: 96%;
	display: flex;
	justify-content: space-between;
}

.header-wrapper {
	background-image: url('header-bg.png');
	background-size: cover;
	background-position: center;
	height: 20vw;
	max-height: 300px;
}

.header-wrapper::after {
	content: 'PLANROOM';
	font-family: 'Poppins', sans-serif;
	font-size: 41px;
	font-weight: 500;
	color: white;
	width: 100%;
	justify-content: center;
	display: flex;
}

.header__logo img {
	transition: opacity 0.2s;
	width: 243px;
	margin: 31px 0;
}

.header__logo img:hover {
	opacity: 0.8;
}

.header__main {
	text-align: right;
}

.nav-top {
	height: 37.5px;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-right: 33px;
	font-family: 'Poppins', sans-serif;
}

.nav-top i {
	color: white;
	font-size: 15px;
	margin-right: 7px;
	margin-left: 22.75px;
}

.nav-top span {
	color: white;
	font-size: 15px;
	transition: all 80ms ease-in;
}

.nav-top a {
	text-decoration: none;
}

.nav-top a:hover span {
	color: black;
}

.nav-bottom a {
	padding: 0 25px;
	line-height: 52.5px;
	height: 52.5px;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	color: white;
	transition: all 200ms;
}

.nav-bottom a:hover {
	color: #d4d4d4;
	text-decoration: none;
}

.nav-bottom a.active {
	color: #001e3f;
	font-weight: 500;
}