.f_header {
	width: 100%;
	background: #140e25;
	height: 87px;
	display: flex;
	align-items: center;
}

.f_header_title {
	font-size: 28px;
	color: #fff;
	text-decoration: none;
}

.f_header_logo {
	width: 200px;
}

.f_header_item {
	transition: 0.3s;
	color: #fff;
	font-size: 17px;
	font-weight: 400;
	text-decoration: none;
	padding: 0 18px;
}

.f_header_item:hover {
	color: #8b8b8b;
}

.f_header_box {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.f_header_box section {
	font-family: Montserrat;
	display: flex;
	align-items: center;
}

.f_header_login {
	font-weight: 500;
	margin-right: 5px;
}

.f_header_signup {
	cursor: pointer;
	text-decoration: none;
	background: #e9ad01;
	color: #fff;
	font-weight: bold;
	padding: 10px 40px;
	border-radius: 5px;
	display: block;
	font-size: 18px;
}

.f_header svg {
	fill: #ffff;
	width: 15px;
	height: 15px;
	padding-right: 5px;
}


@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.f_header {		
		height: 100px;
	}

	.f_header_box {
		flex-wrap: wrap;
	}

	.f_header_title {
		box-sizing: border-box;
		margin-top: 1.5rem;
		width: 100%;
		text-align: center;	
	}

	.f_header_box section {
		justify-content: space-around;
		padding-bottom: 1rem;
		width: 100%;
	}

	.f_header_item {
		font-size: 12px;
	}

}
