* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-family: 'Arial Rounded MT Bold', 'Varela Round', sans-serif;
	font-size: 16px;
	color: #000;
	background-color: #fff;
}

.header_wrap,
.content_wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.site_header {
	padding: 40px 0;
}

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

.logo_link {
	display: block;
	line-height: 0;
}

.logo_image {
	height: 50px;
	width: auto;
}

.hamburger_button {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.hamburger_line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000;
}

.main_navigation {
}

.navigation_list {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
}

.navigation_link {
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.05em;
}

.navigation_link:hover {
	opacity: 0.6;
}

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

.instagram_icon {
	width: 22px;
	height: 22px;
}

.site_main {
	padding: 60px 0;
}

@media (max-width: 768px) {
	.header_wrap {
		justify-content: center;
		position: relative;
	}

	.hamburger_button {
		display: flex;
		position: absolute;
		left: 40px;
	}

	.logo_link {
		margin: 0 auto;
	}

	.main_navigation {
		display: none;
	}

	.header_wrap,
	.content_wrap {
		padding: 0 20px;
	}

	.hamburger_button {
		left: 20px;
	}

	.site_header {
		padding: 30px 0;
	}
}

