@charset "utf-8";

header {
	position: fixed;
	background: var(--brand-marine);
	top: 0;
	width: 100vw;
	transition: 0.2s;
	color: white;
	z-index: 200;
}
#menu {
	margin: auto;
	padding: 0px 40px;
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu__logoHolder {
	height: 85px;
	transition: 0.3s;
	display: flex;
	align-items: center;
}

#menu__logo {
	max-width: 110px;
	transition: 0.2s;
}
.menu__icon {
	width: 2rem !important;
}
.menu__sections {
	display: flex;
	align-items: center;
}
#menu__btn {
	display: none;
	border: none;
	background: transparent;
	color: white;
}
#menu__links {
	margin: 0px;
	list-style: none;
	display: inline-flex;
    align-items: center;
	height: fit-content;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: 0.2s;
	color: white;
}


.menu__link {
	font-weight: 800;
	margin: 0 1.2rem;
	padding: .5rem .7rem;

}
.menu__donate {
	cursor: pointer;
	background: var(--brand-darkgreen);
    border-radius: 100px;
	padding: .8rem 1.5rem;
}
#menu__donateStar {
	position: absolute;
	width: 15px;
	bottom: 45px;
	color: #fbda27;
	transition: 0.3s;
	display: none;
}

@media only screen and (max-width: 900px) {
	#menu__btn {
		display: inherit;
	}
	#menu__links {
		display: none;
		position: fixed;
		top: 85px;
		right: 0px;
		width: 100vw;
		background: #272541;
		color: white !important;
	}
	.menu__link {
		padding: 1rem;
		margin: 0;
		font-weight: 600;
		text-align: center;
		text-transform: uppercase;
		border: 0.1px rgba(255, 255, 255, 0.05) solid;
	}
	.menu__donate{
		border-radius: 0;
	}
	#menu__donateStar {
		bottom: 30px !important;
	}
}
