header .burger-wrap{
	display: none;
}
header .header_menu .container {
	justify-content : space-between;
}
header .header_right{
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}
header .hide_on_mobile{
	display: flex;
}
header .header_row{
	display: flex;
	align-items: center;
}
header .btn{
	width: 200px;
	height: 50px;
	font-size: 16px;
	margin: 0 0 0 40px;
	line-height: 44px;
	text-transform: uppercase;
	text-align: center;
	align-items: center;
	justify-content: center;
	position: relative;
	top: inherit;
	right: inherit;
	opacity: 1;
	visibility: visible;
	display: block;
	transform: translateX(0);
}
header .address,
header .email,
header .phone{
	display: flex;
	font-size: 20px;
}
header .email .icon,
header .phone .icon,
header .address .icon{
	fill: var(--wp--preset--color--brand-1);
	width: 15px;
	min-width: 15px;
	margin-right: 8px;
	height: 15px;
	margin-left: 30px;
}
header .icon use{
	width : 15px;
	height: auto;
}
.header_links{
	display: flex;
	align-items: center;
}
.header_links a{
	line-height: 20px;
	transition: color .2s linear;
}
.header_links a:hover{
	color: var(--wp--preset--color--brand-1);
}
.header_links a + a{
	margin-left: 16px;
	padding-left: 18px;
	position: relative;
}
.header_links a + a:before{
	content: '';
	width : 2px;
	height: 20px;
	left: 0;
	top: 0;
	background : var(--wp--preset--color--brand-1);
	position: absolute;
}
header .menu_wrap{
	position: relative;
	height: auto;
	background : none;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	overflow-y: visible !important;
	background: transparent !important;
	min-height: 120px;
	display: flex;
	justify-content: center;
	padding: 0;
}
.header_menu.mobile{
	display: none;
}
.header_menu .container > div{
	margin-left: -15px;
	margin-right: -15px;
	width: calc(100% + 30px);
}
.header_menu .menu{
	width : 100%;
}
.header_menu .menu{
	display: flex;
	justify-content: space-between;
}
header .menu_wrap .menu-main-menu-container {
	height: auto;
	margin: 0;
}
header .menu_wrap ul {
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
header .menu_wrap ul li{
	height: 120px;
	display: flex;
	align-items: center;
}
header .menu a {
	color : #ffffff;
}
header .menu_wrap ul li.menu-item-has-children{
	position: relative;
	padding-right: 30px;
}
header .menu_wrap ul li.menu-item-has-children:after{
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	display: block;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	right: 10px;
	transform: rotate(45deg);
	top: 54px;
}
header .menu_wrap .sub-menu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 105px;
	background: #1d1d1d;
	flex-direction: column;
	align-items: flex-start;
	height: auto;
	min-width: 180px;
	transition: all .2s ease;
	transition-delay: .2s;
	transform: translateY(20px);
	border-top: 1px solid #fff;
	padding: 10px 20px;
	display: block;
}
header .menu_wrap ul li.menu-item-has-children:hover .sub-menu{
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}
header .menu_wrap .menu-main-menu-container:after{
	display: none;
}
header .menu_wrap ul li {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	border: none !important;
	width: auto;
}
header .menu :is(a, span){
	color: #fff;
	font-size: 18px;
	white-space: nowrap;
}
header .menu a:hover,
header .menu .current-menu-item span {
	color: var(--wp--preset--color--brand-1);
}
header .menu_wrap .sub-menu li{
	padding: 0;
	height: auto;
	justify-content: flex-start;
}
header .menu_wrap .sub-menu :is(a, span){
	padding: 8px 0;
	display: block;
	text-align: left;
}
.header_menu .container > div.cities-menu-container{
	margin: 0;
}
header .menu_wrap .container{
	flex-direction: row;
}