header{
	position: fixed;
	width: 100%;
	/* background: #fff; */
	/* padding: 27px 0; */
	z-index: 999;
	top: 24px;
	left: 0;
	
	transition: top .4s;
}

header * {
	font-weight: 300;
}

header.scrolled {
	top: 0;
}

.header_main_wrapper {
	position: relative;
	z-index: 1;
}

.header_main_wrapper_container {
	background-color: var(--dark_grey);
	position: relative;
	border: 1px solid #465f64;
	border-radius: 8px;
	/* overflow: hidden; */
	transition: border-radius .4s, border .4s;
}

header.scrolled .header_main_wrapper_container {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top-color: var(--dark_grey);
}

.header_main_desktop .header_container_menu ul.menu {
	display:flex;
	gap: 0 60px;
}

.header_main_mobile .header_container_menu ul.menu li:not(:last-child) {
	margin-bottom: 10px
}

.header_main_mobile .header_legal_menu ul.menu {
	display:flex;
	gap: 0 32px;
	font-size: 0.90625rem;
}

.header_container_menu ul li a {
	color: var(--white);
	transition: color .4s;
}

.header_container_menu ul.menu > li > a {
	
}

.header_container_menu ul.menu > li > a:hover,
.header_container_menu ul.menu > li.hash_scrolled > a {
	color: var(--lime_green);
}

.header_legal_menu ul.menu > li > a {
	transition: opacity .4s;
}

.header_legal_menu ul.menu > li > a:hover,
.header_legal_menu ul.menu > li.current_page_item > a{
	opacity: .5;
}

.header_inner{
	display:flex;
	justify-content: space-between;
	align-items: center;
}

/* .header_inner>div{
	width: 100%;
} */

.header_main_mobile_content{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: calc(100% + 2px);
	right: -1px;
	top: 0;
	background: rgba(27, 36, 38, 0.85);
	border: 1px solid #34464a;
	border-top: 1px solid rgba(27, 36, 38, 0.85);
	box-shadow: 0 0 106px 15px rgba(0, 0, 0, 0.25);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	/* box-shadow: inset 0 1em 1em -1em #092939; */
	/* -webkit-transition: -webkit-transform .4s, top .4s;
	-moz-transition: -moz-transform .4s, top .4s;
	-ms-transition: -ms-transform .4s, top .4s;
	-o-transition: -o-transform .4s, top .4s; */
	transition: transform .4s, top .4s, opacity .4s, background .4s;
	/* -webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%); */
	transform: translateY(-100%);
	/* height: 100dvh; */
	position: absolute;
	z-index: 2;
	overflow-y: scroll;
	opacity: 0;
	padding: 34px 20px 40px;
}

.header_main_mobile_content:after{
	height: 100%;
	width: 100%;
	content: '';
	position: absolute;
	top: 0; left: 0;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.header_main_mobile_content.open{
	-webkit-transform: translateY(0) !important;
	-moz-transform: translateY(0) !important;
	-ms-transform: translateY(0) !important;
	-o-transform: translateY(0) !important;
	transform: translateY(0) !important;
	opacity: 1;
}

.header_main_mobile_content>div {
	position: relative;
	z-index: 1;
}


.header_main{
}

.header_main{
	padding: 17px 17px 18px 50px;
	border-bottom: 5px solid var(--lime_green);
	border-radius: 8px;
	display:block;
}

.header_main_mobile{
	display:none;
}

.header_container_mobil_menu ul{
	list-style:none;
	margin:0;
	padding:0;
}

.header_main_mobile_overlay{
	/* background-color:rgba(0, 0, 0, 0.6); */
	/* position: absolute;
	width: 100vw;
	height: 100vh;
	top: -27px;
	left: 0;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-transition: visibility 0s linear 300ms, opacity .4s, top .4s;
	-moz-transition: visibility 0s linear 300ms, opacity .4s, top .4s;
	-ms-transition: visibility 0s linear 300ms, opacity .4s, top .4s;
	-o-transition: visibility 0s linear 300ms, opacity .4s, top .4s;
	transition: visibility 0s linear 300ms, opacity .4s, top .4s; */
}

.header_main_mobile_overlay.show{
	/* visibility: visible;
	opacity: 1;
	-webkit-transition: visibility 0s linear 0s, opacity .4s;
	-moz-transition: visibility 0s linear 0s, opacity .4s;
	  -ms-transition: visibility 0s linear 0s, opacity .4s;
	  -o-transition: visibility 0s linear 0s, opacity .4s;
	  transition: visibility 0s linear 0s, opacity .4s; */
}

.header_main_mobile_background_img {
	position: absolute;
	top: -27px;
	right: 0;
	width: 375px;
	height: 100vh;
	-webkit-transition: -webkit-transform .4s, top .4s;
	-moz-transition: -moz-transform .4s, top .4s;
	-ms-transition: -ms-transform .4s, top .4s;
	-o-transition: -o-transform .4s, top .4s;
	transition: transform .4s, top .4s;
	-webkit-transform: translateX(375px);
	-moz-transform: translateX(375px);
	-ms-transform: translateX(375px);
	-o-transform: translateX(375px);
	transform: translateX(375px);
}

.header_main_mobile_overlay.show ~ .header_main_mobile_background_img {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.header_main_mobile_background_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header_burger_menu_icon,
.header_container_close_button{
	cursor:pointer;
}

.header_container_mobil_menu li.menu-item-has-children{
	overflow:hidden;
}

.header_container_mobil_menu li.menu-item-has-children>a:after{
	content:">";
	display: inline-block;
	
	-webkit-transition: -webkit-transform .3s ease-in-out;
	-moz-transition: -moz-transform .3s ease-in-out;
	-ms-transition: -ms-transform .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
}

.header_container_mobil_menu li.menu-item-has-children>a.open:after{
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.menu_item_img{
	width: 100px;
	height: auto;
}

.logo_container {
	height: 42px;
}

.logo_container a,
.logo_container svg,
.logo_container img {
	height: 100%;
}

.logo_container svg,
.logo_container img {
	width: auto;
}

.logo_container svg {
	fill: #092939;
}

.header_inner_right_btn_container .button svg {
	width: 18px;
	min-width: 18px;
	height: 21px;
	min-height: 21px;
	margin-right: 5px;
	margin-bottom: 3px;
}

.header_burger_menu_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	/* background-color: var(--lime_green); */
	width: 50px;
	height: 50px;
	border-radius: 5px;
	position: relative;
	padding: 0;
}

.header_burger_menu_btn svg {
	/* display: none; */
	width: 19px;
	min-width: 19px;
	height: 19px;
	min-height: 19px;
	opacity: 0;
	transition: opacity .4s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header_burger_menu_icon .header_burger_icon {
	/* display: block; */
	opacity: 1;
}

.header_container_close_button .header_close_icon {
	/* display: block; */
	opacity: 1;
}

.header_burger_bar {
	display: block;
	height: 3px;
	background-color: var(--white);
	border-radius: 50px;
	-webkit-transform-origin: 26px;
	-moz-transform-origin: 26px;
	-o-transform-origin: 26px;
	transform-origin: 26px;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

.header_burger_bar:not(:last-child) {
	margin-bottom: 7px;
}

.header_burger_bar_1 {
	width: 13px;
}

.header_burger_bar_2 {
	width: 26px;
}

.header_burger_bar_3{
	width: 21px;
}

.header_burger_menu_mobile:hover .header_burger_bar {
	width: 25px;
}

.header_inner.open .header_burger_bar_1 {
	width: 30px;
	height: 3px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header_inner.open .header_burger_bar_2 {
	width: 0;
}

.header_inner.open .header_burger_bar_3 {
	width: 30px;
	height: 3px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

header #menu-header-navigation .menu-item a {
	
}

header #menu-header-navigation .menu-item a:hover,
header #menu-header-navigation .current-menu-item a {
	
}

header #menu-header-navigation .menu-item a:after {
	
}

header #menu-header-navigation .menu-item a:hover:after,
header #menu-header-navigation .current-menu-item a:after {
	
}

.header_main_mobile_content .footer_main_middle_item_social_container {
	display: block;
}

.header_main_mobile_content .footer_main_middle_item_social_links_item svg {
	fill: #fff;
}

.header_main_mobile_content .footer_main_middle_item_social_links_item svg:hover {
	fill: #092939;
}

.header_main_mobile_content_bottom_1 {
	margin-bottom: 17px;
}

.header_main_mobile_content_bottom_2_left,
.header_main_mobile_content_bottom_2_right_email_phone_fax_container {
	display: flex;
	flex-direction: column;
}

.header_main_mobile_content_bottom_2_right_email_phone_fax_container {
	align-items: end;
}

.header_main_mobile_content_bottom_2_left a:not(:last-child),
.header_main_mobile_content_bottom_2_right_phone_container {
	margin-bottom: 10px;
}

.header_main_mobile_content_bottom_2_right_item a {
	position: relative;
	font-weight: 200;
}

.header_main_mobile_content_bottom_2_right_item a span {
	font-weight: 500;
}

.header_main_mobile_content_bottom_2_right_item a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, .5);
	transition: background .4s;
}

.header_main_mobile_content_middle {
	
}

.header_main_mobile_content_middle_background_logo_container {
	position: absolute;
	top: 50%;
	left: 7px;
	width: calc(100% + 7px);
	height: auto;
	z-index: -1;
	transform: translateY(-50%);
}

.header_main_mobile_content_middle_background_logo_container svg {
	fill: rgba(255, 255, 255, .1);
	width: 100%;
	height: auto;
}

.header_container_menu .menu-item-has-children {
	position: relative;
}

.header_container_menu .menu-item-has-children a {
	display: flex;
}

.menu-item-has-children svg {
	fill: #466c6c;
	width: 10px;
	min-width: 10px;
	height: 6px;
	min-height: 6px;
	transition: transform .2s, fill .4s;
}

#menu-header-nav .menu-item-has-children:hover svg,
#menu-mobile-nav .menu-item-has-children.active svg {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.header_container_menu .menu-item-has-children svg {
	margin-left: 9px;
	margin-bottom: 3px;
}

.header_container_menu .menu-item-has-children > ul.sub-menu {
	position: absolute;
	top: 119%;
	left: 0;
	padding: 35px 25px;
	background: #fff;
	border-radius: 5px;
	border-top: 6px solid #4ed7cc;
	z-index: 5;
	opacity: 0;
	-webkit-transform: scaleY(0);
	-webkit-transform-origin: top center;
	-moz-transform: scaleY(0);
	-moz-transform-origin: top center;
	-ms-transform: scaleY(0);
	-ms-transform-origin: top center;
	-o-transform: scaleY(0);
	-o-transform-origin: top center;
	transform: scaleY(0);
	transform-origin: top center;
	-webkit-transition: -webkit-transform .2s, opacity .2s;
	-moz-transition: -moz-transform .2s, opacity .2s;
	-ms-transition: -ms-transform .2s, opacity .2s;
	-o-transition: -o-transform .2s, opacity .2s;
	transition: transform .2s, opacity .2s;
}

.header_container_menu .menu-item-has-children:hover > ul.sub-menu {
	opacity: 1;
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}

.header_container_menu .menu-item-has-children > ul.sub-menu:before {
	content: '';
	position: absolute;
	top: -13px;
	left: 30px;
	width: 22px;
	height: 7px;
	background: url('../../../../img/dreieck.png') no-repeat;
	background-size: 100% 100%;
}

.menu-item-has-children > ul.sub-menu > li:not(:last-child) {
	margin-bottom: 15px;
}

.menu-item-has-children > ul.sub-menu a {
	position: relative;
	white-space: nowrap;
	padding-left: 25px;
	transition: color .4s;
}

.menu-item-has-children > ul.sub-menu a:before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	width: 12px;
	height: 12px;
	background: #368787;
	transition: background .4s;
}

.menu-item-has-children > ul.sub-menu a:hover,
.menu-item-has-children > ul.sub-menu li.current-menu-item a {
	color: #8fa6a6;
}

.menu-item-has-children > ul.sub-menu a:hover:before,
.menu-item-has-children > ul.sub-menu li.current-menu-item a:before {
	background: #8fa6a6;
}

.header_container_logo {
	position: relative;
}

.header_inner_left {
	align-items: center;
	justify-content: space-between;
}

.header_inner_right_button_container {
	justify-content: end;
	gap: 0 9px;
}

.header_inner_right_button_container .button.secondary {
	/* background-color: #f7fbf9;
	color: #1f4d4d;
	border: none; */
}

.header_inner_right_button_container .button.secondary:hover {
	/* background-color: var(--sekundarbutton_hover_background_color);
	color: var(--sekundarbutton_hover_font_color); */
}

.header_inner_right_button_container .button {
	/* font-weight: 600; */
	/* padding: 39px 90px 34px; */
	/* text-transform: uppercase; */
}

.header_inner_right_ext_link_container .button {
	display: flex;
	align-items: center;
	white-space: nowrap
}

.header_inner_right_ext_link_container svg {
	fill: #fff;
	width: 22px;
	min-width: 22px;
	height: 22px;
	min-height: 22px;
	margin-top: -5px;
	margin-right: 13px;
	transition: fill .4s;
}

.header_main_mobile_content_top,
.header_main_mobile_content_bottom {
	/* display: flex; */
}

.header_main_mobile_content_top {
	/* align-items: center; */
	
	/* height: 55%;
	min-height: 365px; */
	/* background: #f7fbf9; */
	/* padding: 53px 18px; */
}

.header_main_mobile_content_top * {
	color: var(--white);
}

.header_main_mobile_content_top_1 {
	width: 100%;
}

.header_main_mobile_content_top_2 {
	margin-top: 13px;
}

.header_main_mobile_content_top_3 {
	margin-top: 48px;
}

.header_main_mobile_ext_link {
	margin-top: 53px;
}

#menu-mobile-nav > li {
	position: relative;
	border-top: 1px solid #ccd8d7;
}

#menu-mobile-nav > li:last-child {
	border-bottom: 1px solid #ccd8d7;
}

#menu-mobile-nav a {
	font-weight: 600;
	text-transform: uppercase;
}

#menu-mobile-nav > li {
	padding: 15px 0 11px;
}

#menu-mobile-nav > li .sub-menu {
	height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 0 0 15px;
}

#menu-mobile-nav .menu-item-has-children > ul.sub-menu > li:first-child {
	margin-top: 10px;
}

#menu-mobile-nav .menu-item-has-children > ul.sub-menu > li:not(:last-child) {
	margin-bottom: 10px;
}

#menu-mobile-nav .menu-item-has-children .svg_wrapper {
	position: absolute;
	top: 13px;
	right: 0;
}

.header_main_mobile_content_bottom {
	flex-direction: column;
	justify-content: center;
	/* height: 45%;
	min-height: 347px; */
	/* background: #f0f5f2; */
	padding: 50px 18px 48px;
}

.header_main_mobile_content_bottom_3_item_social_links_item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border: 1px solid rgba(7, 87, 103, .3);
	border-radius: 5px;
	transition: border-color .4s;
}

.header_main_mobile_content_bottom_3_item_social_links_item svg {
	fill: #075767;
	width: 23px;
	min-width: 23px;
	height: 23px;
	min-height: 23px;
	transition: opacity .4s;
}

.header_main_mobile_content_bottom_3_item_social_links_item:hover {
	border: 1px solid rgba(7, 87, 103, 1);
}

.header_main_mobile_content_bottom_3_item_social_links_item:hover svg {
	opacity: .5;
}

.header_desktop_burger_menu_firmierung_container p {
	font-weight: 600;
}

.header_desktop_burger_menu_adresse_container {
	display: flex;
}

.header_desktop_burger_menu_adresse_strasse_plz_ort_separator {
	margin: 0 5px;
}

.header_main_mobile_content_bottom_2_item a .header_main_mobile_content_bottom_2_item_content {
	transition: color .4s;
}

.header_main_mobile_content_bottom_2_item a:hover .header_main_mobile_content_bottom_2_item_content {
	color: var(--lime_green);
} 

.header_main_mobile_content_bottom_2_phone svg {
	width: 12px;
	min-width: 12px;
	height: 19px;
	min-height: 19px;
	margin-top: 2px;
}

.header_main_mobile_content_bottom_2_email svg {
	width: 19px;
	min-width: 19px;
	height: 20px;
	min-height: 20px;
}

.header_main_mobile_content_bottom_2_item_content {
	display: flex;
	align-items: center;
}

.header_main_mobile_content_bottom_2_item_content_svg_wrapper {
	width: 30px;
	display: flex;
	align-items: center;
}

.header_main_mobile_content_bottom_3_social_container {
	display: flex;
	gap: 15px;
	margin-bottom: 34px;
}

.header_main_mobile_content_bottom_2 {
	margin-bottom: 31px;
}

#menu-legal-nav {
	display: flex;
}

#menu-legal-nav li:not(:first-child) {
	margin-left: 25px;
}

li.portal > a svg {
	fill: #1f4d4d;
	width: 18px;
	min-width: 18px;
	height: 18px;
	min-height: 18px;
	margin-top: 1px;
	margin-right: 10px;
}

.menu-item-content-wrapper {
	display: flex;
}





/* FOOTER START
 *
 *
 */
 
.mM_footer {
	font-weight: 300;
	position: relative;
}

.mM_footer_main {
	background-color: var(--white);
	/* position: relative; */
	border-radius: 8px;
	/* overflow: hidden; */
}

.mM_footer_bottom {
	justify-content: space-between;
	align-items: center;
	padding: 31px 70px 26px;
	border-bottom: 5px solid var(--lime_green);
	border-radius: 8px;
}

.mM_footer_bottom>div {
	width: 250px;
}

.mM_footer_bottom .mobile {
	display: none;
}

.mM_footer_bottom_center ul.menu {
	display:flex;
	justify-content: space-between;
	gap: 0 60px;
}

.mM_footer_bottom_right {
	text-align: right;
}

.mM_footer_bottom_right a,
.mM_footer_bottom_left a {
	font-weight: 500;
	transition: opacity .4s;
}

.mM_footer_bottom_left a:hover,
.mM_footer_bottom_right a:hover {
	opacity: 1;
}

.mM_footer_bottom .menu-item a {
	transition: opacity .4s;
}

.mM_footer_bottom .menu-item.current_page_item a,
.mM_footer_bottom .menu-item a:hover {
	opacity: .5;
}

.mM_footer_scroll_top_container {
	position: absolute;
	right: 23px; top: 50%;
	transform: translateY(-50%);
	width: auto !important;
	display: flex;
	justify-content: end;
}

.mM_footer_scroll_top_btn {
	width: 47px;
	height: 47px;
	padding: 0;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.mM_footer_scroll_top_btn_icon {
	width: 11px;
	rotate: -180deg;
}

/*
 *
 FOOTER END * */

@media screen and (max-width: 1799px) {
	
}

@media screen and (max-width: 1599px) {
	
}

@media screen and (max-width: 1399px) {
	
}

@media screen and (max-width: 1199px) {
	.header_main_desktop{
		display:none;
	}
	
	.header_main_mobile{
		display:block;
		padding: 0;
		border: none;
	}
	
	.header_main_wrapper_container:has(.open) {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-bottom-color: transparent;
	}
	
	.header_main_mobile .header_inner_right {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: end;
		z-index: 2;
	}
	
	.header_main_wrapper > .container {
		max-width: 100% !important;
		padding: 0 22px;
	}
	
	.header_burger_menu_mobile {
		display: flex;
		flex-direction: column;
		align-items: end;
	}
	
	.logo_container {
		height: 33px;
	}
	
	.header_main_wrapper .mM_align {
		margin-right: 0 !important;
		width: 100% !important;
	}
	
	.header_inner {
		/* height: 75px; */
		padding: 18px 40px 12px;
		position: relative;
		z-index: 3;
		background-color: var(--dark_grey);
		/* border: 1px solid #465f64; */
		border-bottom: 4px solid var(--lime_green);
		border-radius: 8px;
	}
	
	.header_inner_right_ext_link_container svg {
		fill: #3b8a8a;
		width: 26px;
		min-width: 26px;
		height: 26px;
		min-height: 26px;
		margin-top: 7px;
		margin-right: 22px;
	}
	
	
	
	.mM_footer_bottom {
		flex-direction: column-reverse;
		align-items: start;
		padding: 21px 40px 16px;
	}
	
	.mM_footer_bottom>div {
		width: auto;
	}
	
	.mM_footer_bottom_center {
	}
	
	.mM_footer_bottom_center ul.menu {
		gap: 0 10px;
		flex-wrap: wrap;
	}
	
	.mM_footer_bottom_right {
		margin-top: 10px;
	}
	
	.mM_footer_bottom .mobile {
		display: block;
		opacity: 1;
	}
	
	.mM_footer_bottom_right {
		display: none;
	}
	
	.mM_footer_bottom .mM_footer_bottom_left {
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin-top: 20px;
		opacity: 1;
		gap: 5px 10px;
		flex-wrap: wrap;
	}
	
	.mM_footer_bottom .footer_copyright_text {
		opacity: .5;
	}
	
	.mM_footer_main {
		position: relative;
	}
	
	.mM_footer_scroll_top_container {
		top: 0;
	}
}

@media screen and (max-width: 991px) {
	
}

@media screen and (max-width: 767px) {
	
}

@media screen and (max-width: 575px) {
	.header_main_mobile_ext_link {
		text-align: center;
	}
	
	.header_main_mobile_ext_link .button {
		display: block;
	}
	
	.header_burger_menu_btn {
		width: 37px;
		height: 37px;
	}
	
	.header_burger_menu_btn svg {
		width: 14px;
		min-width: 14px;
		height: 14px;
		min-height: 14px;
	}
	
	.mM_footer_bottom {
		padding: 15px 20px 11px;
	}
	
	.mM_footer_scroll_top_btn {
		width: 35px;
		height: 35px;
	}
	
	.mM_footer_scroll_top_btn_icon {
		width: 9px;
	}
}

@media screen and (max-width: 499px) {
	
}

@media screen and (max-width: 475px) {
	
}

@media screen and (max-width: 450px) {
	
}

@media screen and (max-width: 430px) {
	
}

@media screen and (max-width: 379px) {
	.header_main_wrapper > .mM_container {
		padding: 0 10px;
	}
}

@media screen and (max-width: 374px) {
	.header_main_mobile_content{
		width: 100%;
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@media screen and (max-width: 350px) {
	
}

@media screen and (max-width: 300px) {
	.logo_container {
		height: 25px;
	}
}
