.module-header-d {
	position: fixed;
	width: 100%;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.scrolled .module-header-d {
	background: #fff;
}

.module-header-d .module-header-d-inner {
	padding: 15px 15px 0;
}

.module-header-d-inner {
	display: flex;
	z-index: 1;
	position: relative;
}

.module-header-d:before {
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	bottom:0;
	left:0;
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	pointer-events: none;
}

.module-header-d-right {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
	padding-left: 5%;
}

.module-header-d .main-navigation-menu > li {
	padding: 0;
	margin-right: 8px;
}

.module-header-d .main-navigation-menu > li:after {
	display: none;
}

.module-header-d .main-navigation-menu > li > a {
	padding: 8px;
	text-decoration: none;
	border: 2px solid transparent;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.module-header-d .main-navigation-menu > li > a:hover,
.module-header-d .main-navigation-menu > li > a:focus {
	border: 2px solid #E80924;
}

.module-header-d-phone {
	margin-left: 4%;
	display: none;
}

.module-header-d-phone span {
	margin-right: 6px;
}

@media screen and (min-width: 1300px) {
	.module-header-d-phone {
		display: block;
	}
}