header {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
.logo-site img {
	display: block;
    width: 260px;
    height: 70px;
    margin: 0px;
    transition: all 0.3s ease;
}
.contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.phone-number-header {
	color: rgb(250, 0, 0);
	font-family: 'RobotoCondensedBold', sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	transition: color 0.2s;
}
.phone-number-header:hover,
.phone-number-header:focus {
	color: #2d325a;
}
.phone-icon-header {
	width: 30px;
	height: 30px;
}
.request-btn {
	background: #e21312;
	color: #fff;
	font-family: 'RobotoCondensedBold', sans-serif;
	font-weight: bold;
	font-size: 14px;
	border: none;
	border-radius: 40px;
	padding: 10px 20px;
	cursor: pointer;
	transition: background 0.2s;
	letter-spacing: 1px;
}
.request-btn:hover,
.request-btn:focus {
	background: #2d325a;
}

@media (max-width: 1330px) {
    .site-header {
        margin-bottom: 20px;
    }
}
@media (max-width: 426px) {
	.site-header {
		padding: 70px 15px 20px 15px;
		margin-bottom: 0;
	}
	.logo-site {
		margin: 0;
	}
}