/* desktop */
@media only screen and (min-width: 481px) {
	.logoContactInfoContainer {
		color: #777777;
		display: flex;
		width: 100%;
		justify-content: space-between;
		padding: 20px 0;
		flex-direction: row;
	}
	.headerLogo {
		width: 255px;
		height: 78px;
	}
	.headerBurgerMenuBtn {
		display: none;
	}
	.headerContactsWrapper {
		flex-direction: column;
		justify-content: flex-start;
	}
	.headerContactInfo {
		padding-top: 8px;
	}
	.headerContactInfo a {
		color: #212332;
	}
	.mobile {
		display: none;
	}
	.desktop {
		display: block;
	}
	.globalContainerMobile {
		display: none;
	}
}

/* mobile */
@media only screen and (max-width: 480px) {
	.logoContactInfoContainer {
		color: #777777;
		display: flex;
		width: 100%;
		justify-content: space-between;
		padding: 10px 0;
		flex-direction: column;
	}
	.headerLogo {
		width: 153px;
		height: 47px;
	}
	.headerBurgerMenuBtn {
		display: inline-block;
	}
	.headerContactsWrapper {
		flex-direction: row;
		justify-content: space-between;
		background-color: #212332;
		color: white;
		padding-left: 10px;
		padding-right: 10px;
		flex-wrap: wrap;
	}
	.headerContactInfo {
		padding-top: 0px;
	}
	.headerContactInfo a {
		color: white;
	}
	.headerTel, .headerEmail {
		flex-wrap: wrap;
	}

	.desktop {
		display: none !important;
	}
	.globalContainerMobile {
		display: block;
	}
}

.headerLogoBurgerWrapper {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}

.topLogoBurgerWrapper a {
	text-decoration: none;
}

.headerBurgerMenuBtn {
	border-style: none;
}

.headerContactsWrapper {
	display: flex;
}

.headerContactInfo {
	padding: 11px 0px;
}

.headerContactInfo img {
	vertical-align: bottom;
}

.headerContactInfo a {
	text-decoration: none;
	font-family: 'Raleway', sans-serif;
	font-size: 15;
}

.globalContainerMobile {
	padding-left: 0px;
	padding-right: 0px;
	background-color: #212332;
}