.alertbar {
	position: fixed;
	background-color: var(--darkblue);
	width: 100%;
	color: #FFF;
	text-align: center;
	letter-spacing: .04rem;
	z-index: 10;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	/*border-bottom: 1px solid #FFF;*/
	text-decoration: none;
}

.alertbar:hover {
	text-decoration: none;
	background-color: var(--green);
}

.alertbar-mobile {}
	@media (min-width: 550px) {.alertbar-mobile {display: none;}}

.alertbar-desktop {}
	@media (max-width: 549px) {.alertbar-desktop {display: none;}}

.alertbar span {margin: 0 6px;}
.alertbar p {
	color: #FFF;
	display: inline;
	font-size: 18px;
}

.alertbar:hover p,
.alertbar:hover span {text-decoration: none;}



header {
	position: relative;
	height: 100px;
	margin-top: 45px;
}
	@media (min-width: 768px)  {header {height: 135px;}}
	@media (min-width: 1024px) {header {height: 160px;}}

.header-logo {
	position: absolute;
	left: 20px;
	top: 18px;
	width: 150px;
}
	@media (min-width: 500px) {.header-logo {width: 160px;}}
	@media (min-width: 768px) {
		.header-logo {
			left: 30px;
			top: 30px;
			width: 200px;
		}
	}
	@media (min-width: 1024px) {
		.header-logo {
			left: 50px;
			top: 40px;
			width: 230px;
		}
	}

.header-audience-buttons {
	position: absolute;
	top: 57px;
	left: 50%;
	transform: translateX(-50%);
}

.header-audience-buttons .btn {
	margin: 0 5px;
	padding: 12px 15px 14px;
	letter-spacing: 0;
	font-family: "HurmeGeometricSans3-SemiBold";
}
	.header-audience-buttons .header-audience-communities {border-color: var(--green); color: var(--green);}
		.header-audience-buttons .header-audience-communities:hover {background-color: var(--green); color: var(--white);}

	.header-audience-buttons .header-audience-attorneys {border-color: var(--red); color: var(--red);}
		.header-audience-buttons .header-audience-attorneys:hover {background-color: var(--red); color: var(--white);}
	
	@media (max-width: 1199px) {.header-audience-buttons .btn {display: none;}}
	@media (min-width: 1244px) {
		.header-audience-buttons .btn {
			padding-left: 20px;
			padding-right: 20px;
		}
	}
	@media (min-width: 1440px) {
		.header-audience-buttons .btn {
			margin: 0 7px;
			padding-left: 25px;
			padding-right: 25px;
			letter-spacing: .01rem;
		}
	}

/* DONATE LINK */
.header-donate {
	font-family: "HurmeGeometricSans3-SemiBold";
	position: absolute;
	right: 205px;
	top: 38px;
	font-size: 20px;
}
	@media (max-width: 499px) {.header-donate {display: none;}}
	@media (min-width: 768px) {
		.header-donate {
			right: 275px;
			top: 55px;
		}
	}
	@media (min-width: 1024px) {.header-donate {top: 70px;}}

	.menu-open .header-donate {color: var(--white); z-index: 100;}
/* DONATE LINK */

/* MENU BUTTON */
.header-menu-button {
	font-family: "HurmeGeometricSans3-SemiBold";
	position: absolute;
	right: 20px;
	top: 22px;
	padding: 12px 20px 14px;
	background-color: var(--darkblue);
	color: var(--white);
}
	@media (min-width: 500px) {
		.header-menu-button {
			right: 120px;
			top: 25px;
		}
	}
	@media (min-width: 768px) {
		.header-menu-button {
			right: 160px;
			top: 41px;
		}
	}
	@media (min-width: 1024px) {.header-menu-button {top: 57px;}}

	.header-menu-button:hover {
		background-color: var(--white);
		color: var(--darkblue);
	}
/* MENU BUTTON */

/* SELECT */

.w3-dropdown-content {
    cursor: auto;
    color: #000;
    background-color: #fff;
    display: none;
    position: absolute;
    min-width: 112px;
    padding: 0 5px;
    margin: 0;
    padding: 0;
    z-index: 1;
    text-align: left;
    padding: 8px 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    border-radius: 4px;
}

.w3-dropdown-content ul {
	list-style: none;
	margin-bottom: 4px;
}

.w3-dropdown-content ul li:last-child {
	margin-bottom: 0 !important;
}


.w3-dropdown-hover:first-child, .w3-dropdown-click:hover {
    color: #000;
}
.w3-right {
    float: right!important;
}
.w3-dropdown-click,
.w3-dropdown-hover {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.w3-dropdown-hover:hover .w3-dropdown-content {
    display: block;
}


.language-button {
	position: absolute;
	right: 30px;
	top: 57px;
}

.language-button button {
	padding: 6px 7px 8px;
	border: none;
	background-color: transparent;
	color: var(--mainblue);
	width: 120px;
	/*background-color: #eee;*/
	height: 50px;

}

.language-button p {
    font-size: 12px;
    float: left;
    margin-right: 4px;
    position: relative;
    top: 5px;
    color: var(--darkblue);
	font-family: "HurmeGeometricSans3-SemiBold";
}


.header-language-select {
	font-family: "HurmeGeometricSans3-SemiBold";
	position: absolute;
	right: 20px;
	top: 40px;
	font-size: 20px;
	padding: 0;
	border: none;
	background-color: transparent;
	outline: none;
	color: var(--darkblue);
	cursor: pointer;
}
	@media (max-width: 499px) {.header-language-select {display: none;}}
	@media (min-width: 500px) {
		.header-language-select {
			right: 30px;
			top: 21px;
		}
	}
	@media (min-width: 768px) {
		.header-language-select {
			right: 50px;
			top: 35px;
		}
	}
	@media (min-width: 1024px) {.header-language-select {top: 52px;}}

	select.header-language-select:hover {}
	select.header-language-select:focus {
	    border: none;
	    outline: 0;
	}

	.menu-open .header-language-select {color: var(--white); z-index: 100;}
/* SELECT */