header .wrapper > .logo,
header .location,
.promo * {
	color: var(--text-color);
}
header {
	.location::before {
		background: var(--dark);
	}
	.wrapper > .buttons svg {
		fill: var(--text-color);
	}
}
.vertical header .wrapper > .logo {
	border-color: var(--dark) !important;
	&::before {
		border-color: var(--dark) !important;
	}
	span {
		color: var(--text-color) !important;
	}
}
footer {
	display: none;
}
.promo {
	display: flex;
	align-items: start;
	justify-content: center;
	* {
		font-family: Lato;
	}
	.wrapper {
		max-width: 1194px;
		display: grid;
		grid-template-columns: 500px 1fr;
		justify-content: space-between;
		align-items: start;
		column-gap: 10%;
		padding: 0;
		margin-top: calc(147px + 10dvh);
		height: calc(92dvh - 247px);
		.content {
			display: flex;
			flex-direction: column;
			gap: 20px;
			p {
				color: var(--text-color);
			}
		}
		form {
			display: flex;
			flex-direction: column;
			gap: 10px;
			width: 100%;
			input {
				height: 40px;
			}
			:is(input, textarea) {
				font-size: 16px;
				padding: 10px;
				text-align: left;
				border-radius: 4px;
				border: 1px solid rgba(45, 47, 46, 0.16);
				transition: border-color 0.2s linear;
				&:focus {
					border-color: rgba(45, 47, 46, 0.73);
				}
				&:-webkit-autofill {
					box-shadow: inset 0 0 0 50px #fff !important;
					background: transparent;
				}
			}
			textarea {
				scrollbar-width: none;
				&::-webkit-scrollbar {
					width: 0;
					height: 0;
				}
			}
			button {
				margin-top: 10px;
				color: var(--White);
			}
		}
	}
	:is(h1, h2) {
		font-size: 24px;
		text-transform: lowercase;
		text-align: center;
		font-weight: 300;
	}
	h1 {
		display: block;
		text-align: center;
		font-family: Lato;
		font-size: 25px;
		font-weight: 300;
		line-height: 1;
		text-transform: uppercase;
		margin-bottom: 25px;
	}
}
.vertical .promo .wrapper {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	width: calc(100% - 248px);
	gap: 60px;
	margin-top: calc(160px + 8dvh);
}
.order-done {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100dvh;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	z-index: 100;
	&.active {
		display: flex;
	}
	.content {
		width: min(460px, 100%);
		position: relative;
		padding: 50px 80px;
		background: #fff;
		.close-modal {
			position: absolute;
			right: 10px;
			top: 10px;
			width: 24px;
			aspect-ratio: 1/1;
			display: flex;
			background: transparent;
			align-items: center;
			justify-content: center;
			&::before {
				content: '\e915';
				line-height: 1;
				font-family: icon;
				font-size: 23px;
				color: var(--text-color);
				transition: color 0.2s linear;
			}
		}
		div {
			text-align: center;
			font-size: 20px;
			text-transform: uppercase;
			color: var(--text-color);
		}
		p {
			font-size: 13px;
			margin: 20px 0 40px;
			text-align: center;
			color: var(--text-color);
		}
		.dark-btn {
			display: flex;
			width: 100%;
			align-items: center;
			justify-content: center;
			font-family: Lato;
		}
	}
}
@media screen and (max-width: 1500px) {
	.promo .wrapper {
		width: calc(100% - 180px);
		column-gap: 20px;
		margin-top: calc(147px + 10dvh);
	}
}
@media screen and (max-width: 1279px) {
	.promo .wrapper {
		width: calc(100% - 60px);
		padding: 0;
		grid-template-columns: 1fr 1fr;
		column-gap: 3.8%;
	}
	.vertical .promo .wrapper {
		width: calc(100% - 248px);
	}
	.order-done .content {
		width: min(360px, 100%);
		padding: 40px 30px;
		div {
			font-size: 18px;
		}
	}
}
@media screen and (max-width: 767px) {
	header {
		padding-top: 20px;
	}
	.promo {
		h1 {
			font-size: 18px;
        	margin-bottom: 20px;
			font-weight: 400;
		}
		.content p {
			font-size: 12px;
		}
	}
	.vertical {
		header {
			padding: 30px 20px 0;
			.wrapper > .logo {
				background: url(../images/logo.svg) 0 0 / 100% 100% !important;
			}
		}
		.promo {
			margin-bottom: 50px;
			.wrapper {
				position: relative;
				width: calc(100% - 52px);
				height: calc(100dvh - 180px);
				gap: 30px;
				margin-top: calc(120px + 1dvh);
				.content {
					gap: 10px;
				}
				form {
					width: 100%;
					display: flex;
					flex-direction: column;
					align-items: center;
					gap: 10px;
					h2 {
						font-size: 18px;
						font-weight: 400;
						margin-bottom: 10px;
					}
					input {
						height: initial;
					}
					textarea {
						height: 40px;
					}
				}
			}
		}
	}
	.order-done .content {
		width: calc(100% - 20px);
		max-width: 340px;
		padding: 40px 20px 30px;
	}
}
@media screen and (max-width: 1024px) and (max-height: 431px) {
	header {
		padding-top: 10px;
		.wrapper {
			height: auto;
		}
	}
	.promo {
		h1 {
			font-size: 20px;
			margin-bottom: 10px;
		}
		.wrapper {
			grid-template-columns: 0.55fr 0.45fr;
			margin-top: 60px;
			width: calc(100% - 60px);
			height: calc(100dvh - 100px);
			.content {
				gap: 10px;
				p {
					font-size: 12px;
				}
			}
			form {
				gap: 5px;
				h2 {
					font-size: 20px;
					margin-bottom: 5px;
				}
				:is(input, textarea) {
					padding: 5px;
					height: 28px;
				}
				textarea {
					height: 35px;
				}
				button {
					margin-top: 0;
					padding: 8px 40px;
					font-size: 10px;
				}
			}
		}
	}
}
@media screen and (hover: hover) {
	.promo form button:hover {
		color: var(--hover);
	}
}