@charset "UTF-8";

#headerBackground{
	width: 100%;
	height: 82px;
	background-color: #27a8e0;
	position: fixed;
	z-index: 9997;
}

#headerLogoContainer{
	width: 140px;
	height: 82px;
	margin-left: 40px;
	float: left;
}

#headerLogoContainer img{
	width: 140px;
	height: 43px;
	padding-top: 24px;
}

#headerSocialContainer{
	display: inline-block;
	width: auto;
	height: 82px;
	float: left;
	margin-left: 50px;
}

.headerSocialButton{
	width: 38px;
	height: 38px;
	margin-top: 28px;
	margin-left: 4px;
	border-radius: 8px;
	background-color: #27a8e0;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
	float: left;
}

.headerSocialButton:hover{
	background-color: #e70f89;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

.headerSocialButton img{
	width: 24px;
	height: 24px;
	padding-left: 7px;
	padding-top: 7px;
}

#headerMenuContainer{
	display: inline-block;
	width: auto;
	height: 82px;
	float: right;
	margin-right: 40px;
}

.headerMenuLink{
	width: auto;
	height: 82px;
	margin-left: 10px;
	margin-right: 10px;
	float: left;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

.headerMenuLink:hover > h2{
	color: #123163;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

.headerMenuLink h2{
	margin-top: 40px;
}

#headerMenuMiniContainer{
	display: none;
	width: 44px;
	height: 44px;
	margin-top: 24px;
	margin-right: 20px;
	border-radius: 8px;
	background-color: #27a8e0;
	float: right;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
	cursor: pointer;
}

#headerMenuMiniContainer:hover{
	background-color: #e70f89;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

#headerMenuMiniContainer img{
	width: 32px;
	height: 32px;
	margin-left: 6px;
	margin-top: 6px;
}

/* Responsive Menu */ 
#headerResponsiveMenuBackground{
	position: fixed;
	width: 100%;
	top:0;
    bottom:0;
    left:0;
    right:0; 
	background-color: rgba(255,255,255,0);
	visibility: hidden;
	transition: 0.2s;
	z-index: 9998;
	cursor: pointer;
}

#headerResponsiveMenuContainer{
	position: fixed;
	width: 240px;
	top:0px;
    bottom:0px;
    left:-260px;
    right:0px; 
	background-color:#27a8e0;
	box-shadow: 0px 0px 18px rgba(0,0,0,0.5);
	transition: 0.2s;
}

#headerResponsiveMenuSocialContainer{
	width: calc(100% - 20px);
	margin-left: 10px;
	margin-right: 10px;
	height: 54px;
	margin-top: 20px;
	border-bottom: solid;
	border-bottom-width: 1px;
	border-bottom-color: #FFFFFF;
	padding-bottom: 14px;
}

.headerResonsiveMenuSocialButton{
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background-color: #27a8e0;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
	cursor: pointer;
	float: left;
	margin-top: 5px;
	margin-left: 8px;
}

.headerResonsiveMenuSocialButton:hover{
	background-color: #e70f89;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

.headerResonsiveMenuSocialButton img{
	width: 28px;
	height: 28px;
	margin-left: 8px;
	margin-top: 8px;
}

.headerResposinveMenuLink{
	width: calc(100% - 20px);
	margin-left: 10px;
	margin-right: 10px;
	height: 38px;
	margin-top: 10px;
	border-bottom: solid;
	border-bottom-width: 1px;
	border-bottom-color: #6dd3f7;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

.headerResposinveMenuLink:hover > h2{
	color: #123163;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

.headerResposinveMenuLink h2{
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 7px;
	padding-left: 10px;
}

#headerFixedSubMenu{
	position: fixed;
	height: auto;
	width: auto;
	top: 87px;
	right: 50px;
	display: block;
}

#headerMenuLanguageButton{
	width: auto;
	height: auto;
	background-color: #5FBA47;
	cursor: pointer;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
	border-radius: 2px;
	border:solid;
	border-width: 1px;
	border-color: #77dc5b;
	float: left;
}

#headerMenuLanguageButton:hover{
	background-color: #77dc5b;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

#headerMenuLanguageButton h1{
	margin: 0px;
	color: #FFFFFF;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 18px;
}

#headerMenuDonarButton{
	width: auto;
	height: auto;
	background-color: #e70f88;
	cursor: pointer;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
	border-radius: 2px;
	border:solid;
	border-width: 1px;
	border-color: #f90897;
	float: left;
	margin-right: 10px;
}

#headerMenuDonarButton:hover{
	background-color: #f90897;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

#headerMenuDonarButton h1{
	margin: 0px;
	color: #FFFFFF;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 18px;
}


/* Responsive Breakpoints */
/* Breakpoint 01 */ 
@media (max-width: 900px){
	
	#headerLogoContainer{
		margin-left: 20px;
	}
	
	#headerSocialContainer{
		display: none;
	}
	
	#headerMenuContainer{
		display: none;
	}
	
	#headerMenuMiniContainer{
		display: block;
	}
	
	#headerFixedSubMenu{
		display: none;
	}
	
}

/* Breakpoint 02 */ 
@media (max-width: 520px){
	
	#headerBackground{
		height: 54px;
	}

	#headerLogoContainer{
		width: 111px;
		height: 34px;
	}

	#headerLogoContainer img{
		width: 111px;
		height: 34px;
		padding-top: 10px;
	}
	
	#headerMenuMiniContainer{
		width: 38px;
		height: 38px;
		margin-top: 8px;
	}
	
	#headerMenuMiniContainer img{
		width: 28px;
		height: 28px;
		margin-left: 5px;
		margin-top: 5px;
	}
}