.lang-header {
	position: fixed;
	z-index: 100;
	width: 100%;
	top: 0;
	padding: 20px 22px;
	mix-blend-mode: difference;
	color: var(--color-difference);
	display: grid;
	grid-template-columns: auto max-content;
	text-transform: uppercase;
	align-items: center;
	@media screen and (max-width: 1024px) {
		padding: 20px 15px 20px 10px;
	}
	a {
		color: currentColor;
		text-decoration: none;
	}
}

.lang-header__logo {
	font-weight: 400;
	margin: 0;

	a {
		display: flex;
		align-items: center;
	}

	img {
		width: 135px;
		@media screen and (max-width: 1120px) {
			width: 78px;
		}
	}

	span {
		font-size: 28px;
		letter-spacing: 0.075em;
		padding-left: 14px;
		line-height: 1;
		margin-left: 14px;
		border-left: 1px solid currentColor;
		@media screen and (max-width: 1120px) {
			font-size: 16px;
			padding-left: 8px;
			margin-left: 8px;
		}
	}
}

.lang-header__nav {
	display: flex;
	align-items: center;
	gap: 32px;

	@media screen and (max-width: 1024px) {
		display: none;
	}
}

.lang-header__list {
	display: flex;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.lang-header__item {
	&:has(.lang-header__sublist) {
		position: relative;

		.lang-header__link::after {
			-webkit-mask-image: var(--icon-arrow-triangle);
			        mask-image: var(--icon-arrow-triangle);
			-webkit-mask-size: contain;
			        mask-size: contain;
			-webkit-mask-repeat: no-repeat;
			        mask-repeat: no-repeat;
			width: 12px;
			height: 6px;
			bottom: -10px;
		}

		&:hover {
			.lang-header__link::after {
				rotate: 180deg;
			}

			.lang-header__sublist {
				opacity: 1;
				visibility: visible;
			}
		}
	}

	&:not(:has(.lang-header__sublist)) {
		.lang-header__link::after {
			width: 15px;
			height: 1px;
			bottom: -10px;
			opacity: 0;
		}

		.lang-header__link:hover::after {
			opacity: 1;
		}
	}
}

.lang-header__link {
	position: relative;
	z-index: 1;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.025em;
	font-family: var(--font-serif);

	&::after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		background-color: currentColor;
		transition: 0.3s;
		margin: 0 auto;
	}
}

.lang-header__sublist {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	transition: 0.3s;
	top: 0;
	left: 50%;
	translate: -50% 0;
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
	padding: 44px 0 0;
	white-space: nowrap;
}

.lang-header__sublink {
	font-size: 14px;
	line-height: 1.57;
  font-family: var(--font-serif);
  
  &:hover {
    opacity: 0.7;
  }
}

.lang-header__button {
	border: 1px solid currentColor;
	font-size: 18px;
	letter-spacing: 0.025em;
	padding: 4px 14px;
	line-height: 1;
	border-radius: 20px;
	font-family: var(--font-serif);
	display: inline-grid;
	align-items: center;
	grid-template-columns: auto max-content;
	position: relative;

	&::before {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		background-color: currentColor;
		transition: 0.3s;
		margin: 0 auto;
		width: 15px;
		height: 1px;
		bottom: -8px;
		opacity: 0;
	}

	&::after {
		content: "";
		display: inline-block;
		width: 12px;
		height: 9px;
		margin-left: 6px;
		-webkit-mask-image: var(--icon-tab);
		        mask-image: var(--icon-tab);
		-webkit-mask-size: contain;
		        mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		        mask-repeat: no-repeat;
		background-color: currentColor;
	}

	&:hover::before {
		opacity: 1;
	}
}

.lang-header__hamburger {
	display: none;
	@media screen and (max-width: 1024px) {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 56px;
		height: 9px;
		position: relative;
		background-color: inherit;
		border: 0;
	}

	&[aria-expanded="true"] .lang-header__hamburger-line {
		top: 0;
		bottom: 0;
		margin: auto;
	}
}

.lang-header__hamburger-line {
	background-color: var(--color-difference);
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;

	&:nth-child(1) {
		top: 0;
	}
	&:nth-child(2) {
		bottom: 0;
	}
}

.lang-mobile-menu {
	display: none;
	background-color: var(--color-black);
	color: var(--color-white);
	position: fixed;
	z-index: 99;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition:
		opacity 0.3s,
		visibility 0.3s;
	overflow-y: auto;

	@media screen and (max-width: 1024px) {
		display: block;
	}

	&.is-open {
		visibility: visible;
		opacity: 1;
	}
}

.lang-mobile-menu__content {
	padding: 88px 15px 48px;
	display: grid;
	align-items: center;
	gap: 50px;

	> * {
		width: 100% !important;
	}
}

.lang-mobile-menu__copyright {
	margin-top: -20px;
	font-size: 9px;
}

.lang-navigation {
	width: min(100%, 830px);
}

.lang-navigation__list {
	display: grid;
	align-items: start;
	gap: 40px 30px;
	grid-template-columns: repeat(3, 1fr);

	@media screen and (max-width: 1024px) {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 16px;
	}
}

.lang-navigation__col {
	display: grid;
	gap: 44px 0;

	@media screen and (max-width: 1024px) {
		display: contents;
	}
}

.lang-navigation__sublist {
	padding-top: 18px;
	padding-left: 50px;
	display: grid;
	gap: 15px 0;

	@media screen and (max-width: 767px) {
		padding-left: 33px;
	}
}

.lang-navigation__link {
	padding-bottom: 16px;
	text-decoration: none;
	color: currentColor;
	align-items: center;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	position: relative;
	font-size: 18px;
	font-family: var(--font-roboto);

	@media screen and (max-width: 767px) {
		font-size: 13px;
	}

	&.lang-navigation__link--sub {
		font-size: 14px;
		padding-bottom: 10px;

		@media screen and (max-width: 767px) {
			font-size: 10px;
		}
	}

	&::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: currentColor;
		clip-path: polygon(
			0 0,
			0 100%,
			calc(0% - 40px) 100%,
			calc(0% - 40px) 0,
			0% 0,
			0% 100%,
			100% 100%,
			100% 0
		);
		transition: clip-path 0.6s ease-in-out;
	}

	&::after {
		content: "";
		display: inline-block;
		width: 30px;
		height: 15px;
		-webkit-mask-image: var(--icon-arrow-oval);
		        mask-image: var(--icon-arrow-oval);
		-webkit-mask-size: contain;
		        mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		        mask-repeat: no-repeat;
		background-color: currentColor;
	}

	&:hover::before {
		clip-path: polygon(
			0 0,
			0 100%,
			100% 100%,
			100% 0,
			calc(100% + 40px) 0,
			calc(100% + 40px) 100%,
			100% 100%,
			100% 0
		);
	}
}

.lang-navigation__text {
	letter-spacing: 0.025em;
}

a[target="_blank"] .lang-navigation__text::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 9px;
	margin-left: 10px;
	-webkit-mask-image: var(--icon-tab);
	        mask-image: var(--icon-tab);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	background-color: currentColor;
}

.lang-locations {
	width: min(100%, 830px);
	display: grid;
	align-items: start;
	gap: 20px 30px;
	grid-template-columns: repeat(3, 1fr);

	@media screen and (max-width: 1024px) {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 16px;
	}
}

.lang-locations__item {
	display: grid;
	gap: 0 6px;
	grid-template-columns: auto 1fr;

	@media screen and (max-width: 767px) {
		grid-template-columns: 1fr;
	}
}

.lang-locations__time {
	display: grid;
	grid-template-columns: subgrid;
	align-items: center;
	grid-column: 1 / -1;
	font-size: 14px;

	@media screen and (max-width: 767px) {
		font-size: 11px;
	}

}
.lang-locations__clock {
	width: 21px;
	height: 21px;
	grid-column: 1;
	flex-shrink: 0;

	@media screen and (max-width: 767px) {
		margin-bottom: 6px;
	}
}

.lang-locations__city,
.lang-locations__address,
.lang-locations__phone {
	grid-column: 2;
	font-size: 12px;
	line-height: 1.3;
	font-style: normal;
	margin: 0;

	@media screen and (max-width: 767px) {
		grid-column: 1 / -1;
		font-size: 10px;
	}
}

.lang-region-info {
	position: fixed;
	bottom: 10px;
	left: 22px;
	mix-blend-mode: difference;
	color: var(--color-difference);
	font-size: 30px;
	letter-spacing: 0.025em;
	font-family: var(--font-serif);
	margin: 0;
	z-index: 80;

	@media screen and (max-width: 767px) {
		font-size: 13px;
		left: 10px;
		bottom: 6px;
	}

	.js-date {
		@media screen and (max-width: 767px) {
			display: block;
		}
	}
}

.lang-group-link {
	position: fixed;
	right: 0;
	bottom: 0;
	background-color: var(--color-secondary);
	text-decoration: none;
	display: grid;
	gap: 10px;
	padding: 28px 30px 24px;
	color: var(--color-white);
	letter-spacing: 0.025em;
	font-family: var(--font-roboto);
	width: min(100%, 316px);
	z-index: 80;

	@media screen and (max-width: 767px) {
		padding: 14px 18px;
		width: min(100%, 210px);
	}

	&:hover .lang-group-link__cta::before {
		clip-path: polygon(
			0 0,
			0 100%,
			100% 100%,
			100% 0,
			calc(100% + 40px) 0,
			calc(100% + 40px) 100%,
			100% 100%,
			100% 0
		);
	}
}

.lang-group-link__brand {
	display: flex;
	align-items: center;
	gap: 6px;
}

.lang-group-link__logo {
	flex: 0 0 auto;
	width: 82px;

	@media screen and (max-width: 767px) {
		width: 62px;
	}
}

.lang-group-link__label {
	font-size: 18px;

	@media screen and (max-width: 767px) {
		font-size: 13px;
	}
}

.lang-group-link__cta {
	align-items: center;
	display: grid;
	grid-template-columns: 1fr auto;
	font-size: 14px;
	position: relative;
	padding-bottom: 8px;

	@media screen and (max-width: 767px) {
		font-size: 13px;
	}

	&::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: currentColor;
		clip-path: polygon(
			0 0,
			0 100%,
			calc(0% - 40px) 100%,
			calc(0% - 40px) 0,
			0% 0,
			0% 100%,
			100% 100%,
			100% 0
		);
		transition: clip-path 0.6s ease-in-out;
	}

	&::after {
		content: "";
		display: inline-block;
		width: 30px;
		height: 15px;
		-webkit-mask-image: var(--icon-arrow-oval);
		        mask-image: var(--icon-arrow-oval);
		-webkit-mask-size: contain;
		        mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		        mask-repeat: no-repeat;
		background-color: currentColor;
	}
}

.lang-footer {
}

.lang-footer__main {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: 100px 25px 150px;

	@media screen and (max-width: 767px) {
		padding: 75px 15px 100px;
	}
}
.lang-footer__body {
	display: flex;
	align-items: flex-start;
	gap: 0 50px;
	max-width: 1266px;
	margin-inline: auto;

	@media screen and (max-width: 767px) {
		flex-direction: column;
	}
}

.lang-footer__content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 100px;
	align-items: center;

	@media screen and (max-width: 767px) {
		gap: 50px;
		width: 100%;
		margin-top: 50px;
	}
}

.lang-footer__logo {
	font-weight: 400;
	margin: 0;
	display: flex;
	align-items: center;

	a {
		display: flex;
		align-items: center;
	}

	img {
		width: 126px;
		@media screen and (max-width: 767px) {
			width: 78px;
		}
	}

	span {
		font-size: 25px;
		letter-spacing: 0.075em;
		text-transform: uppercase;
		padding-left: 13px;
		margin-left: 13px;
		line-height: 1;
		border-left: 1px solid currentColor;

		@media screen and (max-width: 767px) {
			font-size: 16px;
			padding-left: 8px;
			margin-left: 8px;
		}
	}
}

.lang-footer__copyright {
	position: fixed;
	height: -moz-max-content;
	height: max-content;
	right: 12px;
	writing-mode: vertical-rl;
	top: 0;
	bottom: 0;
	margin: auto;
	mix-blend-mode: difference;
	color: var(--color-difference);
	font-family: var(--font-serif);

	@media screen and (max-width: 767px) {
		position: static;
		writing-mode: inherit;
		margin-top: 30px;
	}

	small {
		font-size: 10px;
		letter-spacing: 0.05em;
		line-height: 1.8;

		@media screen and (max-width: 767px) {
			font-size: 9px;
		}
	}
}

.lang-cta {
	display: grid;
	grid-template-columns: 1fr 1fr;

	@media screen and (max-width: 960px) {
		grid-template-columns: 1fr;
	}
}

.lang-cta__link {
	color: var(--color-primary);
	background-color: var(--color-light-gray);
	text-decoration: none;
	padding: 74px 60px 74px 20px;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 50px;
	font-family: var(--font-serif);

	&:hover {
		background-color: var(--color-primary);
		color: var(--color-secondary);

		.lang-cta__title {
			filter: brightness(0) saturate(100%) invert(68%) sepia(11%)
				saturate(653%) hue-rotate(357deg) brightness(91%) contrast(87%);
		}
	}

	@media screen and (max-width: 767px) {
		min-height: 175px;
		padding: 8px 15px 8px 10px;
		gap: 18px;
	}
}

.lang-cta__link--primary {
	background-color: var(--color-white);
}

.lang-cta__title {
	flex: 0 0 auto;
	width: 52px;
	height: auto;
	margin: 0;

	@media screen and (max-width: 767px) {
		width: 36px;
	}

	img {
		width: 100%;
	}
}

.lang-cta__desc {
	padding-left: 10px;
	font-size: 30px;
	margin: 0;

	@media screen and (max-width: 767px) {
		font-size: 20px;
		padding-left: 0;
	}
}

.lang-cta__icon {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;

	&::before {
		content: "";
		width: 12px;
		height: 9px;
		-webkit-mask-image: var(--icon-tab);
		        mask-image: var(--icon-tab);
		-webkit-mask-size: contain;
		        mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		        mask-repeat: no-repeat;
		background-color: currentColor;
		flex: 0 0 auto;
	}

	&::after {
		content: "";
		display: inline-block;
		width: 67px;
		height: 4px;
		-webkit-mask-image: var(--icon-arrow-line);
		        mask-image: var(--icon-arrow-line);
		-webkit-mask-size: contain;
		        mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		        mask-repeat: no-repeat;
		background-color: currentColor;
		flex: 0 0 auto;

		@media screen and (max-width: 767px) {
			width: 31px;
			height: 3px;
			-webkit-mask-image: var(--icon-arrow-line-sm);
			        mask-image: var(--icon-arrow-line-sm);
		}
	}
}

.wovn-embedded-widget {
  transition: opacity 0.3s ease-in-out!important;
  mix-blend-mode: difference!important;
  #wovn-logo-planet {
    fill: #b29d72!important;
  }
  .wovn-current-lang {
    color: #b29d72!important;
  }
  .wovn-lang-selector-links {
    border-color: #b29d72!important;
  }
  #translated-by-machine {
    color: #b29d72!important;
  }
  .wovn-switch {
    color: #b29d72!important;
  }
  .wovn-switch::before {
    background-color: #b29d72!important;
  }
}
.lang-mainvisual {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;

	& + * {
		margin-top: 100vh !important;
	}

  .wp-block-group__inner-container {
    max-width: 100%!important;
    margin-left: 0!important;
    margin-right: 0!important;
  }
}

.lang-hero {
	position: relative;
	z-index: -1;
}
.lang-hero__subtitle {
	position: fixed;
	z-index: 1;
	top: 171px;
	left: 22px;
	padding-top: 0 !important;
	@media screen and (max-width: 767px) {
		top: 98px;
		left: 15px;
	}
}

