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;
	}
}
.promo {
	nav {
		position: absolute;
		top: 50%;
		left: 0;
		z-index: 1;
		padding-left: calc((100% - 816px) / 2);
		> div {
			display: flex;
			flex-direction: column;
			> .item > a,
			p {
				font-family: Lato;
				font-size: 50px;
				font-weight: 300;
				line-height: 100%;
				text-transform: lowercase;
			}
		}
	}
	.child-1 {
		display: none;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		a {
			text-align: center;
			font-family: Lato;
			font-size: 20px;
			line-height: 100%;
			text-transform: lowercase;
		}
	}
	.buttons {
		display: none;
		position: absolute;
		left: 50%;
		bottom: 57px;
		transform: translateX(-50%);
		gap: 22px;
		> * {
			width: 24px;
			height: 24px;
			&::before {
				font-size: 24px;
			}
		}
	}
}
@media screen and (max-width: 1279px) {
	.vertical header {
		padding: 80px 30px 0;
	}
	.promo {
		nav {
			top: initial;
			bottom: 15dvh;
			left: 50%;
			padding-left: 0;
			transform: translateX(-50%);
			.ws-menu {
				display: flex;
				flex-direction: row;
				gap: 34px;
			}
			> div > .item {
				width: 100%;
				display: flex;
				flex-direction: column;
				align-items: center;
				> a,
				p {
					font-size: 44px;
					margin: 0 auto;
				}
			}
		}
		.child-1 {
			display: flex;
			margin-top: 30px;
			a {
				text-align: center;
				font-family: Lato;
				font-size: 20px;
				white-space: nowrap;
				text-transform: lowercase;
			}
		}
		.buttons {
			display: flex;
			align-items: center;
			bottom: 4dvh;
			a {
				display: flex;
				align-items: center;
				justify-content: center;
				width: 24px;
				height: 24px;
				svg {
					width: 100%;
					height: 100%;
				}
			}
		}
	}
}
@media screen and (max-width: 767px) {
	.vertical header {
		padding: 54px 10px 0;
	}
	.promo {
		nav {
			bottom: 150px;
			width: 100%;
			padding: 0 10px;
			.ws-menu {
				justify-content: start;
				gap: 0px;
				padding-right: 15px;
				& > .item {
					width: 110px;
					&:nth-child(1) {
						margin-left: auto;
						a {
							margin-right: auto;
						}
					}
					&:nth-child(2) {
						margin: 0 auto;
					}
					&:nth-child(3) {
						margin-right: auto;
					}
				}
			}
			> div > .item > a,
			> div > .item > p {
				font-size: 18px;
			}
		}
		.child-1 {
			gap: 9px;
			margin-top: 9px;
			a {
				font-size: 14px;
			}
		}
		.buttons {
			gap: 16px;
			bottom: 48px;
			> * {
				width: 20px;
				height: 20px;
				&::before {
					font-size: 16px;
				}
			}
		}
	}
}
@media screen and (max-width: 1024px) and (max-height: 431px) {
	.promo {
		nav {
			bottom: 20dvh;
			> div > .item > a {
				font-size: 35px;
			}
		}
		.child-1 {
			gap: 5px;
			margin-top: 10px;
			a {
				font-size: 16px;
			}
		}
		.buttons {
			bottom: 3dvh;
		}
	}
}
@media screen and (hover:hover) {
	.promo nav a:hover {
		color: var(--hover);
	}
}