.head-banner {
	display: block;
	width: 100%;
	min-height: 70px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding: 3px 20px;
	z-index: 1001;
}

.head-banner:hover {
	text-decoration: none;
}

.head-banner__name {
	max-width: 560px;
	font-size: 18px;
	color: var(--white);
	line-height: 30px;
	text-transform: uppercase;
}

.head-banner__name span {
	color: #08ebcd;
}

.head-banner__button {
	position: relative;
	top: -3px;
	left: 10px;
	display: inline-flex;
	color: var(--white);
	background: #017566;
	padding: 0 12px;
	height: 25px;
	text-transform: uppercase;
}

.head-banner__button:hover {
	background: #008170;
}

@media (min-width: 576px) {
	.head-banner {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 24px;
		min-height: 90px;
		background-size: cover;
	}

	.head-banner__button {
		top: 0;
		left: 0;
		height: 40px;
		padding: 0 24px;
	}
}

@media (min-width: 768px) {
	.head-banner__name {
		font-size: 32px;
		line-height: 34px;
		text-align: center;
	}
}