.header {
	background: #fff;
	position:relative;
}

@media screen and (min-width: 768px) {
	.header {
		padding: 0px 0;
	}
}

.header__inner {
}


.header__info {
	background: #fff;
}


	.header__info {
		position: fixed;
		padding: 35px 25px;
		right: 0;
		top: 0;
		width: calc(100vw - 25px);
		height: 100%;
		box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
		z-index: 99;
		pointer-events: none;
		opacity: 0;
		transform: translate(25px, 0);
		transition: all 0.3s;
	}

	body.mobile-menu-open .header__info {
		pointer-events: auto;
		opacity: 1;
		transform: translate(0, 0);
		    z-index: 99999;
	}

.header__m-inner {
display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -ms-flexbox;  /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */

	display: flex;


	-webkit-justify-content: space-between;
	-webkit-align-items: center;

	justify-content: space-between;
	align-items: center;
	padding: 0px 0;
	height:100px;
}


.header-logo {
	display: block;
	width: 236px;
    }


  @media screen and (min-width: 1000px) {
.header-logo{position: absolute;z-index: 999;top:22px;}
}

@media screen and (max-width: 640px) {
   header{ margin-top: 1em;
    margin-bottom: -1em;
}
.header-logo {width:100px}
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}


.main-menu a {
	color: #00609B;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.8rem;
	text-transform: uppercase;
}


.menu-icon {
	appearance: none;
	border: none;
	padding: 0;
	margin: 0;
	background: none;
}


.menu-icon img {
	display: inline-block;
	width: 52px;
	height: auto;
}

.menu-close {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 26px;
	height: 26px;
	transform: rotate(45deg);
}


.menu-close::before,
.menu-close::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 100%;
	height: 3px;
	border-radius: 1.5px;
	background: #000;
}

.menu-close::after {
	transform: translate(0, -50%) rotate(90deg);
}

.header--minimal .header__info,
.header--minimal .menu-icon {
	display: none !important;
}
