.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;
	border-bottom: solid 2px #efefef;
}

.module-header-d .module-header-d-inner {
	padding: 15px 15px 15px;
	
}

.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.39539565826330536) 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 {
display: inline-block;
    position: relative;
    font-family: "Libre Baskerville", serif;
    text-transform: uppercase;
    font-weight: bold;
}

.module-header-d .main-navigation-menu > li:after {
	display: none;
}

.module-header-d .main-navigation-menu > li > a {
	display: block;
	color: #0b6d3f;
	font-size: 20px;
	padding: 8px 5px;
	position: relative;
	border: 2px solid transparent;
	text-decoration: none;
	text-transform: capitalize;-webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;
  
}

.module-header-d .main-navigation-menu > li > a:hover,
.module-header-d .main-navigation-menu > li > a:focus {
	border-color: #0b6d3f;
    color: #0b6d3f;
    text-decoration: none;
}

.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;
	}
}