.header-main .inside {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 6% 0 14%;
}

.header-main .logo {
	display: block;
	width: 27.7rem;
	height: 9rem;
	text-indent: -999rem;
	background: url("../../img/logo.svg") no-repeat;
}

.header-main .header-right {
	display: flex;
	align-items: center;
}

.nav-main li {
	float: left;
}

.nav-main li a,
.nav-main li strong {
	display: block;
	padding: 0 2rem;
	height: 13rem;
	line-height: 13rem;
	font-size: 1.2vw;
	font-weight: 400;
	color: inherit;
}

.nav-main li a:hover,
.nav-main li strong {
	color: #fff;
	background: var(--color-primary);
}

.header-main .contact {
	display: flex;
	align-items: center;
	margin: 0 0 0 2vw;
}

.header-main .contact li {
	float: left;
	margin: 0 0 0 2rem;
	list-style: none;
}

.header-main .contact li a {
	display: block;
	background: url("../../img/icons-sprite.svg");
	background-size: 30rem 30rem;
}

.header-main .contact li a.phone {
	width: 2.5rem;
	height: 2.5rem;
	background-position: 0 -3rem;
}
.header-main .contact li a.mail {
	width: 3rem;
	height: 2.2rem;
	background-position: -4rem -3rem;
}
.header-main .contact li a.facebook {
	width: 2.8rem;
	height: 2.8rem;
	background-position: -9rem -3rem;
	text-indent: -999rem;
}

@media only screen and (max-width: 95em) {
	
	.header-main .inside {
		padding: 0 2rem;
	}
	
	.header-main .logo {
		display: block;
		width: 18rem;
		height: 6rem;
		background-size: contain;
	}
	
	.nav-main li a,
	.nav-main li strong {
		height: 10rem;
		line-height: 10rem;
		font-size: 1.7rem;
	}
	
	.header-main .contact {
		margin: 0;
		transform: scale(0.8);
	}
}

@media only screen and (max-width: 71em) {

	.header-main .inside {
		padding: 1.5rem 3rem;
	}

	.header-main .contact {
		margin: 0 2rem 0 0;
	}
	
	.nav-main {
		display: none;
	}
}

@media only screen and (max-width: 64em) {

	.header-main .inside {
		padding: 1.5rem 2rem;
	}
}

@media only screen and (max-width: 32em) {
	
	.header-main .logo {
		display: block;
		width: 16rem;
		height: 5rem;
		background-size: contain;
	}

	.header-main .contact {
		margin: 0 1rem 0 0;
	}
	
	.header-main .contact li {
		margin: 0 0 0 1.2rem;
	}
	
	.header-main .contact li a {
		transform: scale(0.8);
	}
}

/* ************************************************ 
************  pushy (mobile navigation)  **********
***********************************************  */

.menu-burger {
	display: none;
	float: right;
	margin: 0;
	width: 30px;
	height: 18px;
	position: relative;
	vertical-align: 3px;	
	cursor: pointer;
}

.menu-burger::after, .menu-burger::before {
    display: inline-block;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #333;
    content: '';
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.menu-burger::before {
    top: 50%;
}

.menu-burger::after {
    bottom: -2px;
    width: 60%;
}

.menu-burger:hover::after {
    bottom: -2px;
	width: 100%;
}

.menu-burger-line {
    display: inline-block;
    position: absolute;
    left: 0px;
    right: 0px;
    height: 2px;
    background: #333;
    top: 0px;
    vertical-align: top;
}

.pushy {
	overflow-x: hidden;
	background: var(--color-primary) !important;
}

.pushy > ul::before {
	content: "Menü";
	display: block;
	padding: 2rem;
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	background: var(--color-page-bg);
}

.pushy li {
	position: relative;
	border-bottom: 1px solid var(--color-primary-lighter);
}

.pushy li a,
.pushy li span {
	display: block !important;
	padding: 1.7rem 2rem 1.7rem 5.2rem !important;
	font-size: 1.6rem !important;
}

.pushy span {
	cursor: pointer;
}

.pushy li a,
.pushy li span.active,
.pushy li span.forward,
.pushy li span.trail {
	position: relative;
	display: inline;
	padding: 0;
	color: #fff;
	font-size: 1.4rem;
}

.pushy li::before{
	content: "";
	display: block;
	position: absolute;
	z-index: 100;
	left: 2rem;
	top: 50%;
	transform: translateY(-50%) scale(0.9);
	height: 16px;
	background: url("../../img/icons-sprite.svg");
	background-size: 30rem 30rem;
}
.pushy li:nth-of-type(1)::before {
	width: 1.8rem;
	background-position: 0 0;
}
.pushy li:nth-of-type(2)::before {
	width: 1.7rem;
	height: 1.7rem;
	background-position: -3rem 0;
}
.pushy li:nth-of-type(3)::before {
	width: 2.2rem;
	background-position: -6rem 0;
}
.pushy li:nth-of-type(4)::before {
	width: 1.9rem;
	background-position: -9rem 0;
}
.pushy li:nth-of-type(5)::before {
	width: 2.2rem;
	background-position: -12rem 0;
}
.pushy li:nth-of-type(6)::before {
	width: 1.7rem;
	height: 1.7rem;
	background-position: -15rem 0;
}

.pushy li a:hover,
.pushy li span.active, 
.pushy li span.forward, 
.pushy li span.trail, 
.pushy li a.trail {
	background: var(--color-primary-lighter);
}

.pushy-close {
	position: absolute;
	z-index: 10;
	top: 2.2rem;
	right: 2rem;
	display: block;
	padding: 0 !important;
	width: 1.8rem;
	height: 1.8rem;
	cursor: pointer;
	background: url("../../img/sprite.png") -6rem -12rem;
}

@media only screen and (max-width: 71em) {

	.header-main .menu-burger {
		display: block;
	}
}
