*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: #ffffff;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

.site-header {
	width: 100%;
	background: #ffffff;
	position: relative;
	z-index: 100;
}

.site-header__inner {
	width: min(calc(100% - 80px), 1440px);
	height: 88px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 40px;
}

.site-branding {
	flex: 0 0 auto;
}

.site-branding .custom-logo-link {
	display: block;
}

.site-branding .custom-logo {
	width: 175px;
	height: auto;
	max-width: none;
}

.site-header__navigation {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 36px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list li {
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	display: block;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	color: #102b28;
	text-decoration: none;
	white-space: nowrap;
}

.site-nav__list a:hover {
	opacity: 0.6;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 26px;
}

.site-language {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: #102b28;
	cursor: pointer;
}

.site-header__cta {
	height: 48px;
	padding: 0 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border-radius: 999px;
	background: #073b31;
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: #ffffff;
	text-decoration: none;
	white-space: nowrap;
}

.site-header__cta:hover {
	color: #ffffff;
	opacity: 0.9;
}

.site-menu-toggle {
	display: none;
}

.site-main {
	min-height: 60vh;
}

@media (max-width: 1024px) {

	.site-header__inner {
		width: min(calc(100% - 40px), 1440px);
		height: 76px;
		justify-content: space-between;
	}

	.site-branding .custom-logo {
		width: 145px;
	}

	.site-menu-toggle {
		position: relative;
		z-index: 130;

		width: 44px;
		height: 44px;

		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;

		padding: 0;

		border: 0;
		background: transparent;

		cursor: pointer;
	}

	.site-menu-toggle span {
		display: block;

		width: 24px;
		height: 2px;

		background: #102b28;

		transition:
			transform 0.25s ease,
			opacity 0.25s ease;
	}

	.site-header__navigation {
		position: fixed;
		z-index: 120;

		top: 0;
		right: 0;

		width: min(88vw, 420px);
		height: 100dvh;

		padding: 110px 32px 40px;

		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 40px;

		background: #ffffff;

		transform: translateX(100%);
		transition: transform 0.3s ease;

		overflow-y: auto;
	}

	.site-header.is-menu-open .site-header__navigation {
		transform: translateX(0);
	}

	.site-nav__list {
		display: flex;
		flex-direction: column;
		align-items: stretch;

		gap: 0;
	}

	.site-nav__list > li {
		border-bottom: 1px solid rgba(16, 43, 40, 0.12);
	}

	.site-nav__list a {
		padding: 17px 0;

		font-size: 18px;
		line-height: 1.3;
	}

	.site-nav__list .sub-menu {
		margin: 0 0 12px 16px;
		padding: 0;

		list-style: none;
	}

	.site-nav__list .sub-menu a {
		padding: 10px 0;

		font-size: 15px;
	}

	.site-header__actions {
		margin-top: auto;

		display: flex;
		flex-direction: column;
		align-items: stretch;

		gap: 18px;
	}

	.site-language {
		font-size: 15px;
	}

	.site-header__cta {
		width: 100%;
		height: 52px;

		font-size: 14px;
	}

	.site-header.is-menu-open .site-menu-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.site-header.is-menu-open .site-menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-menu-open .site-menu-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	body.menu-open {
		overflow: hidden;
	}
}

@media (max-width: 600px) {

	.site-header__inner {
		width: calc(100% - 32px);
		height: 70px;
	}

	.site-branding .custom-logo {
		width: 125px;
	}

	.site-header__navigation {
		width: 100%;
		padding:
			100px
			24px
			32px;
	}
}