.header-site {
	padding:30px 0 60px 0;
}

.logo-head img {
	display:block;
	width:140px;
	height:74px;
}

.head-menu {
	list-style:none;
	padding:0;
	margin:0;
	display:flex;
	align-items:center;
	gap:17px;
}

.header-site-wrap {
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.head-menu a {
	text-decoration:none;
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 25px;
	line-height: 153%;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.head-menu li {
	display:flex;
	justify-content:center;
	align-items:center;
}

.head-menu-first {
	border-radius: 19px;
	background: #ff0019;
	width: 223px;
	height: 63px;
}

.head-menu-first a {
	color: var(--white);
}

.head-menu-second {
	border-radius: 19px;
	width: 174px;
	height: 63px;
	background: var(--white);
	box-shadow: 0px 0px 50px 0px rgba(34, 60, 80, 0.3);
}

.head-menu-second a {
	color: var(--black);
}

@media (max-width: 768px) {
	.header-site-wrap {
		flex-direction:column;
	}
	
	.head-menu {
		padding:15px 0 0 0;
	}
}