body, html {
	margin: 0;
	padding: 0;
}

.ge-header-containers {
	background: linear-gradient(to bottom, #993333 98%, #00000000 100%);
	height: 80px;
	padding-left: 5px;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 10px;
	display: flex;
	justify-content: space-between;
	font-family: Arial;
	color: #E5E5E5;
}
.ge-header-container-left {
	display: flex;
	align-content: end
}
.ge-header-container-right {
	align-self: end;
	font-size: 14px;
}
.ge-logo-container {
	align-self: center;
	width: 340px;
	height: 100%;
	margin-left: 10px;
	background-color: #E5E5E5;
	background-size: cover;
	background-repeat: no-repeat;
	mask-image: url("images/logo_new.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("images/logo_new.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}
.ge-lang-container {
	align-self: end;
	padding-left: 70px;
}
.ge-language-flag {
	width: 52px;
	height: 35px;
	margin-left: 15px;
	display: inline-block;
	border: 3px solid transparent;
	border-radius: 12px;
	transition-property: border;
	transition-duration: 200ms;
	transition-timing-function: ease-out;
}
.ge-language-flag:not(.inactive) {
	cursor: pointer;
}
.ge-language-flag:not(.inactive):hover {
	border: 3px solid #E5E5E5;
}
.ge-language-flag-german {
	background-image: url("images/german_flag_round_corner-128x128.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.ge-language-flag-uk {
	background-image: url("images/uk_flag_round_corner-128x128.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.ge-header-email-container {
	align-self: end;
	padding-left: 70px;
	padding-bottom: 3px;
}

.ge-email-contact {
	cursor: pointer;
	transition-property: color;
	transition-duration: 200ms;
	transition-timing-function: ease-out;
}
.ge-email-address {
	display: inline-block;
	font-size: 14px;
	font-weight: initial;
	color: #E5E5E5;
}
.ge-email-contact:hover .ge-email-address {
	color: white;
}
.ge-icon-email {
	width: 20px;
	height: 10px;
	margin-right: 5px;
	display: inline-block;
	position: relative;
}
.ge-icon-email:after {
	display: block;
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	transform: translateY(-5px);
	background-color: #E5E5E5;
	mask-image: url("images/email-icon.svg");
	mask-size: cover;
	mask-repeat: no-repeat;
	-webkit-mask-image: url("images/email-icon.svg");
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;

	transition-property: background-color;
	transition-duration: 200ms;
	transition-timing-function: ease-out;
}
.ge-email-contact:hover .ge-icon-email:after {
	background-color: white;
}
.ge-header-address-container {
	padding-left: 30px;
	position: relative;
	margin-bottom: 7px;
}
.ge-header-address-container:before {
	display: block;
	position: absolute;
	content: '';
	width: 15px;
	height: 20px;
	left: 0;
	top: 0;
	background-color: #E5E5E5;
	mask-image: url('images/location-icon.svg');
	mask-size: cover;
	mask-repeat: no-repeat;
	mask-position: 50% 0px;
	-webkit-mask-image: url('images/location-icon.svg');
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 50% 0px;
}
.ge-header-phone-container {
	padding-left: 30px;
	position: relative;
	margin-bottom: 1px;
}
.ge-header-phone-container:before {
	display: block;
	position: absolute;
	content: '';
	width: 15px;
	height: 20px;
	left: 0;
	top: 0;
	background-color: #E5E5E5;
	mask-image: url('images/phone-icon.svg');
	mask-size: cover;
	mask-repeat: no-repeat;
	mask-position: 50% -2px;
	-webkit-mask-image: url('images/phone-icon.svg');
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 50% -2px;
}