header .wrapper {
	position: relative;
	> .logo {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
}
.logo {
	font-size: 77px;
	line-height: 129%;
	text-align: center;
	opacity: 0.7;
	span {
		display: none;
	}
}
.vertical header .wrapper {
	height: 127px;
	> .logo {
		width: 240px;
		min-height: 127px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		border: 3px solid var(--White);
		font-size: 18px;
		opacity: 1;
		transition: opacity 0.2s linear;
		&::before {
			content: '';
			position: absolute;
			inset: 2px;
			border: 2px solid var(--White);
		}
		span {
			display: inline-block;
			font-family: inherit;
			font-weight: inherit;
			font-size: 10px;
			line-height: 80%;
		}
	}
}
@media screen and (max-width: 1500px) {
	header .logo {
		font-size: 60px;
		line-height: 1;
	}
}
@media screen and (max-width: 1279px) {
	header {
		padding: 20px 30px 0;
		.wrapper {
			height: initial;
		}
		.logo {
			font-size: 35px;
		}
	}
}
@media screen and (max-width: 767px) {
	.vertical header {
		.wrapper {
			height: 59px;
			> .logo {
				width: 112px;
				min-height: 58px;
				font-size: 9px;
				border: none;
				background: url(../images/logo2.svg) 0 0 / 100% 100%;
				&::before {
					display: none;
				}
				span {
					font-size: 5px;
					display: flex;
				}
			}
		}
	}
	header .location {
		text-transform: lowercase;
	}
}