header {
	background: var(--White);
	padding-bottom: 20px;
	.logo {
		font-family: "Goudy Old Style";
		font-size: 77px;
		font-weight: 700;
		line-height: 129%;
		text-align: center;
		opacity: 0.7;
		span {
			display: none;
		}
	}
	.wrapper {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		justify-content: space-between;
		column-gap: 10px;
		.location::before {
			background: var(--dark);
		}
		.location,
		> .logo {
			color: var(--text-color);
		}
		.buttons:has(.burger) {
			margin-left: auto;
		}
		> .buttons svg {
			fill: var(--text-color)
		}
	}
}
header > .wrapper > .buttons.mob {
	margin-right: 0;
}
main * {
	font-family: Lato;
	color: var(--text-color);
}
html:has(.scrollPage) {
	header {
		position: fixed;
		left: 0;
		top: 0;
	}
	footer {
		padding: 30px 0;
		min-height: calc(100dvh - 134px) !important;
		max-height: initial;
	}
	main > *:first-child {
		margin-top: 190px;
	}
}
.delivery {
	margin-top: 30px;
	max-width: 800px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-bottom: 80px;
	> nav {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 40px;
		margin-bottom: 10px;
		a {
			line-height: 1.5;
			text-transform: uppercase;
			font-weight: 300;
			&.active {
				font-weight: 400;
			}
		}
	}
	.delivery-content {
		display: flex;
		flex-direction: column;
		gap: 35px;
		.quest {
			display: flex;
			flex-direction: column;
			gap: 10px;
			h2 {
				font-size: 20px;
			}
			p {
				font-weight: 300;
			}
			p b {
				all: inherit;
				display: inline-block;
				font-weight: 300;
			}
			:where(ul, ol) {
				display: flex;
				flex-direction: column;
				gap: 10px;
				margin-left: 25px;
				li {
					font-weight: 300;
					b {
						all: inherit;
						display: inline-block;
						font-weight: 300;
					}
				}
			}
		}
	}
}
html:has(.scrollPage) {
	footer {
		padding: 30px 0;
		min-height: 100dvh;
		max-height: initial;
	}
}
@media screen and (max-width: 1500px) {
	header {
		padding-top: 40px;
		.logo {
			font-size: 60px;
			line-height: 100%;
		}
	}
	html:has(.scrollPage) main > *:first-child {
		margin-top: 160px;
	}
}
@media screen and (max-width: 1279px) {
	header .wrapper {
		display: grid;
		height: initial;
		> .logo {
			margin: 0 auto;
			display: flex;
			align-items: center;
			justify-content: center;
			width: 120px;
			min-height: 64px;
			font-size: 9px;
			background: url(../images/logo.svg) 0 0 / 100% 100%;
		}
	}
	.delivery {
		width: calc(100% - 228px);
		margin-bottom: 70px;
		> nav {
			flex-direction: column;
			gap: 20px;
		}
	}
}
@media screen and (max-width: 767px) {
	header {
		padding: 54px 20px 20px;
		.wrapper {
			height: 59px;
			.location {
				text-transform: lowercase;
			}
		}
	}
	.delivery {
		gap: 30px;
		width: calc(100% - 52px);
		margin-bottom: 66px;
		.delivery-content {
			margin-top: 10px;
		}
	}
}