.header {
	background: var(--color-purple);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 10;
}
.header-logo {
	display: block;
	max-width: 200px;
}

.layout-container {
	max-width: 1800px;
	width: 100%;
	margin: 0 auto;
	padding: 0 32px;
	box-sizing: border-box;
}

.page-container {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	padding: 0 36px;
	box-sizing: border-box;
}
.header-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-menu {
	display: flex;
	list-style-type: none;
	gap: 30px;
}
.header-menu-link {
	color: white;
	text-decoration: none;
	font-size: var(--size-xl);

	&.active-menu-item:after {
		width: 100%;
	}
}

.hover-underline {
	display: inline-block;
	position: relative;
	&:after {
		content: "";
		position: absolute;
		right: 0;
		left: 0;
		bottom: -4px;
		width: 0%;
		height: 1px;
		background: var(--color-white);
		transition: all 0.4s ease;
		margin: auto;
	}
	&:hover:after {
		width: 70%;
	}
	&.hover-underline-black {
		&:after {
			background: var(--color-black);
		}
	}
}

.footer {
	background: var(--color-purple);
	padding: 30px 0 60px 0;
}

.footer-tg {
	max-width: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	&:hover {
		transform: scale(1.1);
	}
}
.footer-block {
	font-size: var(--size-2xl);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	a {
		color: white;
		text-decoration: none;
	}
}
.footer-emails {
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 40px;
	margin-top: 20px;
}

.footer-email-link {
	margin-top: 4px;
}

.page-paddings {
	padding: 65px 0 80px 0;
}

#popup-box,
#popup-box-video,
#art-popup-msg {
	display: none;
	position: absolute;
	z-index: 9999;
}
.art-popup-overlay {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;

	.art-popup-video {
		margin: 0 16px;
		position: relative;
		width: 100%;
		max-width: 800px;
		height: auto;
		overflow: hidden;
		video {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}
	}

	.art-popup-content {
		background: white;
		padding: 16px;
		border-radius: 5px;
		position: relative;
		width: 100%;
		max-width: 400px;
		margin: 0 12px;
	}
	.art-popup-btn {
		max-width: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		border: none;
		background: none;
		position: absolute;
		right: 16px;
		top: 16px;
		z-index: 2;
		cursor: pointer;
		transition: all 0.4s ease;
		&:hover {
			transform: scale(1.2);
		}
	}
	.art-popup-title {
		font-size: var(--size-2xl);
		font-weight: bold;
	}
	.art-popup-body {
		padding-top: 12px;
		label {
			font-size: 16px;
			.wpcf7-form-control-wrap {
				margin-top: 8px;
				display: block;
				width: 100%;
			}
			.wpcf7-not-valid-tip {
				margin-top: 4px;
			}
			input,
			textarea {
				width: 100%;
				box-sizing: border-box;
				border: 1px solid gray;
				border-radius: 5px;
				padding: 6px;
			}
		}
		input[type="submit"] {
			background: var(--color-red);
			color: var(--color-white);
			font-size: var(--size-xl);
			font-weight: bold;
			border: none;
			padding: 12px 24px;
			border-radius: 5px;
			cursor: pointer;
			transition: all 0.4s ease;
			&:hover {
				background: var(--color-purple);
			}
		}
		.wpcf7-response-output {
			display: none;
		}
	}

	.art-popup-sent {
		position: absolute;
		z-index: 3;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;

		.art-popup-alert {
			background: white;
			padding: 12px 24px;
			box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
			font-weight: 500;
			font-size: var(--size-lg);
			border-radius: 5px;
			color: forestgreen;
		}
	}
}

.mobile-menu-btn {
	display: none;
	padding: 0;
	border: none;
	background: none;
	position: absolute;
	right: 16px;
	top: 6px;
	cursor: pointer;
}
.mobile-menu-burger {
	display: none;
	padding: 0;
	border: none;
	background: none;
	position: absolute;
	right: 16px;
	top: 9px;
	cursor: pointer;
}
