.header-first-line {
    display: flex;
    justify-content: space-between;
    padding: 5px 50px;
    align-items: center;
    flex-wrap: wrap;
}

.phone-container a {
    font-weight: bold;
    font-size: 16px;
}

.socials-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}
.socials-container a {
	display: flex;
	align-items: center;
	margin: 0 2px;
}

.header-second-line {
	border-top: 1px solid gray;
	position: relative;
}
/* menu toggler */
.menu-toggler-container {
	text-align: right;
}
.menu-toggler {
	display: none;
	padding: 9px 10px;
	background-color: transparent;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	justify-content: space-around;
	flex-direction: column;
	/*position: absolute;*/
	margin-right: 15px;
	width: 45px;
	height: 40px;
	outline: none;
}
.menu-toggler .icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 1px;
	background: #ffffff;
	position: absolute;
	transition: all 0.5s;
}
.menu-toggler .icon-bar.icon-bar-1 {
    transform: translate( 0, -7px );
}
.menu-toggler .icon-bar.icon-bar-3 {
    transform: translate( 0, 7px );
}

.menu-toggler.active .icon-bar-1 {
    transform: rotate( 45deg );
}
.menu-toggler.active .icon-bar-2 {
    display: none;
}
.menu-toggler.active .icon-bar-3 {
    transform: rotate(-45deg);
}
/* end menu toggler */

.header-menus-container {
    display: flex;
    justify-content: space-around;
    flex-direction: row-reverse;
    transition: all 0.5s;
}
.front-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.front-nav a {
    padding: 10px 15px;
    font-weight: bold;
    display: block;
    text-align: right;
}
.menu-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	padding-left: 0;
	margin: 0;
}
.menu-header li {
	list-style-type: none;
}
.menu-header a {
	padding: 10px 15px;
	font-weight: bold;
	display: block;
	text-align: left;
	color: white;
}
.menu-header a:hover {
	color: #cccccc;
}


@media only screen and (max-width: 767px) {
	.header-first-line {
	    justify-content: space-around;
	    padding: 5px 0;
	}
	.menu-toggler {
		display: inline-flex;
	}
	.header-menus-container {
		height: 0;
	    background: #222222;
	    overflow: auto;
	    justify-content: space-between;
	    padding: 0 15px;	
	}
	.header-menus-container.active {
		height: 240px;
	}
	.front-nav {
		display: block;
		min-width: 51%;
	}
	.header-menu {
	    min-width: 50%;
	}
	.menu-header li {
	    display: block;
	    text-align: left;
	    width: 100%;
	}
	
}
@media only screen and (max-width: 575px) {
	.front-page-main {
		padding-top: 85px;
	}
}
@media only screen and (max-width: 375px) {
	.header-menus-container {	    
	    justify-content: flex-start;
	    flex-wrap: wrap;
	}
	.menu-header li {
	    text-align: right;
	}
	.menu-header a {
		text-align: right;
	}
}
