/* ── Container ── */

* {
	box-sizing: border-box;
}

body {
	font-family: var(--font-base) !important;
	background-color: #F7F5F2;
}

.container {
	max-width: 1312px;
	margin-inline: auto;
	padding-inline: 24px;
}

/* ── Buttons ── */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 14px 14px 14px 16px;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	text-decoration: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
	white-space: nowrap;
}

.btn>svg {
	flex-shrink: 0;
}

.btn--primary {
	color: #FFF;
	border-radius: 4px;
	background: #1A1919;
	box-shadow: 0 9px 14px -5px rgba(255, 255, 255, 0.30) inset, 0 4px 6px 0 rgba(0, 0, 0, 0.14);
}

.btn--primary:hover {
	background: var(--black, #191919);
	box-shadow: 0 -1px 27px -2px rgba(255, 255, 255, 0.30) inset, 0 9px 14px -5px rgba(255, 255, 255, 0.30) inset, 0 4px 6px 0 rgba(0, 0, 0, 0.14);
}

.btn--primary-arrow {
	border-radius: 4px;
	background: #1A1919;
	color: #fff;
	box-shadow: 0 9px 14px -5px rgba(255, 255, 255, 0.30) inset, 0 4px 6px 0 rgba(0, 0, 0, 0.14);
}

.btn--primary-arrow:hover {
	background: var(--black, #191919);
	box-shadow: 0 -1px 27px -2px rgba(255, 255, 255, 0.30) inset, 0 9px 14px -5px rgba(255, 255, 255, 0.30) inset, 0 4px 6px 0 rgba(0, 0, 0, 0.14);
}

.btn--secondary {
	border-radius: 4px;
	border: 1.2px solid rgba(25, 25, 25, 0.08);
	background: var(--surface-base, #FFF);
	color: var(--black, #191919);
	/* shadow-s-subtle */
	box-shadow: 0 20px 51px 0 rgba(26, 26, 18, 0.01), 0 10.481px 24.461px 0 rgba(26, 26, 18, 0.02), 0 3.852px 6.139px 0 rgba(26, 26, 18, 0.03);
}

.btn--secondary:hover {
	border-color: var(--color-black);
}

/* ── Nav overlay ── */

.nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: var(--black, #191919);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-overlay.is-visible {
	opacity: 0.1;
	pointer-events: auto;
}

/* ── Header ── */

.site-header {
	background-color: var(--color-off-white-100);
	position: sticky;
	top: 0;
	z-index: 100;
	height: 68px;
	transition: transform 0.35s ease;
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

.header__actions .btn {
	padding: 12px 16px;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.header__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	text-decoration: none;
}

.header__logo img {
	display: block;
	height: 20px;
	width: auto;
}

.o_circle {
	transform-box: fill-box;
	transform-origin: center;
}

.header__logo-text {
	font-family: var(--font-base);
	font-size: var(--fs-h4);
	font-weight: var(--fw-bold);
	color: var(--color-black);
	letter-spacing: -0.02em;
}

.header__nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.header__menu {
	display: flex;
	align-items: center;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}


.header__menu-link,
.header__menu-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	color: var(--black, #191919);

	text-decoration: none;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.14px;
}

.header__menu-link:hover,
.header__menu-btn:hover,
.header__menu-item.is-active>.header__menu-link,
.header__menu-item.is-active>.header__menu-btn {
	color: var(--black, #191919);
	opacity: 0.6;
}

.header__menu-btn:hover {
	opacity: 0.7;
}

.header__chevron {
	flex-shrink: 0;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__menu-item.is-open>.header__menu-btn .header__chevron {
	transform: rotate(180deg);
}

/* ── Dropdown panel ── */

.header__menu-item {
	position: relative;
}

/* Bridges the gap so mouseleave doesn't fire while moving toward the dropdown */
.header__menu-item.has-dropdown::after {
	content: '';
	position: absolute;
	top: 100%;
	left: -24px;
	right: -24px;
	height: 28px; /* must cover the 25px gap to the dropdown */
}

.header__dropdown {
	position: absolute;
	top: calc(100% + 25px);
	left: 0;
	width: 988px;
	z-index: 200;
	display: flex;
	gap: 0;
	/* padding: 8px; */
	border-radius: 14px;
	background: var(--Off-white-100, #F7F5F2);
	overflow: hidden;

	/* animation — hidden state */
	visibility: hidden;
	opacity: 0;
	transform: translateY(-8px);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s linear 0.35s;
	pointer-events: none;
}

.header__menu-item.is-open>.header__dropdown {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s linear 0s;
	pointer-events: auto;
}

/* Left panel */

.header__dropdown-panel {
	min-width: 384px;
	padding: 32px;
	border-radius: 6px;
	background: var(--white, #FFF);
	height: calc(100% - 16px);
	margin-top: 8px;
	margin-left: 8px;
	margin-bottom: 8px;
}

.header__dropdown-title {
	color: var(--black, #191919);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	/* 20.8px */
	text-transform: uppercase;
	opacity: 0.5;
	margin: 0 0 32px 0;
}

.header__dropdown-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.header__dropdown-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 6px 16px 6px 6px;
	border-radius: 10px;
	text-decoration: none;
	color: var(--color-black);
	transition: background-color 0.15s;
	border: 1px solid var(--8, rgba(25, 25, 25, 0));
}

.header__dropdown-panel.has-cta {
	min-width: 473px;
}

.header__dropdown-item:hover {
	border-radius: 10px;
	border: 1px solid var(--8, rgba(25, 25, 25, 0.08));
	background: #FCFAF7;
}

.header__dropdown-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background-color: var(--color-off-white-200);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background-color 0.15s;
	border-radius: 4px;
	border: 1.2px solid rgba(25, 25, 25, 0.04);
	background: #F7F5F2;
}

.header__dropdown-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.header__dropdown-icon svg {
	color: #B2B1AE;
	transition: color 0.15s;
}

.header__dropdown-item:hover .header__dropdown-icon {
	background-color: var(--color-sky-200);
}

.header__dropdown-item:hover .header__dropdown-icon svg {
	color: var(--color-sky-700);
}

.header__dropdown-label {
	flex: 1;
	color: var(--text-base, rgba(7, 7, 3, 0.83));
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	/* 25.2px */
}

.header__dropdown-arrow {
	flex-shrink: 0;
	color: var(--color-gray-400);
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.15s, transform 0.15s;
}

.header__dropdown-item:hover .header__dropdown-arrow {
	opacity: 1;
	transform: translateX(0);
}

/* Right aside */

.header__dropdown-aside {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.header__dropdown-cover {
	position: relative;
	flex: 1;
	overflow: hidden;
}

.header__cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.header__cover-img.is-active {
	opacity: 1;
}

.header__dropdown-cta {
	margin-top: 24px;
	padding-top: 30px;
	border-top: 1px solid #F1EFEC;
	display: flex;
	flex-direction: row;
	gap: 40px;
	align-items: center;
}

.header__dropdown-cta-text {
	color: var(--Dark, #192023);
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.33px;
	margin: 0;
}

.header__dropdown-cta .btn {
	align-self: flex-start;
	gap: 8px;
	margin-top: 5px;
}

.header__actions {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

.header__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 11px 9px;
	margin-left: auto;
	border-radius: 4px;
	border: 1px solid var(--8, rgba(25, 25, 25, 0.08));
	background: var(--surface-base, #FFF);
	box-shadow: 0 20px 51px 0 rgba(26, 26, 18, 0.01), 0 10.481px 24.461px 0 rgba(26, 26, 18, 0.02), 0 3.852px 6.139px 0 rgba(26, 26, 18, 0.03);
}

.header__burger span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-black);
	border-radius: 1px;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	transform-origin: center;
}

.header__burger span:nth-child(2) {
	width: calc(100% - 6px);
}

/* Активний стан: хрестик */
.header__burger.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
	transform: translateX(14px);
	opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu ── */

.header__mobile-menu {
	position: fixed;
	top: 68px;
	left: 0;
	width: 100%;
	height: calc(100dvh - 68px);
	background: var(--color-off-white-100, #F7F5F2);
	z-index: 98;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	padding: 16px 20px 32px;
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: transform;
}

.header__mobile-menu.is-open {
	transform: translateX(0);
}

.header__mobile-nav {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.header__mobile-item {
	border-bottom: 1px solid rgba(25, 25, 25, 0.06);
}

.header__mobile-link,
.header__mobile-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 4px;
	font-family: var(--font-base);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-black);
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.header__mobile-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.header__mobile-icon-plus,
.header__mobile-icon-minus {
	transition: opacity 0.2s ease;
}

.header__mobile-icon-minus {
	display: none;
	opacity: 0;
}

.header__mobile-item.is-open .header__mobile-icon-plus {
	display: none;
	opacity: 0;
}

.header__mobile-item.is-open .header__mobile-icon-minus {
	display: block;
	opacity: 1;
}

.header__mobile-sub {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__mobile-item.is-open .header__mobile-sub {
	grid-template-rows: 1fr;
}

.header__mobile-sub-inner {
	overflow: hidden;
}

/* Mobile sub-items — reuse .header__dropdown-item styles */
.header__mobile-sub-inner .header__dropdown-item {
	padding: 8px 6px;
}

.header__mobile-sub-inner .header__dropdown-arrow {
	display: none;
}

/* Top action buttons (Log in / Get account) */
.header__mobile-top-actions {
	display: flex;
	gap: 10px;
	padding-bottom: 20px;
	margin-bottom: 4px;
	border-bottom: 1px solid rgba(25, 25, 25, 0.06);
}

.header__mobile-top-actions .btn {
	flex: 1;
	justify-content: center;
}

/* Bottom CTA (from admin options) */
.header__mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px 20px;
	border-radius: 14px;
	border: 8px solid #EDAA24;
	ackground: #FFF;
}

.header__mobile-actions .btn {
	justify-content: center;
	width: 100%;
}

.header__mobile-cta-label {
	margin: 0 0 40px 0;
	color: #1A1919;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	/* 31.2px */
	letter-spacing: -0.12px;
}

/* ── Header mobile ── */

@media (max-width: 1024px) {

	.header__nav,
	.header__actions {
		display: none;
	}

	.header__burger {
		display: flex;
	}
}

.site-footer {
	background: #F7F5F2;
	width: calc(100% - 40px);
	margin-left: 20px;
	border-radius: 12px 12px 0 0;
	background: var(--off-white-200, #F1EFEC);
}

/* ── Top bar ── */

.footer__top {
	position: relative;
}

.footer__top-inner {
	display: grid;
	grid-template-columns: 344px 1fr;
	align-items: flex-start;
	gap: var(--space-l);
	padding: 49px 0 40px 0;
	border-bottom: 1px solid rgba(25, 25, 25, 0.05);

}
.footer__top .container{
	position: relative;
}
.footer__top .container:before {
content: '';
    display: block;
    position: absolute;
    left: -60px;
    top: 0px;
    height: 100%;
    width: 407px;
background-image: url("data:image/svg+xml,%3Csvg width='388' height='169' viewBox='0 0 388 169' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3018_374524)'%3E%3Ccircle cx='17.585' cy='88.7197' r='177.503' stroke='%23191919' stroke-opacity='0.08'/%3E%3Ccircle cx='17.5844' cy='88.7192' r='362.368' stroke='%23191919' stroke-opacity='0.08'/%3E%3Cpath d='M624.167 449.388L-625.23 -271.951' stroke='%23191919' stroke-opacity='0.08'/%3E%3Cpath d='M624.167 -271.949L-625.23 449.391' stroke='%23191919' stroke-opacity='0.08'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3018_374524'%3E%3Crect width='388' height='169' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: 1;
}

.footer__brand,
.footer__info {
	position: relative;
	z-index: 2;
}

.footer__brand {
	flex-shrink: 0;

	width: 80px;
	height: 80px;
}

.footer__brand a {
	display: flex;
	    position: relative;
    top: 4px;
}

.footer__brand img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__brand:hover img {
	transform: rotate(360deg);
}
.site-footer{
	overflow: hidden;
}
.footer__info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-l);
}

.footer__info-col {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.footer__info-label {
	color: var(--black, #191919);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	/* 20.8px */
	text-transform: uppercase;
	opacity: 0.4;
	margin: 0;
}

.footer__email {
	font-size: var(--fs-body-l);
	font-weight: var(--fw-medium);
	color: var(--color-black);
	text-decoration: none;
	letter-spacing: var(--ls-body-l);
	line-height: var(--lh-body-l);
	transition: color 0.15s;
}

.footer__email:hover {
	color: var(--color-gray-500);
}

.footer__address {
	font-style: normal;
	font-size: var(--fs-body-s);
	font-weight: var(--fw-medium);
	color: var(--color-black);
	line-height: var(--lh-body-s);
	text-decoration: none;
	transition: color 0.15s;
	max-width: 215px;
	transition: all .2s linear;
}

a.footer__address:hover {
	opacity: 0.7;
}

.footer__socials {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-gray-200);
	border-radius: 6px;
	color: var(--color-black);
	text-decoration: none;
	transition: border-color 0.15s, background-color 0.15s;
	border-radius: 4px;
	border: 0.733px solid rgba(25, 25, 25, 0.04);
	background: var(--white, #FFF);
	box-shadow: 0 20px 51px 0 rgba(26, 26, 18, 0.01), 0 10.481px 24.461px 0 rgba(26, 26, 18, 0.02), 0 3.852px 6.139px 0 rgba(26, 26, 18, 0.03);
}

.footer__social-link svg {
	width: 20px;
	height: 20px;
}

.footer__social-link:hover {
	border-radius: 4px;
	border: 1px solid var(--black, #191919);
	background: var(--white, #FFF);
	box-shadow: 0 20px 51px 0 rgba(26, 26, 18, 0.01), 0 10.481px 24.461px 0 rgba(26, 26, 18, 0.02), 0 3.852px 6.139px 0 rgba(26, 26, 18, 0.03);
}

.footer__social-link svg {
	display: block;
}

/* ── Middle ── */

.footer__middle {}

.footer__middle-inner {
	display: grid;
	grid-template-columns: 344px 1fr;
	align-items: flex-start;
	gap: var(--space-l);
	padding: 40px 0;
	border-bottom: 1px solid rgba(25, 25, 25, 0.05);
}

.footer__lang-list .current-lang {
	display: none;
}

.lang-item a {
	border-radius: 4px;
	border: var(--Border-border-base, 1.2px) solid var(--border-subtle, rgba(44, 44, 17, 0.04));
	background: var(--surface-base, #FFF);
	position: relative;
	padding: 12px 12px 12px 36px !important;
	color: var(--black, #191919);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	/* 114.286% */
	box-shadow: 0 20px 51px 0 rgba(26, 26, 18, 0.01), 0 10.481px 24.461px 0 rgba(26, 26, 18, 0.02), 0 3.852px 6.139px 0 rgba(26, 26, 18, 0.03);
}

.lang-item a:before {
	content: '';
	width: 16px;
	height: 16px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	background-size: 100%;
	top: 12px;
	left: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M1.36719 8.66603H5.01914C5.13847 10.8453 5.83924 12.8696 6.96897 14.5867C3.99271 14.1242 1.66771 11.6929 1.36719 8.66603ZM1.36719 7.3327C1.66771 4.30588 3.99271 1.8746 6.96897 1.41211C5.83924 3.12914 5.13847 5.1535 5.01914 7.3327H1.36719ZM14.6347 7.3327H10.9827C10.8634 5.1535 10.1626 3.12914 9.03291 1.41211C12.0092 1.8746 14.3342 4.30588 14.6347 7.3327ZM14.6347 8.66603C14.3342 11.6929 12.0092 14.1242 9.03291 14.5867C10.1626 12.8696 10.8634 10.8453 10.9827 8.66603H14.6347ZM6.35476 8.66603H9.64711C9.53271 10.5213 8.94404 12.2482 8.00091 13.7271C7.05777 12.2482 6.46917 10.5213 6.35476 8.66603ZM6.35476 7.3327C6.46917 5.47749 7.05777 3.75058 8.00091 2.2717C8.94404 3.75058 9.53271 5.47749 9.64711 7.3327H6.35476Z' fill='%23191919'/%3E%3C/svg%3E");
}

.footer__left {
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex: 0 0 clamp(260px, 28vw, 360px);
	justify-content: space-between;
	height: 100%;
}

.footer__address address {
	color: #1A1919;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 140%;
	/* 22.4px */
}

.footer__newsletter-text {
	color: var(--black, #191919);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	opacity: 0.6;
	line-height: 140%;
	/* 22.4px */
	margin: 0 0 24px 0;
}

/* ── CF7 global resets ── */

/* Прибрати авто-відступи навколо форми */
.wpcf7 {
	margin: 0;
}

/* Span-обгортка навколо кожного поля — прозора для layout */
.wpcf7-form-control-wrap {
	display: contents;
}

/* Validation tooltip (display:contents ламає absolute — повертаємо block) */
.wpcf7-not-valid-tip {
	display: block;
	position: static;
	font-size: 12px;
	color: #e53e3e;
	margin-top: 4px;
}

/* Response output */
.wpcf7-response-output {
	margin: 0;
	padding: 0;
	border: none;
}

.footer__newsletter-form form {
	display: flex;
	align-items: stretch;
	gap: 0;
}

/* Приховуємо fieldset з прихованими полями CF7 */
.footer__newsletter-form .hidden-fields-container {
	display: none;
}

/* div-обгортка навколо label+input — займає весь вільний простір */
.footer__newsletter-form .wpcf7-form>div:not(.wpcf7-response-output) {
	flex: 1;
	min-width: 0;
	display: flex;
}

/* label прозора для flex-layout */
.footer__newsletter-form .wpcf7-form label {
	display: flex;
	flex: 1;
	min-width: 0;
}


.footer__newsletter-form input[type="email"] {
	flex: 1;
	width: 100%;
	padding: 6px 14px;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.14px;
	color: var(--color-black);
	background-color: #E2E0DD;
	border: 0px solid var(--color-gray-200);
	border-right: none;
	border-radius: 6px 0 0 6px;
	outline: none;
	transition: border-color 0.15s;
}

.footer__newsletter-form input[type="email"]::placeholder {
	color: #807E7C;

	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.14px;
}

.footer__newsletter-form input[type="email"]:focus {
	border-color: var(--color-gray-400);
}

/* Submit button */
.footer__newsletter-form input[type="submit"] {
	flex-shrink: 0;
	padding: 7px 18px;
	color: var(--color-black);
	background-color: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: 0 6px 6px 0;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.15s, color 0.15s;
	border-radius: 4px;
	border: 1px solid rgba(25, 25, 25, 0.08);
	background: var(--surface-base, #FFF);
	color: var(--black, #191919);
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	/* 133.333% */
	/* shadow-s-subtle */
	box-shadow: 0 20px 51px 0 rgba(26, 26, 18, 0.01), 0 10.481px 24.461px 0 rgba(26, 26, 18, 0.02), 0 3.852px 6.139px 0 rgba(26, 26, 18, 0.03);
color: #807E7C;
leading-trim: both;
text-edge: cap;
font-feature-settings: 'dlig' on;
font-family: Figtree;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.14px;

}

.footer__newsletter-form input[type="submit"]:hover {
	background: var(--white, #FFF);
	border: 1px solid rgba(25, 25, 25, 0.08);
	border: 1px solid var(--black, #191919);
	/* shadow-s-subtle */
	box-shadow: 0 20px 51px 0 rgba(26, 26, 18, 0.01), 0 10.481px 24.461px 0 rgba(26, 26, 18, 0.02), 0 3.852px 6.139px 0 rgba(26, 26, 18, 0.03);
}

/* Submit disabled state — all CF7 forms */
.wpcf7-submit:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

/* Spinner CF7 — приховати */
.footer__newsletter-form .wpcf7-spinner {
	display: none;
}

/* Response output — під формою */
.footer__newsletter-form .wpcf7-response-output {
	flex: 0 0 100%;
	margin-top: 8px;
	font-size: 12px;
}

/* Language switcher (Polylang) */

.footer__language {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer__lang-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.footer__lang-list a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	font-size: var(--fs-body-xs);
	font-weight: var(--fw-medium);
	color: var(--color-black);
	border: 1px solid var(--color-gray-200);
	border-radius: 6px;
	text-decoration: none;
	transition: border-color 0.15s;
}

.wpcf7-not-valid-tip {
	position: absolute;
	top: 100%;
	left: 0;
}

.footer__lang-list a:hover,
.footer__lang-list .current-lang a {
	border-color: var(--color-black);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: transparent !important;
}

/* Navigation columns */

.footer__nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-l);
}

.inline_input {
	border-radius: 10px;
	border: 1px solid rgba(25, 25, 25, 0.04);
	background: #E2E0DD;
	padding: 6px;
}

.footer__nav-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer__newsletter-form .wpcf7-form {
	display: flex;
	flex-direction: column;
}

.footer__nav-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer__nav-link {
	color: var(--black, #191919);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	/* 22.4px */
	text-decoration: none;
	transition: color 0.15s;
}

.footer__legal-link {
	transition: all .2s linear;
}

.footer__nav-link:hover,
.footer__legal-link:hover {
	opacity: 0.6;
}

/* ── Bottom bar ── */

.footer__bottom {
	padding-block: var(--space-m);
}

.footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-m);
	flex-wrap: wrap;
}

.footer__legal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__legal-link {
	color: var(--black, #191919);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	text-decoration: none;
	transition: color 0.15s;
}

.footer__legal-link:hover {
	color: var(--color-black);
}

.footer__copyright {
	color: var(--black, #191919);
	opacity: 0.4;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	margin: 0;
	white-space: nowrap;
}

.section-label {
	color: #1A1919;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.14px;
	text-transform: uppercase;
	border-radius: 6px;
	border: 1px solid rgba(77, 76, 74, 0.10);
	background: #F1EFEC;
	padding: 8px 16px;
}

.section-title {
	font-family: var(--font-base);
	font-size: var(--fs-h2);
	font-weight: var(--fw-medium);
	line-height: var(--lh-h2);
	letter-spacing: var(--ls-h2);
	color: var(--color-black);
	margin: 0;
}



.section-desc p {
	color: var(--black, #191919);
	text-align: center;
	margin: 0;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	opacity: 0.6;
}

.section-desc p+p {
	margin-top: var(--space-s);
}

.animate {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity  0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		visibility 0s linear 0.9s;
}

.animate.from-bottom {
	transform: translateY(22px);
}

.animate.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
	transition:
		opacity  0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
	.animate {
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: none;
	}
}

/* ── Footer responsive ── */



.cky-notice .cky-title {
	color: #1A1919 !important;
	font-size: 26px !important;
	font-style: normal !important;
	font-weight: 500 !important;
	line-height: 124% !important;
	letter-spacing: -0.39px !important;
}

.cky-box-bottom-right {
	width: 454px !important;
}

.cky-consent-container .cky-consent-bar {
	border-radius: 6px !important;
	border: 1px solid var(--8, rgba(25, 25, 25, 0.08)) !important;
	background: var(--off-white-200, #F1EFEC) !important;
	box-shadow: none !important;
	padding: 32px !important;

}

.cky-notice-btn-wrapper {
	flex-direction: column-reverse !important;
	width: 100% !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
}

.cky-consent-bar .cky-notice-des p,
.cky-gpc-wrapper .cky-gpc-desc p,
.cky-preference-body-wrapper .cky-preference-content-wrapper p,
.cky-accordion-header-wrapper .cky-accordion-header-des p,
.cky-cookie-des-table li div:last-child p {
	color: #1A1919 !important;
	font-size: 18px !important;
	font-style: normal !important;
	font-weight: 500 !important;
	line-height: 140% !important;
	opacity: 0.7 !important;
}

.cky-btn {
	margin: 0 !important;
	width: 100% !important;
}

.cky-btn:last-child {
	margin-bottom: 12px !important;
}

.cky-btn-accept {
	display: flex !important;
	height: 48px !important;
	padding: 8px 8px 8px 16px !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 8px !important;
	align-self: stretch !important;
	color: #FFF !important;
	font-size: 16px !important;
	font-style: normal !important;
	font-weight: 500 !important;
	line-height: 20px !important;
	border-radius: 4px !important;
	background: #1A1919 !important;
	border: 0px solid #000 !important;
	box-shadow: 0 9px 14px -5px rgba(255, 255, 255, 0.30) inset, 0 4px 6px 0 rgba(0, 0, 0, 0.14) !important;
}

.cky-btn-customize,
.cky-btn-preferences {
	color: var(--black, #191919) !important;
	font-size: 16px !important;
	font-style: normal !important;
	font-weight: 500 !important;
	line-height: 20px !important;
	/* 125% */
	display: flex !important;
	height: 48px !important;
	padding: 14px 16px !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 12px !important;
	align-self: stretch !important;
	border-radius: 4px !important;
	border: var(--Border-border-base, 1.2px) solid var(--8, rgba(25, 25, 25, 0.08)) !important;
	background: var(--surface-base, #FFF) !important;

	/* shadow-s-subtle */
	box-shadow: 0 20px 51px 0 rgba(26, 26, 18, 0.01), 0 10.481px 24.461px 0 rgba(26, 26, 18, 0.02), 0 3.852px 6.139px 0 rgba(26, 26, 18, 0.03) !important;
}

.cky-btn-preferences {
	margin-bottom: 12px !important;
}

.cky-notice .cky-title {
	padding-left: 60px !important;
	position: relative;
}

.cky-notice .cky-title:before {
	position: absolute;
	left: 0;
	top: 6px;
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='40' height='32' viewBox='0 0 40 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.3925 0.118102C17.8519 0.0763402 18.327 0.0345784 18.4489 0.0257348C18.5707 0.0163998 19.2669 0.00509955 19.9965 0.000677716C20.7261 -0.00374411 21.5112 0.0139432 21.7407 0.0399829C21.9701 0.0660225 22.3017 0.130385 22.4776 0.183447C22.6535 0.236017 22.8299 0.317576 22.8707 0.363759C22.9115 0.410434 22.9405 0.505749 22.9355 0.576498C22.9301 0.646756 22.8776 0.814786 22.8181 0.949897C22.7321 1.14495 22.7149 1.25648 22.7346 1.49034C22.7493 1.66967 22.8098 1.88634 22.8884 2.04307C22.9596 2.18506 23.1119 2.40321 23.2269 2.52849C23.3419 2.65378 23.5684 2.85079 23.7305 2.96674C23.8926 3.08269 24.2135 3.26694 24.4429 3.37601C24.6723 3.48557 25.0595 3.63198 25.3027 3.70126C25.5459 3.77103 25.9439 3.85995 26.1871 3.89926C26.4303 3.93905 26.7177 3.97099 26.8258 3.97099C26.9339 3.97099 27.0719 4.00391 27.1328 4.04469C27.1982 4.08841 27.2434 4.16899 27.2434 4.2417C27.2434 4.31245 27.1274 4.52618 26.9697 4.7453C26.7973 4.98555 26.6602 5.24399 26.5983 5.44543C26.5413 5.63262 26.5 5.90726 26.4995 6.1087C26.499 6.29786 26.5393 6.59658 26.5895 6.77197C26.6391 6.94737 26.757 7.223 26.8513 7.38366C26.9452 7.54481 27.1992 7.8622 27.4153 8.08919C27.6315 8.31568 27.9519 8.59622 28.1278 8.71168C28.3036 8.82763 28.6019 8.99959 28.791 9.09442C28.9802 9.18875 29.3231 9.3332 29.5526 9.41475C29.782 9.49582 30.208 9.60931 30.4984 9.66582C30.7887 9.72281 31.2751 9.78373 31.5792 9.80142C31.935 9.82205 32.3712 9.80879 32.8036 9.76457C33.457 9.69726 33.4777 9.69775 33.5774 9.79356C33.6339 9.8476 33.7052 10.0024 33.7356 10.1375C33.7666 10.2726 33.8526 10.505 33.9267 10.6534C34.0014 10.8017 34.1586 11.0189 34.2761 11.1353C34.394 11.2518 34.6121 11.4277 34.7605 11.5254C34.9089 11.6237 35.1467 11.7549 35.2887 11.8173C35.4307 11.8797 35.7068 11.9725 35.9028 12.0236C36.0988 12.0752 36.4688 12.1425 36.7258 12.1735C37.0687 12.2152 37.3296 12.2162 37.7084 12.1774C37.9919 12.1484 38.3515 12.0924 38.5068 12.0521C38.7367 11.9932 38.8124 11.9912 38.9146 12.0413C38.9991 12.0826 39.0575 12.1676 39.0919 12.2993C39.1204 12.4074 39.1774 12.6393 39.2192 12.8151C39.2806 13.076 39.2988 13.6396 39.3165 15.8859C39.3307 17.661 39.3189 18.8898 39.2835 19.3496C39.2536 19.7417 39.1715 20.316 39.1018 20.627C39.032 20.938 38.9101 21.391 38.8301 21.6342C38.7505 21.8774 38.5471 22.3638 38.3776 22.7151C38.2081 23.0664 37.9531 23.542 37.8101 23.7715C37.6671 24.0009 37.3596 24.4431 37.1257 24.7531C36.8923 25.0631 36.4472 25.5805 36.1362 25.9018C35.8252 26.2236 35.3722 26.6574 35.129 26.8662C34.8858 27.0751 34.4878 27.3954 34.2446 27.5782C34.0014 27.7609 33.5926 28.0488 33.3357 28.2183C33.0787 28.3874 32.5815 28.6871 32.2302 28.8841C31.8789 29.0811 31.2712 29.396 30.8791 29.5837C30.487 29.7714 29.813 30.0632 29.3806 30.2322C28.9483 30.4008 28.285 30.64 27.9067 30.7638C27.5284 30.8877 26.8651 31.0783 26.4327 31.1883C26.0004 31.2984 25.315 31.4532 24.9096 31.5327C24.5043 31.6123 23.8297 31.7214 23.4111 31.776C22.9925 31.83 22.373 31.9032 22.0355 31.9376C21.6542 31.9769 20.7507 32.0005 19.6526 32C18.2995 31.999 17.6932 31.9784 17.0732 31.9111C16.6271 31.8634 15.9751 31.7809 15.6238 31.7278C15.2725 31.6752 14.6977 31.5755 14.3464 31.5067C13.9951 31.4379 13.4094 31.3067 13.0444 31.2154C12.6794 31.124 12.1158 30.9687 11.7915 30.8705C11.4673 30.7717 10.8703 30.5683 10.465 30.418C10.0597 30.2681 9.4298 30.0141 9.06475 29.8544C8.69971 29.6947 8.09195 29.4034 7.71364 29.2074C7.33533 29.0113 6.73838 28.6718 6.38709 28.4532C6.0358 28.2346 5.43885 27.8248 5.06054 27.5433C4.68223 27.2618 4.16291 26.8436 3.90595 26.6142C3.64899 26.3848 3.2471 25.9883 3.01274 25.7333C2.77789 25.4783 2.42071 25.0602 2.21878 24.8032C2.01685 24.5463 1.69307 24.0825 1.49949 23.7715C1.30542 23.4605 1.04011 22.9854 0.909915 22.7151C0.779716 22.4449 0.581225 21.9585 0.469205 21.6342C0.357186 21.31 0.205861 20.7685 0 19.8164V16.2789C0 13.0451 0.00786103 12.6972 0.0913845 12.2256C0.14199 11.9421 0.259414 11.4444 0.352273 11.1201C0.445131 10.7958 0.632813 10.2652 0.769399 9.94095C0.906475 9.61668 1.10791 9.1858 1.21797 8.98289C1.32802 8.78047 1.57614 8.3712 1.76922 8.07396C1.96231 7.77671 2.31999 7.29031 2.56417 6.99307C2.80885 6.69582 3.27117 6.19763 3.59249 5.88613C3.91332 5.57415 4.41937 5.12509 4.71662 4.88729C5.01386 4.64999 5.54448 4.26136 5.89577 4.02405C6.24706 3.78626 6.75557 3.46444 7.0258 3.30919C7.29602 3.15344 7.82124 2.87388 8.19267 2.68817C8.5641 2.50245 9.17235 2.22044 9.54379 2.06174C9.91522 1.90305 10.6173 1.63626 11.1037 1.46922C11.5901 1.30217 12.3084 1.08059 12.7005 0.976428C13.0925 0.87227 13.6782 0.727823 14.0025 0.6556C14.3267 0.582885 15.0342 0.449739 15.5747 0.358846C16.1151 0.267953 16.9332 0.159864 17.3925 0.118102Z' fill='%23191919'/%3E%3Cpath d='M17.7342 0.582701C18.1125 0.553714 18.5105 0.52227 18.6185 0.512443C18.7266 0.502617 19.5005 0.500652 20.3381 0.508513C21.3218 0.517356 21.9482 0.543396 22.1069 0.58221C22.242 0.615128 22.3594 0.644607 22.3673 0.648537C22.3756 0.651977 22.3447 0.820497 22.298 1.02341C22.2258 1.34031 22.2223 1.43661 22.2744 1.71125C22.3078 1.88665 22.4051 2.16228 22.4911 2.32294C22.5771 2.4836 22.7579 2.73564 22.893 2.88254C23.0281 3.02945 23.2713 3.24366 23.4334 3.35863C23.5956 3.4731 23.9051 3.65538 24.1213 3.76298C24.3374 3.87107 24.7241 4.02632 24.9811 4.10837C25.238 4.19042 25.636 4.29311 25.8654 4.33634C26.0949 4.37958 26.344 4.41446 26.4182 4.41397C26.4923 4.41397 26.5533 4.42478 26.5533 4.43805C26.5533 4.45131 26.4771 4.58986 26.3838 4.74512C26.2909 4.90037 26.1691 5.1932 26.1135 5.39611C26.0556 5.60787 26.0128 5.91101 26.0133 6.10852C26.0138 6.29767 26.0472 6.59049 26.087 6.75951C26.1273 6.92852 26.2172 7.19383 26.2865 7.34908C26.3563 7.50434 26.5076 7.76425 26.624 7.92638C26.74 8.08851 26.965 8.35137 27.1242 8.51104C27.2829 8.67023 27.5678 8.90999 27.757 9.04363C27.9461 9.17727 28.3107 9.39246 28.5677 9.52168C28.8246 9.6504 29.2005 9.81548 29.4029 9.8882C29.6058 9.96091 30.048 10.0783 30.3855 10.1491C30.9387 10.2655 31.0945 10.2778 31.9577 10.2709C32.4849 10.2665 32.99 10.2572 33.0804 10.2493C33.2406 10.236 33.2474 10.2434 33.328 10.5058C33.3737 10.6542 33.4646 10.8644 33.5294 10.9725C33.5943 11.0806 33.7152 11.2536 33.7977 11.3567C33.8802 11.4599 34.0694 11.6402 34.2178 11.7576C34.3662 11.8751 34.6978 12.0706 34.9548 12.192C35.2117 12.3128 35.6097 12.4612 35.8391 12.5212C36.1383 12.5988 36.4592 12.6366 36.9691 12.6543C37.3971 12.669 37.8191 12.6563 38.0255 12.6229C38.2146 12.5919 38.4303 12.556 38.5045 12.5433C38.6165 12.5241 38.6485 12.5433 38.6912 12.6553C38.7197 12.7295 38.7678 13.0002 38.7983 13.2571C38.8391 13.6055 38.8386 13.8988 38.7963 14.4117C38.7649 14.79 38.6937 15.3207 38.6376 15.5909C38.5816 15.8611 38.4367 16.3809 38.3153 16.7455C38.194 17.11 37.9473 17.7075 37.7665 18.072C37.5862 18.4366 37.2246 19.0556 36.9628 19.4477C36.7014 19.8398 36.2784 20.4033 36.0229 20.7006C35.7679 20.9978 35.2957 21.4965 34.9744 21.809C34.6526 22.1214 34.1686 22.5528 33.8984 22.7675C33.6282 22.9822 33.1973 23.3035 32.9404 23.4814C32.6834 23.6593 32.2196 23.9555 31.9086 24.1393C31.5976 24.3235 31.0007 24.6458 30.5821 24.8561C30.1635 25.0664 29.5218 25.3597 29.1572 25.5076C28.7927 25.6555 28.2616 25.8574 27.9781 25.9557C27.6946 26.0539 27.1635 26.221 26.7989 26.3261C26.4344 26.4312 25.9259 26.5644 25.6689 26.6214C25.4119 26.6789 24.9368 26.7801 24.6126 26.8464C24.2883 26.9127 23.5921 27.0203 23.0649 27.0857C22.5378 27.151 21.6534 27.2306 21.0997 27.263C20.488 27.2989 19.7161 27.3092 19.1344 27.2891C18.6072 27.2714 17.8447 27.2247 17.4394 27.1854C17.0341 27.1466 16.4484 27.0803 16.1374 27.0375C15.8264 26.9953 15.34 26.9172 15.0565 26.8646C14.773 26.8115 14.2866 26.7108 13.9756 26.6405C13.6646 26.5703 13.134 26.4367 12.7965 26.3433C12.4584 26.2504 11.9725 26.1055 11.7156 26.022C11.4586 25.938 10.9172 25.7424 10.5119 25.5867C10.1065 25.4309 9.59801 25.2221 9.38183 25.1224C9.16565 25.0231 8.72347 24.8084 8.3992 24.6453C8.07493 24.4827 7.56642 24.2051 7.26918 24.0287C6.97193 23.8528 6.56267 23.5973 6.36025 23.4613C6.15733 23.3252 5.81489 23.0805 5.59871 22.9179C5.38253 22.7547 4.99587 22.4413 4.73891 22.2212C4.48195 22.0011 4.03043 21.5692 3.73564 21.2607C3.44036 20.9526 3.06697 20.5345 2.90581 20.3321C2.74466 20.1292 2.43612 19.6983 2.22043 19.374C2.00474 19.0497 1.66574 18.4528 1.46774 18.0475C1.26974 17.6421 1.01769 17.0339 0.907638 16.6963C0.798075 16.3583 0.663455 15.8498 0.608919 15.5663C0.554383 15.2828 0.485599 14.763 0.455629 14.4117C0.415832 13.9435 0.415832 13.6158 0.455629 13.1834C0.48609 12.8592 0.557331 12.3507 0.614323 12.0534C0.671807 11.7562 0.816745 11.2143 0.937117 10.8497C1.05749 10.4847 1.29332 9.90981 1.46086 9.57228C1.6284 9.23426 1.88437 8.76997 2.02882 8.54052C2.17376 8.31059 2.45037 7.91311 2.64296 7.65616C2.83605 7.3992 3.25956 6.91525 3.58383 6.57969C3.90859 6.24461 4.4284 5.75821 4.73891 5.49879C5.04942 5.23938 5.55842 4.8478 5.86893 4.62818C6.17944 4.40906 6.72136 4.05679 7.07265 3.84601C7.42394 3.63475 8.10933 3.26872 8.59573 3.03289C9.08213 2.79706 9.84514 2.46051 10.2908 2.28461C10.7364 2.10872 11.4665 1.85422 11.9121 1.71911C12.3577 1.584 12.9773 1.40664 13.2878 1.32557C13.5988 1.24401 14.1844 1.11086 14.5898 1.02931C14.9951 0.947748 15.7134 0.825411 16.1865 0.7581C16.6592 0.690299 17.3559 0.611689 17.7342 0.582701Z' fill='%23F7F5F2'/%3E%3Cpath d='M38.165 18.3177C38.3586 17.9256 38.5757 17.4073 38.647 17.1655C38.7629 16.773 38.7806 16.7411 38.8116 16.8708C38.8307 16.9504 38.8352 17.6569 38.8214 18.4405C38.8003 19.6595 38.7816 19.9361 38.6897 20.3566C38.6313 20.6269 38.5158 21.0577 38.4333 21.3147C38.3512 21.5717 38.192 21.9912 38.079 22.2482C37.9665 22.5052 37.7174 22.9803 37.5253 23.3045C37.3332 23.6288 37.0242 24.097 36.8389 24.3451C36.6537 24.5927 36.3034 25.0128 36.0602 25.2786C35.817 25.5439 35.3969 25.9689 35.1267 26.2229C34.8565 26.4774 34.348 26.9009 33.9967 27.1648C33.6454 27.4286 33.0485 27.8354 32.6701 28.0693C32.2918 28.3027 31.6177 28.678 31.1716 28.9035C30.7255 29.1291 30.0185 29.4558 29.5994 29.6302C29.1808 29.8046 28.462 30.0709 28.0027 30.2212C27.5433 30.3716 26.8358 30.5843 26.4304 30.6934C26.0251 30.803 25.2842 30.9685 24.7845 31.0624C24.2849 31.1557 23.5219 31.2771 23.0895 31.3316C22.6572 31.3862 21.9167 31.4569 21.4436 31.4888C20.9164 31.5242 20.0321 31.536 19.159 31.5198C18.3753 31.5051 17.4025 31.4574 16.9972 31.4132C16.5919 31.369 15.9728 31.2889 15.6215 31.2353C15.2702 31.1813 14.7067 31.082 14.3687 31.0147C14.0311 30.9469 13.4121 30.8025 12.993 30.6934C12.5744 30.5843 11.889 30.3839 11.4699 30.2473C11.0513 30.1107 10.3989 29.8773 10.0205 29.729C9.64223 29.5806 8.97895 29.2887 8.5466 29.0809C8.11424 28.8726 7.51729 28.5626 7.22005 28.3911C6.9228 28.2201 6.40348 27.8963 6.06546 27.6718C5.72792 27.4473 5.24152 27.0955 4.98457 26.8901C4.7281 26.6843 4.2869 26.302 4.00488 26.0402C3.72238 25.7788 3.2915 25.3302 3.04682 25.0433C2.80215 24.7568 2.47641 24.3476 2.32361 24.1344C2.17032 23.9211 1.95119 23.5919 1.83622 23.4028C1.72076 23.2136 1.51097 22.8265 1.36947 22.543C1.22798 22.2595 1.02408 21.7731 0.916973 21.4621C0.809375 21.1511 0.676229 20.6873 0.62071 20.4303C0.565192 20.1734 0.494934 19.687 0.464472 19.3494C0.434011 19.0114 0.416323 18.3044 0.439907 16.8192L0.655594 17.3842C0.774 17.6952 0.965613 18.1374 1.08107 18.3668C1.19653 18.5963 1.43089 19.0168 1.60236 19.3008C1.77383 19.5843 2.07254 20.0265 2.26661 20.2834C2.46068 20.5399 2.81541 20.9708 3.05517 21.241C3.29494 21.5112 3.74498 21.9647 4.055 22.2482C4.36551 22.5317 4.80671 22.91 5.03517 23.0888C5.26412 23.2677 5.72792 23.6013 6.06546 23.8312C6.40348 24.0607 6.91199 24.382 7.19548 24.5451C7.47946 24.7077 8.02089 24.9961 8.3992 25.1858C8.77751 25.3749 9.29733 25.6186 9.55379 25.7272C9.81075 25.8358 10.2529 26.0122 10.5364 26.1198C10.8204 26.2274 11.3731 26.419 11.7647 26.5452C12.1568 26.6715 12.8751 26.8724 13.3615 26.9909C13.8479 27.1098 14.5554 27.2635 14.9337 27.3333C15.312 27.4026 15.9532 27.5018 16.3585 27.5539C16.7638 27.606 17.3942 27.6757 17.7587 27.7092C18.1233 27.7426 19.0745 27.7681 19.8714 27.7661C20.825 27.7637 21.5979 27.7352 22.1314 27.6821C22.5776 27.6379 23.2516 27.5559 23.63 27.5003C24.0083 27.4448 24.6386 27.3338 25.0302 27.2537C25.4223 27.1736 26.0413 27.0302 26.4059 26.9353C26.7704 26.8405 27.4671 26.6288 27.9535 26.4652C28.4399 26.3011 29.1474 26.0348 29.5257 25.8736C29.904 25.7125 30.5123 25.4309 30.8768 25.2477C31.2414 25.0649 31.7941 24.7647 32.1051 24.5805C32.4161 24.3962 32.8028 24.156 32.9649 24.0469C33.1271 23.9373 33.4258 23.7271 33.6282 23.5797C33.8311 23.4318 34.262 23.0864 34.5863 22.8117C34.9105 22.5371 35.4387 22.0384 35.7595 21.7033C36.0808 21.3678 36.5147 20.8725 36.7235 20.6023C36.9328 20.3321 37.2634 19.8678 37.4585 19.5705C37.6531 19.2733 37.9709 18.7097 38.165 18.3177Z' fill='%23F7F5F2'/%3E%3Cpath d='M12.3822 3.78631C12.5173 3.71851 12.7163 3.634 12.8244 3.59863C12.9511 3.55687 13.2297 3.53771 13.6105 3.54458C14.1558 3.55392 14.2236 3.5662 14.5194 3.70623C14.6953 3.78926 14.9051 3.91258 14.9861 3.97989C15.0672 4.04671 15.1871 4.21081 15.2524 4.34395C15.3315 4.50412 15.3713 4.66822 15.3703 4.83134C15.3694 4.97775 15.3286 5.1561 15.2696 5.27352C15.2146 5.38161 15.0736 5.55701 14.9552 5.66362C14.8373 5.76975 14.6186 5.91026 14.4703 5.97512C14.3219 6.03997 14.0119 6.11711 13.7824 6.14708C13.4655 6.18786 13.2823 6.18638 13.0209 6.14069C12.8317 6.10728 12.5551 6.02474 12.4067 5.95694C12.2584 5.88865 12.0633 5.76238 11.9734 5.6764C11.884 5.58993 11.7705 5.45285 11.7218 5.37178C11.6727 5.29072 11.6187 5.14136 11.602 5.04015C11.5853 4.93893 11.599 4.75174 11.6329 4.62449C11.6727 4.47366 11.7715 4.30858 11.9154 4.15136C12.0373 4.01821 12.2471 3.85411 12.3822 3.78631Z' fill='%23191919'/%3E%3Cpath d='M17.1971 7.53357C17.4403 7.46576 17.794 7.39158 17.9832 7.36799C18.1723 7.34441 18.4489 7.3223 18.5973 7.31886C18.7457 7.31591 19.0557 7.33458 19.2851 7.36111C19.5146 7.38715 19.8796 7.45299 20.0958 7.50753C20.312 7.56157 20.7154 7.71683 20.9925 7.85243C21.3826 8.04306 21.5722 8.17326 21.8356 8.43022C22.092 8.68029 22.2212 8.85815 22.3637 9.1549C22.544 9.53027 22.5524 9.57007 22.5524 10.0417C22.5524 10.5109 22.5435 10.5542 22.3726 10.9015C22.2738 11.103 22.0861 11.3869 21.9549 11.5329C21.8243 11.6788 21.5845 11.8915 21.4224 12.006C21.2602 12.1205 21.017 12.2689 20.8819 12.3362C20.7468 12.404 20.4594 12.518 20.2432 12.5907C20.027 12.6629 19.6291 12.7567 19.3588 12.7985C19.012 12.852 18.6872 12.8663 18.2534 12.8466C17.8338 12.8275 17.4835 12.7793 17.1479 12.6934C16.8777 12.6246 16.524 12.5062 16.3618 12.4305C16.1997 12.3548 15.9344 12.2035 15.7722 12.0935C15.6101 11.9839 15.3767 11.7864 15.2534 11.6547C15.1301 11.523 14.9719 11.3152 14.9016 11.1939C14.8309 11.072 14.738 10.8509 14.6953 10.7025C14.652 10.5537 14.6167 10.2997 14.6162 10.1375C14.6157 9.9754 14.6589 9.69879 14.7115 9.52339C14.7724 9.32097 14.8943 9.08858 15.0441 8.88861C15.1743 8.71518 15.3915 8.47689 15.5266 8.35947C15.6617 8.24204 15.9933 8.03569 16.2636 7.90107C16.5338 7.76645 16.9539 7.60088 17.1971 7.53357Z' fill='%23191919'/%3E%3Cpath d='M6.80575 11.8856C7.04207 11.7702 7.38304 11.6513 7.59185 11.611C7.8213 11.5668 8.14606 11.5471 8.45165 11.5589C8.80245 11.5727 9.04811 11.613 9.31145 11.7004C9.51388 11.7677 9.81259 11.8994 9.97473 11.9927C10.1369 12.0866 10.355 12.26 10.4597 12.3784C10.5643 12.4973 10.696 12.6934 10.752 12.8152C10.8262 12.9759 10.8547 13.137 10.8552 13.4048C10.8561 13.7217 10.8355 13.8111 10.7102 14.0415C10.6301 14.1889 10.4425 14.4287 10.2941 14.5741C10.1364 14.7284 9.8804 14.9092 9.67994 15.007C9.49078 15.0993 9.18126 15.2074 8.9921 15.2472C8.80294 15.2865 8.43839 15.3194 8.18143 15.3194C7.92447 15.3194 7.55992 15.286 7.37076 15.2457C7.18161 15.2054 6.88289 15.1042 6.70749 15.0202C6.51931 14.9308 6.2712 14.7544 6.10415 14.5913C5.93858 14.4292 5.77595 14.2115 5.71307 14.068C5.63642 13.8922 5.60547 13.7246 5.60547 13.4785C5.60547 13.2323 5.63642 13.0648 5.71307 12.8889C5.77595 12.7454 5.93858 12.5283 6.10415 12.3661C6.29331 12.1819 6.52816 12.0207 6.80575 11.8856Z' fill='%23191919'/%3E%3Cpath d='M27.9568 15.1317C28.146 15.0752 28.4226 15.0089 28.571 14.9844C28.7194 14.9593 29.0402 14.9367 29.2834 14.9337C29.5266 14.9308 29.9246 14.9632 30.1678 15.0055C30.411 15.0482 30.7755 15.1475 30.9784 15.2256C31.1808 15.3042 31.4796 15.4545 31.6417 15.5602C31.8038 15.6653 32.0544 15.8815 32.1988 16.0397C32.3433 16.1984 32.5172 16.4499 32.586 16.5983C32.6543 16.7467 32.7334 17.0012 32.7609 17.1633C32.7968 17.3751 32.7943 17.5412 32.753 17.7529C32.7211 17.915 32.644 18.1582 32.5811 18.2934C32.5182 18.4285 32.3806 18.6432 32.2755 18.7704C32.1699 18.8977 31.962 19.0942 31.8137 19.2072C31.6653 19.3202 31.3666 19.4981 31.1504 19.6017C30.9342 19.7059 30.5805 19.839 30.3643 19.898C30.0356 19.9879 29.843 20.0051 29.1851 20.0041C28.539 20.0031 28.3293 19.9845 28.006 19.898C27.7898 19.84 27.436 19.7049 27.2199 19.5983C27.0037 19.4912 26.7163 19.3109 26.5812 19.1979C26.446 19.0844 26.2716 18.9119 26.1935 18.8146C26.1159 18.7169 25.9847 18.4938 25.9022 18.3179C25.7941 18.088 25.7459 17.9023 25.7302 17.6546C25.7155 17.4203 25.7351 17.2169 25.7926 17.0159C25.8388 16.8538 25.9685 16.5792 26.0815 16.4052C26.194 16.2313 26.419 15.9798 26.5812 15.8456C26.7433 15.712 27.0415 15.5194 27.2444 15.4182C27.4469 15.317 27.7677 15.1878 27.9568 15.1317Z' fill='%23191919'/%3E%3Cpath d='M14.7159 19.1615C14.8378 19.0922 15.0363 19.0072 15.1581 18.9728C15.2927 18.9345 15.5806 18.9163 15.8951 18.9252C16.3269 18.9375 16.4552 18.9606 16.6812 19.0667C16.8295 19.136 17.0398 19.2902 17.1479 19.4096C17.2727 19.5467 17.368 19.7147 17.4088 19.8685C17.457 20.0513 17.4599 20.1658 17.4211 20.3323C17.3906 20.4615 17.2924 20.6428 17.1848 20.7691C17.0836 20.8875 16.9121 21.0359 16.804 21.0988C16.6959 21.1616 16.4969 21.2466 16.3618 21.2879C16.2267 21.3292 15.9501 21.3631 15.7477 21.3631C15.5448 21.3631 15.2573 21.3297 15.109 21.2894C14.9606 21.2491 14.7503 21.1641 14.6422 21.1002C14.5341 21.0369 14.374 20.8988 14.286 20.7937C14.1946 20.6841 14.1023 20.4979 14.0693 20.3569C14.0197 20.1446 14.0246 20.0778 14.1037 19.8656C14.1543 19.7304 14.2629 19.5452 14.3455 19.4538C14.4275 19.3629 14.5941 19.2313 14.7159 19.1615Z' fill='%23191919'/%3E%3Cpath d='M12.7227 4.14719C12.8308 4.10346 13.0298 4.04843 13.1649 4.02534C13.3 4.00225 13.4435 3.98112 13.4843 3.97817C13.5251 3.97473 13.696 3.99439 13.865 4.02141C14.0341 4.04794 14.2773 4.12213 14.4055 4.18551C14.5337 4.24938 14.6895 4.36533 14.7514 4.44345C14.8128 4.52206 14.8762 4.65226 14.8914 4.73332C14.9081 4.82078 14.8889 4.94066 14.8447 5.02811C14.8039 5.10918 14.7077 5.23397 14.631 5.30521C14.5544 5.37646 14.4251 5.46735 14.3441 5.50714C14.263 5.54743 14.0748 5.60836 13.9265 5.64275C13.7663 5.6796 13.5059 5.69532 13.2878 5.68009C13.0662 5.66535 12.821 5.61229 12.6736 5.54792C12.5385 5.48897 12.3557 5.37007 12.2673 5.2836C12.1705 5.18877 12.0953 5.05808 12.0786 4.95442C12.0619 4.85419 12.0781 4.72301 12.1165 4.63997C12.1528 4.56136 12.2594 4.43657 12.3543 4.36238C12.4491 4.28819 12.6146 4.1914 12.7227 4.14719Z' fill='%23F7F5F2'/%3E%3Cpath d='M17.5131 7.9588C17.77 7.90132 18.0574 7.84482 18.1518 7.83352C18.2461 7.82222 18.5777 7.82222 18.8887 7.83401C19.211 7.8458 19.6282 7.89641 19.8591 7.95193C20.0821 8.00597 20.3917 8.10079 20.5469 8.16319C20.7022 8.22559 20.9621 8.3661 21.1242 8.47518C21.2864 8.58425 21.5138 8.78176 21.6298 8.91441C21.7462 9.04658 21.8882 9.2544 21.9462 9.37625C22.0155 9.52168 22.0582 9.72361 22.071 9.96582C22.0862 10.2611 22.068 10.3933 21.9791 10.6291C21.8921 10.8615 21.7899 11.002 21.4966 11.2924C21.2898 11.4968 20.993 11.7311 20.8294 11.8181C20.6673 11.9046 20.402 12.021 20.2399 12.0775C20.0777 12.134 19.8016 12.2136 19.6257 12.2539C19.4498 12.2947 19.074 12.3413 18.7905 12.3571C18.4864 12.3742 18.0933 12.362 17.8324 12.3271C17.5892 12.2942 17.1912 12.2028 16.948 12.1242C16.7048 12.0456 16.3953 11.9178 16.2602 11.8402C16.1251 11.7631 15.8819 11.5778 15.7198 11.429C15.537 11.2614 15.3699 11.0487 15.2795 10.8694C15.167 10.6453 15.1302 10.4969 15.1154 10.2115C15.1012 9.92701 15.1199 9.78158 15.1975 9.57277C15.2579 9.41015 15.4029 9.18513 15.562 9.00776C15.707 8.84563 15.9566 8.62552 16.1167 8.51841C16.2764 8.41081 16.5511 8.26489 16.727 8.19316C16.9028 8.12143 17.2561 8.01629 17.5131 7.9588Z' fill='%23F7F5F2'/%3E%3Cpath d='M6.97436 12.3148C7.13649 12.2391 7.4131 12.1458 7.5885 12.107C7.7639 12.0687 8.06262 12.0357 8.25178 12.0343C8.44093 12.0323 8.75046 12.0642 8.93962 12.105C9.12877 12.1453 9.39949 12.2332 9.54148 12.3006C9.68347 12.3674 9.90652 12.5275 10.0377 12.6558C10.1885 12.8032 10.2971 12.9619 10.3325 13.0857C10.3634 13.1938 10.388 13.3598 10.388 13.4542C10.388 13.5485 10.3453 13.7146 10.2932 13.8226C10.2416 13.9307 10.0981 14.113 9.97482 14.228C9.8515 14.3429 9.63974 14.4923 9.50463 14.5596C9.36952 14.6274 9.12091 14.7193 8.9519 14.764C8.76864 14.8126 8.45666 14.8456 8.17808 14.8456C7.8995 14.8456 7.58752 14.8126 7.40426 14.764C7.23525 14.7193 6.98664 14.6274 6.85153 14.5596C6.71642 14.4923 6.52432 14.3538 6.42507 14.2525C6.32533 14.1513 6.20447 13.9799 6.15583 13.8718C6.10719 13.7637 6.0669 13.5814 6.06641 13.4664C6.06592 13.3485 6.11358 13.1584 6.17597 13.0287C6.2369 12.9029 6.37496 12.7221 6.48304 12.6263C6.59113 12.531 6.81223 12.391 6.97436 12.3148Z' fill='%23F7F5F2'/%3E%3Cpath d='M27.757 15.7078C27.9461 15.6346 28.2556 15.5398 28.4448 15.4975C28.6949 15.442 28.9636 15.4263 29.4274 15.441C29.8819 15.4553 30.1723 15.4916 30.4346 15.5663C30.637 15.6243 30.9466 15.7412 31.1225 15.8262C31.3249 15.9245 31.5602 16.0989 31.7656 16.3023C32.0113 16.5455 32.1164 16.6944 32.2004 16.9179C32.2874 17.1493 32.3065 17.2815 32.2893 17.5321C32.2756 17.7311 32.2245 17.9349 32.1547 18.0725C32.0923 18.1944 31.9842 18.3688 31.914 18.4607C31.8432 18.5525 31.6531 18.7284 31.491 18.8522C31.3288 18.9755 31.0193 19.1505 30.8031 19.2399C30.5869 19.3298 30.2219 19.4379 29.9924 19.4806C29.6923 19.5361 29.4093 19.5504 28.9853 19.5322C28.661 19.518 28.263 19.4708 28.1009 19.4271C27.9387 19.3838 27.64 19.2664 27.4376 19.1662C27.2347 19.0664 26.9473 18.8704 26.7989 18.7319C26.6505 18.5928 26.4638 18.3599 26.3847 18.2145C26.2757 18.0136 26.2359 17.8667 26.2201 17.6058C26.2044 17.3429 26.2231 17.1985 26.2997 16.9916C26.3548 16.8432 26.4967 16.6109 26.6156 16.4757C26.7345 16.3406 26.9625 16.1426 27.1222 16.0355C27.2824 15.9284 27.5678 15.781 27.757 15.7078Z' fill='%23F7F5F2'/%3E%3Cpath d='M15.0196 19.5401C15.1208 19.4895 15.2869 19.4271 15.3881 19.401C15.4893 19.375 15.705 19.3632 15.8672 19.375C16.0293 19.3868 16.2504 19.4226 16.3585 19.4541C16.4666 19.4855 16.6434 19.5951 16.7515 19.6973C16.9245 19.8609 16.948 19.91 16.948 20.1046C16.948 20.2834 16.9195 20.3561 16.8006 20.4814C16.7196 20.5664 16.5756 20.6765 16.4813 20.7256C16.387 20.7747 16.1659 20.8411 15.99 20.873C15.7202 20.9221 15.621 20.9182 15.3513 20.8499C15.1754 20.8057 14.9558 20.7207 14.8624 20.6613C14.7696 20.6023 14.6536 20.4873 14.605 20.4063C14.5563 20.3252 14.5165 20.1979 14.516 20.1238C14.516 20.0402 14.5775 19.9203 14.6757 19.8103C14.7637 19.7125 14.9184 19.5907 15.0196 19.5401Z' fill='%23F7F5F2'/%3E%3C/svg%3E%0A");
	display: block;
	width: 40px;
	height: 32px;
	background-size: 100%;
}

.cky-notice-des P:last-child,
.cky-preference-content-wrapper p:last-child,
.cky-cookie-des-table li div:last-child p:last-child,
.cky-gpc-wrapper .cky-gpc-desc p:last-child {
	padding-left: 60px;
}
.wpcf7-response-output{
	display: none !important;
}

@media (max-width: 768px) {
	.footer__top-inner {
		grid-template-columns: 1fr;
	}

	.footer__middle-inner {
		grid-template-columns: 1fr;
	}

	.footer__left {
		flex: none;
		width: 100%;
	}

	.footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer__info {
		grid-template-columns: 1fr;
	}

	.footer__nav {
		display: flex;
		flex-wrap: wrap;
		order: -1;
	}

	.container {
		padding-inline: 20px;
	}

	.footer__nav-col {
		width: 46%;
		gap: 16px;
	}

	.footer__nav .footer__nav-col:nth-child(2) {
		order: -1;
		width: 100%;
	}

	.footer__bottom-inner {
		gap: 0;
	}

	.site-footer {
		margin-left: 8px;
		width: calc(100% - 16px);
	}

	.footer__top {
		overflow: hidden;
	}

	.footer__top:before {
		height: 120px;
		width: 300px;
	}

	.footer__brand {
		width: 50px;
		height: 50px;
	}

	.footer__top-inner {
		gap: 0;
	}

	footer .container {
		padding-inline: 12px;
	}

	.footer__legal {
		padding-bottom: 40px;
		margin-bottom: 20px;
		border-bottom: 1px solid var(--gray-100, #E0DEDB);
	}

	.footer__bottom {
		padding-bottom: 20px;
		padding-top: 0;
		/* border-top: 1px solid var(--gray-100, #E0DEDB); */
	}

	.footer__legal {
		width: 100%;
		padding-top: 40px;
		border-top: 1px solid var(--gray-100, #E0DEDB);
	}

	.footer__left {
		gap: 32px;
	}

	.footer__language {
		gap: 16px;
	}

	.footer__legal-link {
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: 140%;
		/* 22.4px */
	}

	.footer__legal ul {
		gap: 14px;
		flex-direction: column;
	}

	.btn {
		padding: 14px 16px;
	}

	.cky-consent-container .cky-consent-bar {
		padding: 20px !important;
	}

	.cky-notice-btn-wrapper .cky-btn-customize {
		margin-bottom: 16px !important;
	}

	.cky-consent-bar .cky-notice-des p,
	.cky-gpc-wrapper .cky-gpc-desc p,
	.cky-preference-body-wrapper .cky-preference-content-wrapper p,
	.cky-accordion-header-wrapper .cky-accordion-header-des p,
	.cky-cookie-des-table li div:last-child p {
		color: #1A1919 !important;
		font-size: 15px !important;
		font-style: normal !important;
		font-weight: 500 !important;
		line-height: 140% !important;
		opacity: 0.7 !important;
		margin-bottom: 16px !important;
	}

	.cky-notice .cky-title {
		color: #1A1919 !important;
		font-size: 22px !important;
		font-style: normal !important;
		font-weight: 500 !important;
		line-height: 124% !important;
		letter-spacing: -0.39px !important;
	}

	.section-title {
		font-size: 40px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		letter-spacing: -0.8px;
	}

	.footer__info {
		margin-top: 40px;
	}

	.footer__top-inner {
		padding-top: 0;
	}

	.footer__brand img {
		width: 50px;
		height: 50px;
	}

	.footer__brand {
		width: 100%;
		height: auto;
		padding: 40px 0 30px 0;
		border-bottom: 1px solid var(--gray-100, #E0DEDB);
	}

	.footer__newsletter-text {
		margin-bottom: 16px;
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: 140%;
		border-top: 1px solid var(--gray-100, #E0DEDB);
		padding-top: 40px;
	}

	.cky-consent-container .cky-consent-bar {
		border-radius: 6px !important;
		border: 11px solid #E6AC29 !important;
		padding: 20px 20px 20px 20px !important;
	}

	.cky-notice-btn-wrapper .cky-btn-customize {
		margin-bottom: 0 !important;
	}

	.cky-notice .cky-title:before {
		position: absolute;
		left: 0;
		top: 3px;
		content: '';
		background-image: url("data:image/svg+xml,%3Csvg width='31' height='25' viewBox='0 0 31 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.4194 0.463576C13.7639 0.432255 14.1203 0.400934 14.2116 0.394301C14.303 0.3873 14.8252 0.378825 15.3724 0.375508C15.9196 0.372192 16.5084 0.385457 16.6805 0.404987C16.8526 0.424517 17.1013 0.472789 17.2332 0.512585C17.3651 0.552013 17.4974 0.613182 17.528 0.647819C17.5586 0.682826 17.5803 0.754312 17.5767 0.807374C17.5726 0.860067 17.5332 0.986089 17.4886 1.08742C17.4241 1.23371 17.4112 1.31736 17.426 1.49276C17.437 1.62725 17.4823 1.78976 17.5413 1.9073C17.5947 2.0138 17.7089 2.1774 17.7952 2.27137C17.8814 2.36533 18.0513 2.51309 18.1729 2.60006C18.2945 2.68702 18.5351 2.8252 18.7072 2.90701C18.8793 2.98918 19.1696 3.09899 19.352 3.15094C19.5344 3.20327 19.8329 3.26996 20.0153 3.29944C20.1977 3.32929 20.4133 3.35324 20.4943 3.35324C20.5754 3.35324 20.6789 3.37793 20.7246 3.40852C20.7736 3.44131 20.8075 3.50174 20.8075 3.55628C20.8075 3.60934 20.7206 3.76963 20.6023 3.93398C20.473 4.11417 20.3702 4.30799 20.3237 4.45907C20.281 4.59946 20.25 4.80545 20.2497 4.95652C20.2493 5.09839 20.2795 5.32243 20.3171 5.45398C20.3543 5.58553 20.4427 5.79225 20.5135 5.91275C20.5839 6.03361 20.7744 6.27165 20.9365 6.44189C21.0986 6.61176 21.3389 6.82217 21.4708 6.90876C21.6027 6.99573 21.8264 7.1247 21.9683 7.19581C22.1101 7.26656 22.3673 7.3749 22.5394 7.43607C22.7115 7.49687 23.031 7.58199 23.2488 7.62436C23.4665 7.66711 23.8313 7.7128 24.0594 7.72606C24.3262 7.74154 24.6534 7.73159 24.9777 7.69843C25.4678 7.64795 25.4833 7.64831 25.5581 7.72017C25.6004 7.7607 25.6539 7.87678 25.6767 7.97811C25.6999 8.07944 25.7644 8.25374 25.8201 8.36502C25.8761 8.4763 25.994 8.63917 26.0821 8.7265C26.1705 8.81384 26.3341 8.94575 26.4454 9.01908C26.5567 9.09278 26.735 9.19116 26.8415 9.23796C26.948 9.28476 27.1551 9.3544 27.3021 9.39273C27.4491 9.43142 27.7266 9.4819 27.9193 9.50511C28.1765 9.53644 28.3722 9.53717 28.6563 9.50806C28.8689 9.48632 29.1386 9.44431 29.2551 9.4141C29.4275 9.36988 29.4843 9.36841 29.5609 9.40599C29.6243 9.43694 29.6682 9.50069 29.694 9.59945C29.7153 9.68051 29.7581 9.85444 29.7894 9.98636C29.8355 10.182 29.8491 10.6047 29.8623 12.2894C29.873 13.6207 29.8642 14.5423 29.8377 14.8872C29.8152 15.1813 29.7536 15.612 29.7013 15.8453C29.649 16.0785 29.5576 16.4183 29.4975 16.6007C29.4379 16.7831 29.2853 17.1479 29.1582 17.4113C29.031 17.6748 28.8398 18.0315 28.7326 18.2036C28.6253 18.3757 28.3947 18.7073 28.2193 18.9398C28.0442 19.1723 27.7104 19.5604 27.4771 19.8013C27.2439 20.0427 26.9041 20.3681 26.7217 20.5247C26.5393 20.6813 26.2409 20.9215 26.0585 21.0586C25.8761 21.1957 25.5695 21.4116 25.3768 21.5388C25.1841 21.6655 24.8111 21.8903 24.5477 22.0381C24.2842 22.1858 23.8284 22.422 23.5343 22.5628C23.2403 22.7035 22.7347 22.9224 22.4105 23.0492C22.0862 23.1756 21.5887 23.355 21.305 23.4479C21.0213 23.5407 20.5238 23.6837 20.1995 23.7663C19.8753 23.8488 19.3612 23.9649 19.0572 24.0246C18.7532 24.0843 18.2473 24.1661 17.9334 24.207C17.6194 24.2475 17.1547 24.3024 16.9016 24.3282C16.6156 24.3577 15.938 24.3754 15.1144 24.375C14.0996 24.3743 13.6449 24.3588 13.1799 24.3083C12.8453 24.2726 12.3563 24.2107 12.0929 24.1709C11.8294 24.1314 11.3983 24.0566 11.1348 24.005C10.8713 23.9534 10.4321 23.8551 10.1583 23.7865C9.88452 23.718 9.46186 23.6015 9.21866 23.5278C8.97546 23.4538 8.52775 23.3012 8.22375 23.1885C7.91975 23.0761 7.44735 22.8856 7.17357 22.7658C6.89978 22.6461 6.44396 22.4275 6.16023 22.2805C5.87649 22.1335 5.42878 21.8789 5.16532 21.7149C4.90185 21.5509 4.45414 21.2436 4.17041 21.0325C3.88667 20.8213 3.49718 20.5077 3.30446 20.3357C3.11175 20.1636 2.81032 19.8662 2.63456 19.675C2.45842 19.4837 2.19053 19.1701 2.03908 18.9774C1.88763 18.7847 1.6448 18.4368 1.49962 18.2036C1.35407 17.9703 1.15508 17.614 1.05744 17.4113C0.959787 17.2087 0.810919 16.8439 0.726904 16.6007C0.642889 16.3575 0.529396 15.9514 0.375 15.2373V12.5842C0.375 10.1588 0.380896 9.89792 0.443538 9.54417C0.481492 9.33156 0.569561 8.95828 0.639204 8.71508C0.708848 8.47188 0.84961 8.07392 0.952049 7.83072C1.05486 7.58751 1.20594 7.26435 1.28848 7.11217C1.37102 6.96035 1.5571 6.6534 1.70192 6.43047C1.84673 6.20753 2.11499 5.84273 2.29813 5.6198C2.48163 5.39687 2.82838 5.02322 3.06937 4.7896C3.30999 4.55561 3.68953 4.21882 3.91247 4.04047C4.1354 3.86249 4.53336 3.57102 4.79683 3.39304C5.0603 3.21469 5.44168 2.97333 5.64435 2.85689C5.84702 2.74008 6.24093 2.53041 6.5195 2.39113C6.79808 2.25184 7.25426 2.04033 7.53284 1.92131C7.81141 1.80229 8.33798 1.6022 8.70278 1.47691C9.06758 1.35163 9.60631 1.18544 9.90036 1.10732C10.1944 1.0292 10.6336 0.920867 10.8768 0.8667C11.12 0.812164 11.6507 0.712304 12.056 0.644134C12.4613 0.575965 13.0749 0.494898 13.4194 0.463576Z' fill='%23191919' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M13.6727 0.812453C13.9564 0.790712 14.2549 0.767129 14.336 0.75976C14.417 0.75239 14.9974 0.750916 15.6257 0.756812C16.3634 0.763445 16.8332 0.782974 16.9522 0.812085C17.0536 0.836773 17.1416 0.858882 17.1475 0.86183C17.1538 0.86441 17.1306 0.9908 17.0956 1.14298C17.0414 1.38066 17.0388 1.45288 17.0779 1.65887C17.1029 1.79041 17.1759 1.99714 17.2404 2.11763C17.3049 2.23812 17.4405 2.42716 17.5418 2.53734C17.6431 2.64751 17.8255 2.80817 17.9471 2.8944C18.0687 2.98026 18.3009 3.11696 18.463 3.19766C18.6252 3.27873 18.9152 3.39517 19.1079 3.45671C19.3006 3.51824 19.5991 3.59526 19.7711 3.62769C19.9432 3.66011 20.1301 3.68627 20.1857 3.68591C20.2413 3.68591 20.287 3.69401 20.287 3.70396C20.287 3.71391 20.2299 3.81782 20.1599 3.93427C20.0903 4.05071 19.9989 4.27032 19.9572 4.42251C19.9137 4.58133 19.8817 4.80868 19.8821 4.95681C19.8824 5.09868 19.9075 5.3183 19.9373 5.44506C19.9675 5.57182 20.035 5.7708 20.0869 5.88724C20.1393 6.00368 20.2528 6.19861 20.3401 6.32021C20.427 6.44181 20.5958 6.63895 20.7152 6.75871C20.8342 6.8781 21.0479 7.05792 21.1898 7.15815C21.3317 7.25838 21.6051 7.41977 21.7978 7.51668C21.9905 7.61323 22.2724 7.73704 22.4242 7.79157C22.5764 7.84611 22.9081 7.93418 23.1612 7.98724C23.5761 8.07457 23.6929 8.08378 24.3404 8.07863C24.7358 8.07531 25.1146 8.06831 25.1824 8.06241C25.3025 8.05246 25.3076 8.05799 25.3681 8.25476C25.4023 8.36604 25.4705 8.52376 25.5192 8.60482C25.5678 8.68589 25.6584 8.8156 25.7204 8.89298C25.7823 8.97036 25.9241 9.1056 26.0354 9.19366C26.1467 9.28173 26.3954 9.42839 26.5881 9.51941C26.7809 9.61005 27.0793 9.72133 27.2514 9.76629C27.4758 9.82451 27.7164 9.85289 28.0989 9.86615C28.4199 9.8772 28.7364 9.86762 28.8912 9.84257C29.033 9.81935 29.1948 9.79245 29.2504 9.78287C29.3345 9.7685 29.3584 9.78287 29.3905 9.86689C29.4118 9.92253 29.448 10.1256 29.4708 10.3183C29.5014 10.5795 29.501 10.7995 29.4693 11.1842C29.4457 11.468 29.3923 11.8659 29.3503 12.0686C29.3083 12.2713 29.1996 12.6611 29.1086 12.9345C29.0176 13.2079 28.8326 13.656 28.697 13.9294C28.5617 14.2029 28.2905 14.6672 28.0941 14.9612C27.8981 15.2553 27.5808 15.6779 27.3892 15.9008C27.198 16.1238 26.8439 16.4978 26.6029 16.7321C26.3615 16.9665 25.9986 17.29 25.7959 17.4511C25.5932 17.6121 25.2701 17.8531 25.0773 17.9865C24.8846 18.1199 24.5368 18.3421 24.3035 18.4799C24.0703 18.6181 23.6226 18.8598 23.3086 19.0175C22.9947 19.1752 22.5134 19.3952 22.24 19.5061C21.9666 19.617 21.5683 19.7685 21.3556 19.8422C21.143 19.9159 20.7447 20.0411 20.4713 20.12C20.1979 20.1989 19.8165 20.2987 19.6238 20.3415C19.431 20.3846 19.0747 20.4605 18.8315 20.5102C18.5883 20.56 18.0662 20.6407 17.6708 20.6897C17.2754 20.7387 16.6121 20.7984 16.1968 20.8227C15.7381 20.8496 15.1592 20.8573 14.7229 20.8422C14.3275 20.829 13.7556 20.794 13.4516 20.7645C13.1476 20.7354 12.7084 20.6856 12.4751 20.6536C12.2419 20.6219 11.8771 20.5633 11.6645 20.5239C11.4518 20.4841 11.087 20.4085 10.8538 20.3558C10.6205 20.3031 10.2226 20.2029 9.96942 20.1329C9.7159 20.0633 9.35147 19.9546 9.15875 19.8919C8.96603 19.8289 8.55996 19.6822 8.25596 19.5654C7.95196 19.4486 7.57058 19.292 7.40844 19.2172C7.24631 19.1428 6.91467 18.9818 6.67147 18.8594C6.42827 18.7374 6.04689 18.5293 5.82395 18.397C5.60102 18.265 5.29407 18.0734 5.14226 17.9714C4.99007 17.8693 4.73324 17.6858 4.5711 17.5638C4.40897 17.4415 4.11897 17.2064 3.92625 17.0413C3.73353 16.8762 3.3949 16.5523 3.1738 16.3209C2.95234 16.0899 2.67229 15.7763 2.55143 15.6245C2.43057 15.4723 2.19916 15.1491 2.03739 14.9059C1.87563 14.6627 1.62137 14.215 1.47287 13.911C1.32437 13.607 1.13534 13.1508 1.0528 12.8977C0.970626 12.6442 0.869661 12.2628 0.828759 12.0502C0.787857 11.8375 0.736269 11.4477 0.713792 11.1842C0.683944 10.8331 0.683944 10.5873 0.713792 10.263C0.736638 10.0198 0.790068 9.63843 0.832813 9.41549C0.875926 9.19256 0.984629 8.78612 1.07491 8.5127C1.16519 8.23892 1.34206 7.80779 1.46771 7.55464C1.59337 7.30112 1.78535 6.9529 1.89368 6.78082C2.00239 6.60837 2.20984 6.31026 2.35429 6.11754C2.49911 5.92483 2.81674 5.56187 3.05994 5.31019C3.30351 5.05888 3.69337 4.69408 3.92625 4.49952C4.15913 4.30496 4.54089 4.01128 4.77377 3.84657C5.00665 3.68222 5.41309 3.41802 5.67656 3.25994C5.94003 3.10149 6.45407 2.82697 6.81887 2.65009C7.18367 2.47322 7.75593 2.22081 8.09014 2.08889C8.42436 1.95697 8.97193 1.76609 9.30615 1.66476C9.64036 1.56343 10.105 1.4304 10.3379 1.3696C10.5712 1.30844 11.0104 1.20858 11.3144 1.14741C11.6184 1.08624 12.1571 0.994485 12.512 0.944003C12.8665 0.893152 13.389 0.834194 13.6727 0.812453Z' fill='%23F1EFEC'/%3E%3Cpath d='M28.9958 14.1137C29.141 13.8196 29.3039 13.4309 29.3573 13.2496C29.4443 12.9552 29.4575 12.9312 29.4807 13.0285C29.4951 13.0882 29.4984 13.6181 29.4881 14.2058C29.4723 15.12 29.4583 15.3275 29.3894 15.6429C29.3455 15.8456 29.2589 16.1687 29.197 16.3615C29.1355 16.5542 29.0161 16.8689 28.9313 17.0616C28.847 17.2543 28.6601 17.6106 28.5161 17.8538C28.372 18.097 28.1402 18.4482 28.0013 18.6343C27.8624 18.82 27.5996 19.135 27.4172 19.3344C27.2348 19.5334 26.9198 19.8521 26.7171 20.0426C26.5144 20.2335 26.1331 20.5511 25.8696 20.749C25.6061 20.9469 25.1584 21.252 24.8747 21.4274C24.5909 21.6024 24.0854 21.8839 23.7508 22.0531C23.4162 22.2222 22.886 22.4673 22.5716 22.5981C22.2577 22.7289 21.7186 22.9286 21.3741 23.0414C21.0295 23.1541 20.4989 23.3137 20.1949 23.3955C19.8909 23.4776 19.3352 23.6018 18.9605 23.6722C18.5857 23.7422 18.0135 23.8332 17.6892 23.8741C17.3649 23.915 16.8096 23.9681 16.4548 23.9921C16.0594 24.0186 15.3961 24.0274 14.7413 24.0153C14.1536 24.0042 13.424 23.9685 13.12 23.9353C12.816 23.9021 12.3517 23.8421 12.0882 23.8019C11.8247 23.7614 11.4021 23.6869 11.1486 23.6365C10.8954 23.5856 10.4311 23.4773 10.1168 23.3955C9.80287 23.3137 9.28883 23.1633 8.97451 23.0609C8.66056 22.9585 8.17121 22.7834 7.88748 22.6721C7.60374 22.5609 7.10629 22.342 6.78202 22.1861C6.45775 22.0299 6.01004 21.7974 5.78711 21.6688C5.56417 21.5405 5.17468 21.2977 4.92116 21.1293C4.66801 20.9609 4.30321 20.6971 4.11049 20.543C3.91814 20.3886 3.58724 20.1019 3.37573 19.9055C3.16385 19.7095 2.84069 19.3731 2.65719 19.1579C2.47368 18.9431 2.22937 18.6361 2.11478 18.4762C1.99981 18.3163 1.83546 18.0694 1.74924 17.9275C1.66264 17.7856 1.5053 17.4953 1.39918 17.2827C1.29305 17.07 1.14013 16.7052 1.0598 16.472C0.979102 16.2387 0.879242 15.8909 0.837603 15.6982C0.795964 15.5055 0.743271 15.1407 0.720425 14.8875C0.697578 14.634 0.684313 14.1037 0.702 12.9898L0.863766 13.4136C0.952571 13.6468 1.09628 13.9785 1.18287 14.1505C1.26947 14.3226 1.44524 14.638 1.57384 14.851C1.70244 15.0636 1.92648 15.3953 2.07203 15.588C2.21758 15.7803 2.48363 16.1035 2.66345 16.3062C2.84327 16.5088 3.1808 16.849 3.41332 17.0616C3.6462 17.2742 3.9771 17.5579 4.14845 17.6921C4.32016 17.8262 4.66801 18.0764 4.92116 18.2488C5.17468 18.4209 5.55607 18.6619 5.76868 18.7842C5.98167 18.9062 6.38774 19.1225 6.67147 19.2647C6.95521 19.4066 7.34506 19.5894 7.53741 19.6708C7.73013 19.7523 8.06177 19.8845 8.27439 19.9652C8.48737 20.0459 8.90192 20.1897 9.1956 20.2844C9.48965 20.3791 10.0284 20.5298 10.3932 20.6186C10.758 20.7077 11.2886 20.8231 11.5723 20.8754C11.8561 20.9274 12.3369 21.0018 12.6409 21.0409C12.9449 21.0799 13.4177 21.1322 13.6911 21.1573C13.9645 21.1824 14.6779 21.2015 15.2756 21.2C15.9908 21.1982 16.5705 21.1768 16.9707 21.137C17.3052 21.1039 17.8108 21.0423 18.0945 21.0007C18.3783 20.959 18.851 20.8758 19.1447 20.8157C19.4388 20.7556 19.9031 20.648 20.1765 20.5769C20.4499 20.5058 20.9724 20.347 21.3372 20.2243C21.702 20.1012 22.2326 19.9015 22.5164 19.7806C22.8001 19.6598 23.2563 19.4486 23.5297 19.3112C23.8031 19.1741 24.2177 18.949 24.4509 18.8108C24.6842 18.6726 24.9742 18.4924 25.0958 18.4106C25.2174 18.3284 25.4414 18.1707 25.5932 18.0602C25.7454 17.9493 26.0686 17.6902 26.3118 17.4842C26.555 17.2782 26.9511 16.9042 27.1917 16.6529C27.4327 16.4012 27.7581 16.0298 27.9147 15.8271C28.0717 15.6245 28.3197 15.2763 28.4659 15.0533C28.6119 14.8304 28.8503 14.4077 28.9958 14.1137Z' fill='%23F1EFEC'/%3E%3Cpath d='M13.6727 0.812453C13.9564 0.790712 14.2549 0.767129 14.336 0.75976C14.417 0.75239 14.9974 0.750916 15.6257 0.756812C16.3634 0.763445 16.8332 0.782974 16.9522 0.812085C17.0536 0.836773 17.1416 0.858882 17.1475 0.86183C17.1538 0.86441 17.1306 0.9908 17.0956 1.14298C17.0414 1.38066 17.0388 1.45288 17.0779 1.65887C17.1029 1.79041 17.1759 1.99714 17.2404 2.11763C17.3049 2.23812 17.4405 2.42716 17.5418 2.53734C17.6431 2.64751 17.8255 2.80817 17.9471 2.8944C18.0687 2.98026 18.3009 3.11696 18.463 3.19766C18.6252 3.27873 18.9152 3.39517 19.1079 3.45671C19.3006 3.51824 19.5991 3.59526 19.7711 3.62769C19.9432 3.66011 20.1301 3.68627 20.1857 3.68591C20.2413 3.68591 20.287 3.69401 20.287 3.70396C20.287 3.71391 20.2299 3.81782 20.1599 3.93427C20.0903 4.05071 19.9989 4.27032 19.9572 4.42251C19.9137 4.58133 19.8817 4.80868 19.8821 4.95681C19.8824 5.09868 19.9075 5.3183 19.9373 5.44506C19.9675 5.57182 20.035 5.7708 20.0869 5.88724C20.1393 6.00368 20.2528 6.19861 20.3401 6.32021C20.427 6.44181 20.5958 6.63895 20.7152 6.75871C20.8342 6.8781 21.0479 7.05792 21.1898 7.15815C21.3317 7.25838 21.6051 7.41977 21.7978 7.51668C21.9905 7.61323 22.2724 7.73704 22.4242 7.79157C22.5764 7.84611 22.9081 7.93418 23.1612 7.98724C23.5761 8.07457 23.6929 8.08378 24.3404 8.07863C24.7358 8.07531 25.1146 8.06831 25.1824 8.06241C25.3025 8.05246 25.3076 8.05799 25.3681 8.25476C25.4023 8.36604 25.4705 8.52376 25.5192 8.60482C25.5678 8.68589 25.6584 8.8156 25.7204 8.89298C25.7823 8.97036 25.9241 9.1056 26.0354 9.19366C26.1467 9.28173 26.3954 9.42839 26.5881 9.51941C26.7809 9.61005 27.0793 9.72133 27.2514 9.76629C27.4758 9.82451 27.7164 9.85289 28.0989 9.86615C28.4199 9.8772 28.7364 9.86762 28.8912 9.84257C29.033 9.81935 29.1948 9.79245 29.2504 9.78287C29.3345 9.7685 29.3584 9.78287 29.3905 9.86689C29.4118 9.92253 29.448 10.1256 29.4708 10.3183C29.5014 10.5795 29.501 10.7995 29.4693 11.1842C29.4457 11.468 29.3923 11.8659 29.3503 12.0686C29.3083 12.2713 29.1996 12.6611 29.1086 12.9345C29.0176 13.2079 28.8326 13.656 28.697 13.9294C28.5617 14.2029 28.2905 14.6672 28.0941 14.9612C27.8981 15.2553 27.5808 15.6779 27.3892 15.9008C27.198 16.1238 26.8439 16.4978 26.6029 16.7321C26.3615 16.9665 25.9986 17.29 25.7959 17.4511C25.5932 17.6121 25.2701 17.8531 25.0773 17.9865C24.8846 18.1199 24.5368 18.3421 24.3035 18.4799C24.0703 18.6181 23.6226 18.8598 23.3086 19.0175C22.9947 19.1752 22.5134 19.3952 22.24 19.5061C21.9666 19.617 21.5683 19.7685 21.3556 19.8422C21.143 19.9159 20.7447 20.0411 20.4713 20.12C20.1979 20.1989 19.8165 20.2987 19.6238 20.3415C19.431 20.3846 19.0747 20.4605 18.8315 20.5102C18.5883 20.56 18.0662 20.6407 17.6708 20.6897C17.2754 20.7387 16.6121 20.7984 16.1968 20.8227C15.7381 20.8496 15.1592 20.8573 14.7229 20.8422C14.3275 20.829 13.7556 20.794 13.4516 20.7645C13.1476 20.7354 12.7084 20.6856 12.4751 20.6536C12.2419 20.6219 11.8771 20.5633 11.6645 20.5239C11.4518 20.4841 11.087 20.4085 10.8538 20.3558C10.6205 20.3031 10.2226 20.2029 9.96942 20.1329C9.7159 20.0633 9.35147 19.9546 9.15875 19.8919C8.96603 19.8289 8.55996 19.6822 8.25596 19.5654C7.95196 19.4486 7.57058 19.292 7.40844 19.2172C7.24631 19.1428 6.91467 18.9818 6.67147 18.8594C6.42827 18.7374 6.04689 18.5293 5.82395 18.397C5.60102 18.265 5.29407 18.0734 5.14226 17.9714C4.99007 17.8693 4.73324 17.6858 4.5711 17.5638C4.40897 17.4415 4.11897 17.2064 3.92625 17.0413C3.73353 16.8762 3.3949 16.5523 3.1738 16.3209C2.95234 16.0899 2.67229 15.7763 2.55143 15.6245C2.43057 15.4723 2.19916 15.1491 2.03739 14.9059C1.87563 14.6627 1.62137 14.215 1.47287 13.911C1.32437 13.607 1.13534 13.1508 1.0528 12.8977C0.970626 12.6442 0.869661 12.2628 0.828759 12.0502C0.787857 11.8375 0.736269 11.4477 0.713792 11.1842C0.683944 10.8331 0.683944 10.5873 0.713792 10.263C0.736638 10.0198 0.790068 9.63843 0.832813 9.41549C0.875926 9.19256 0.984629 8.78612 1.07491 8.5127C1.16519 8.23892 1.34206 7.80779 1.46771 7.55464C1.59337 7.30112 1.78535 6.9529 1.89368 6.78082C2.00239 6.60837 2.20984 6.31026 2.35429 6.11754C2.49911 5.92483 2.81674 5.56187 3.05994 5.31019C3.30351 5.05888 3.69337 4.69408 3.92625 4.49952C4.15913 4.30496 4.54089 4.01128 4.77377 3.84657C5.00665 3.68222 5.41309 3.41802 5.67656 3.25994C5.94003 3.10149 6.45407 2.82697 6.81887 2.65009C7.18367 2.47322 7.75593 2.22081 8.09014 2.08889C8.42436 1.95697 8.97193 1.76609 9.30615 1.66476C9.64036 1.56343 10.105 1.4304 10.3379 1.3696C10.5712 1.30844 11.0104 1.20858 11.3144 1.14741C11.6184 1.08624 12.1571 0.994485 12.512 0.944003C12.8665 0.893152 13.389 0.834194 13.6727 0.812453Z' stroke='%23191919' stroke-width='0.4'/%3E%3Cpath d='M28.9958 14.1137C29.141 13.8196 29.3039 13.4309 29.3573 13.2496C29.4443 12.9552 29.4575 12.9312 29.4807 13.0285C29.4951 13.0882 29.4984 13.6181 29.4881 14.2058C29.4723 15.12 29.4583 15.3275 29.3894 15.6429C29.3455 15.8456 29.2589 16.1687 29.197 16.3615C29.1355 16.5542 29.0161 16.8689 28.9313 17.0616C28.847 17.2543 28.6601 17.6106 28.5161 17.8538C28.372 18.097 28.1402 18.4482 28.0013 18.6343C27.8624 18.82 27.5996 19.135 27.4172 19.3344C27.2348 19.5334 26.9198 19.8521 26.7171 20.0426C26.5144 20.2335 26.1331 20.5511 25.8696 20.749C25.6061 20.9469 25.1584 21.252 24.8747 21.4274C24.5909 21.6024 24.0854 21.8839 23.7508 22.0531C23.4162 22.2222 22.886 22.4673 22.5716 22.5981C22.2577 22.7289 21.7186 22.9286 21.3741 23.0414C21.0295 23.1541 20.4989 23.3137 20.1949 23.3955C19.8909 23.4776 19.3352 23.6018 18.9605 23.6722C18.5857 23.7422 18.0135 23.8332 17.6892 23.8741C17.3649 23.915 16.8096 23.9681 16.4548 23.9921C16.0594 24.0186 15.3961 24.0274 14.7413 24.0153C14.1536 24.0042 13.424 23.9685 13.12 23.9353C12.816 23.9021 12.3517 23.8421 12.0882 23.8019C11.8247 23.7614 11.4021 23.6869 11.1486 23.6365C10.8954 23.5856 10.4311 23.4773 10.1168 23.3955C9.80287 23.3137 9.28883 23.1633 8.97451 23.0609C8.66056 22.9585 8.17121 22.7834 7.88748 22.6721C7.60374 22.5609 7.10629 22.342 6.78202 22.1861C6.45775 22.0299 6.01004 21.7974 5.78711 21.6688C5.56417 21.5405 5.17468 21.2977 4.92116 21.1293C4.66801 20.9609 4.30321 20.6971 4.11049 20.543C3.91814 20.3886 3.58724 20.1019 3.37573 19.9055C3.16385 19.7095 2.84069 19.3731 2.65719 19.1579C2.47368 18.9431 2.22937 18.6361 2.11478 18.4762C1.99981 18.3163 1.83546 18.0694 1.74924 17.9275C1.66264 17.7856 1.5053 17.4953 1.39918 17.2827C1.29305 17.07 1.14013 16.7052 1.0598 16.472C0.979102 16.2387 0.879242 15.8909 0.837603 15.6982C0.795964 15.5055 0.743271 15.1407 0.720425 14.8875C0.697578 14.634 0.684313 14.1037 0.702 12.9898L0.863766 13.4136C0.952571 13.6468 1.09628 13.9785 1.18287 14.1505C1.26947 14.3226 1.44524 14.638 1.57384 14.851C1.70244 15.0636 1.92648 15.3953 2.07203 15.588C2.21758 15.7803 2.48363 16.1035 2.66345 16.3062C2.84327 16.5088 3.1808 16.849 3.41332 17.0616C3.6462 17.2742 3.9771 17.5579 4.14845 17.6921C4.32016 17.8262 4.66801 18.0764 4.92116 18.2488C5.17468 18.4209 5.55607 18.6619 5.76868 18.7842C5.98167 18.9062 6.38774 19.1225 6.67147 19.2647C6.95521 19.4066 7.34506 19.5894 7.53741 19.6708C7.73013 19.7523 8.06177 19.8845 8.27439 19.9652C8.48737 20.0459 8.90192 20.1897 9.1956 20.2844C9.48965 20.3791 10.0284 20.5298 10.3932 20.6186C10.758 20.7077 11.2886 20.8231 11.5723 20.8754C11.8561 20.9274 12.3369 21.0018 12.6409 21.0409C12.9449 21.0799 13.4177 21.1322 13.6911 21.1573C13.9645 21.1824 14.6779 21.2015 15.2756 21.2C15.9908 21.1982 16.5705 21.1768 16.9707 21.137C17.3052 21.1039 17.8108 21.0423 18.0945 21.0007C18.3783 20.959 18.851 20.8758 19.1447 20.8157C19.4388 20.7556 19.9031 20.648 20.1765 20.5769C20.4499 20.5058 20.9724 20.347 21.3372 20.2243C21.702 20.1012 22.2326 19.9015 22.5164 19.7806C22.8001 19.6598 23.2563 19.4486 23.5297 19.3112C23.8031 19.1741 24.2177 18.949 24.4509 18.8108C24.6842 18.6726 24.9742 18.4924 25.0958 18.4106C25.2174 18.3284 25.4414 18.1707 25.5932 18.0602C25.7454 17.9493 26.0686 17.6902 26.3118 17.4842C26.555 17.2782 26.9511 16.9042 27.1917 16.6529C27.4327 16.4012 27.7581 16.0298 27.9147 15.8271C28.0717 15.6245 28.3197 15.2763 28.4659 15.0533C28.6119 14.8304 28.8503 14.4077 28.9958 14.1137Z' stroke='%23191919' stroke-width='0.4'/%3E%3Cpath d='M9.66065 3.21431C9.76198 3.16345 9.91122 3.10007 9.99229 3.07354C10.0874 3.04222 10.2963 3.02785 10.5819 3.03301C10.9909 3.04001 11.0417 3.04922 11.2636 3.15424C11.3955 3.21652 11.5528 3.30901 11.6136 3.35949C11.6744 3.4096 11.7643 3.53268 11.8133 3.63254C11.8727 3.75266 11.9025 3.87574 11.9018 3.99807C11.901 4.10788 11.8705 4.24164 11.8262 4.32971C11.785 4.41078 11.6792 4.54233 11.5904 4.62229C11.502 4.70188 11.338 4.80727 11.2267 4.85591C11.1154 4.90455 10.8829 4.9624 10.7108 4.98488C10.4732 5.01546 10.3357 5.01436 10.1397 4.98009C9.99781 4.95503 9.79036 4.89313 9.67907 4.84228C9.56779 4.79106 9.4215 4.69636 9.35407 4.63187C9.28701 4.56702 9.20189 4.46421 9.16541 4.40341C9.12856 4.34261 9.08802 4.23059 9.0755 4.15468C9.06297 4.07877 9.07328 3.93838 9.09871 3.84294C9.12856 3.72982 9.20262 3.60601 9.31059 3.48809C9.40197 3.38823 9.55932 3.26516 9.66065 3.21431Z' fill='%23191919'/%3E%3Cpath d='M13.2718 6.02475C13.4542 5.9739 13.7195 5.91825 13.8614 5.90057C14.0033 5.88288 14.2107 5.8663 14.322 5.86372C14.4333 5.86151 14.6658 5.87551 14.8379 5.89541C15.01 5.91494 15.2837 5.96432 15.4459 6.00522C15.608 6.04575 15.9105 6.16219 16.1184 6.26389C16.4109 6.40687 16.5532 6.50452 16.7507 6.69723C16.943 6.88479 17.0399 7.01818 17.1468 7.24075C17.282 7.52227 17.2883 7.55212 17.2883 7.90587C17.2883 8.25777 17.2817 8.2902 17.1534 8.55072C17.0794 8.7018 16.9386 8.91478 16.8402 9.02422C16.7422 9.13366 16.5624 9.29322 16.4408 9.37907C16.3192 9.46493 16.1368 9.57621 16.0355 9.6267C15.9341 9.67755 15.7186 9.76304 15.5564 9.81757C15.3943 9.87174 15.0958 9.94212 14.8931 9.97344C14.633 10.0136 14.3894 10.0243 14.0641 10.0096C13.7494 9.99518 13.4866 9.95907 13.235 9.89459C13.0323 9.843 12.767 9.75419 12.6454 9.69745C12.5238 9.6407 12.3248 9.5272 12.2032 9.44466C12.0816 9.36249 11.9066 9.21436 11.8141 9.11561C11.7216 9.01685 11.6029 8.86098 11.5502 8.76997C11.4972 8.67858 11.4275 8.51276 11.3955 8.40148C11.3631 8.28983 11.3365 8.09932 11.3362 7.97772C11.3358 7.85612 11.3682 7.64866 11.4076 7.51711C11.4533 7.3653 11.5447 7.191 11.6571 7.04103C11.7548 6.91096 11.9176 6.73224 12.019 6.64417C12.1203 6.5561 12.369 6.40134 12.5717 6.30037C12.7744 6.19941 13.0894 6.07523 13.2718 6.02475Z' fill='%23191919'/%3E%3Cpath d='M5.47834 9.28879C5.65558 9.2022 5.91131 9.11303 6.06791 9.08281C6.24 9.04965 6.48357 9.03491 6.71276 9.04375C6.97586 9.05407 7.16011 9.08429 7.35761 9.14988C7.50943 9.20036 7.73347 9.29911 7.85507 9.36912C7.97667 9.43951 8.14028 9.56958 8.21877 9.65839C8.29725 9.74756 8.39601 9.89459 8.43801 9.98597C8.49366 10.1065 8.51503 10.2273 8.5154 10.4282C8.51613 10.6658 8.50066 10.7329 8.40669 10.9057C8.34663 11.0163 8.20587 11.1961 8.09459 11.3051C7.9763 11.4209 7.78432 11.5565 7.63398 11.6298C7.49211 11.6991 7.25997 11.7801 7.1181 11.81C6.97623 11.8395 6.70281 11.8641 6.5101 11.8641C6.31738 11.8641 6.04396 11.8391 5.90209 11.8089C5.76023 11.7787 5.53619 11.7027 5.40464 11.6397C5.26351 11.5727 5.07742 11.4404 4.95214 11.318C4.82796 11.1964 4.70599 11.0332 4.65882 10.9256C4.60134 10.7937 4.57812 10.668 4.57812 10.4834C4.57812 10.2988 4.60134 10.1732 4.65882 10.0412C4.70599 9.93365 4.82796 9.77077 4.95214 9.64917C5.09401 9.51099 5.27014 9.39013 5.47834 9.28879Z' fill='%23191919'/%3E%3Cpath d='M21.3417 11.7234C21.4835 11.681 21.691 11.6313 21.8023 11.6128C21.9135 11.594 22.1542 11.5771 22.3366 11.5749C22.519 11.5727 22.8174 11.597 22.9998 11.6287C23.1822 11.6607 23.4557 11.7352 23.6078 11.7938C23.7597 11.8527 23.9837 11.9655 24.1053 12.0447C24.2269 12.1236 24.4148 12.2857 24.5232 12.4043C24.6315 12.5234 24.7619 12.712 24.8135 12.8233C24.8647 12.9346 24.9241 13.1255 24.9447 13.2471C24.9716 13.4059 24.9698 13.5304 24.9388 13.6893C24.9149 13.8109 24.857 13.9933 24.8098 14.0946C24.7627 14.1959 24.6595 14.3569 24.5806 14.4524C24.5014 14.5478 24.3455 14.6952 24.2343 14.78C24.123 14.8647 23.8989 14.9981 23.7368 15.0759C23.5747 15.154 23.3094 15.2538 23.1472 15.2981C22.9007 15.3655 22.7563 15.3784 22.2629 15.3777C21.7783 15.3769 21.621 15.3629 21.3785 15.2981C21.2164 15.2546 20.9511 15.1532 20.7889 15.0733C20.6268 14.993 20.4112 14.8577 20.3099 14.773C20.2086 14.6878 20.0777 14.5585 20.0192 14.4856C19.9609 14.4122 19.8625 14.2449 19.8006 14.113C19.7196 13.9406 19.6835 13.8013 19.6717 13.6156C19.6606 13.4398 19.6754 13.2872 19.7185 13.1365C19.7531 13.0149 19.8504 12.8089 19.9351 12.6785C20.0195 12.5481 20.1883 12.3594 20.3099 12.2588C20.4315 12.1586 20.6552 12.0141 20.8073 11.9382C20.9592 11.8623 21.1998 11.7654 21.3417 11.7234Z' fill='%23191919'/%3E%3Cpath d='M11.411 14.7457C11.5023 14.6937 11.6512 14.63 11.7426 14.6042C11.8436 14.5755 12.0595 14.5618 12.2953 14.5685C12.6192 14.5777 12.7154 14.595 12.8849 14.6746C12.9962 14.7265 13.1539 14.8422 13.235 14.9318C13.3286 15.0346 13.4 15.1606 13.4306 15.276C13.4667 15.413 13.469 15.4989 13.4398 15.6238C13.417 15.7207 13.3433 15.8567 13.2626 15.9514C13.1867 16.0402 13.0581 16.1515 12.977 16.1986C12.896 16.2458 12.7467 16.3096 12.6454 16.3405C12.5441 16.3715 12.3366 16.3969 12.1848 16.3969C12.0326 16.3969 11.817 16.3718 11.7057 16.3416C11.5945 16.3114 11.4368 16.2477 11.3557 16.1997C11.2746 16.1522 11.1545 16.0487 11.0885 15.9698C11.02 15.8876 10.9507 15.748 10.926 15.6422C10.8888 15.483 10.8925 15.4329 10.9518 15.2737C10.9898 15.1724 11.0712 15.0335 11.1331 14.965C11.1947 14.8968 11.3196 14.798 11.411 14.7457Z' fill='%23191919'/%3E%3Cpath d='M9.66065 3.21431C9.76198 3.16345 9.91122 3.10007 9.99229 3.07354C10.0874 3.04222 10.2963 3.02785 10.5819 3.03301C10.9909 3.04001 11.0417 3.04922 11.2636 3.15424C11.3955 3.21652 11.5528 3.30901 11.6136 3.35949C11.6744 3.4096 11.7643 3.53268 11.8133 3.63254C11.8727 3.75266 11.9025 3.87574 11.9018 3.99807C11.901 4.10788 11.8705 4.24164 11.8262 4.32971C11.785 4.41078 11.6792 4.54233 11.5904 4.62229C11.502 4.70188 11.338 4.80727 11.2267 4.85591C11.1154 4.90455 10.8829 4.9624 10.7108 4.98488C10.4732 5.01546 10.3357 5.01436 10.1397 4.98009C9.99781 4.95503 9.79036 4.89313 9.67907 4.84228C9.56779 4.79106 9.4215 4.69636 9.35407 4.63187C9.28701 4.56702 9.20189 4.46421 9.16541 4.40341C9.12856 4.34261 9.08802 4.23059 9.0755 4.15468C9.06297 4.07877 9.07328 3.93838 9.09871 3.84294C9.12856 3.72982 9.20262 3.60601 9.31059 3.48809C9.40197 3.38823 9.55932 3.26516 9.66065 3.21431Z' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M13.2718 6.02475C13.4542 5.9739 13.7195 5.91825 13.8614 5.90057C14.0033 5.88288 14.2107 5.8663 14.322 5.86372C14.4333 5.86151 14.6658 5.87551 14.8379 5.89541C15.01 5.91494 15.2837 5.96432 15.4459 6.00522C15.608 6.04575 15.9105 6.16219 16.1184 6.26389C16.4109 6.40687 16.5532 6.50452 16.7507 6.69723C16.943 6.88479 17.0399 7.01818 17.1468 7.24075C17.282 7.52227 17.2883 7.55212 17.2883 7.90587C17.2883 8.25777 17.2817 8.2902 17.1534 8.55072C17.0794 8.7018 16.9386 8.91478 16.8402 9.02422C16.7422 9.13366 16.5624 9.29322 16.4408 9.37907C16.3192 9.46493 16.1368 9.57621 16.0355 9.6267C15.9341 9.67755 15.7186 9.76304 15.5564 9.81757C15.3943 9.87174 15.0958 9.94212 14.8931 9.97344C14.633 10.0136 14.3894 10.0243 14.0641 10.0096C13.7494 9.99518 13.4866 9.95907 13.235 9.89459C13.0323 9.843 12.767 9.75419 12.6454 9.69745C12.5238 9.6407 12.3248 9.5272 12.2032 9.44466C12.0816 9.36249 11.9066 9.21436 11.8141 9.11561C11.7216 9.01685 11.6029 8.86098 11.5502 8.76997C11.4972 8.67858 11.4275 8.51276 11.3955 8.40148C11.3631 8.28983 11.3365 8.09932 11.3362 7.97772C11.3358 7.85612 11.3682 7.64866 11.4076 7.51711C11.4533 7.3653 11.5447 7.191 11.6571 7.04103C11.7548 6.91096 11.9176 6.73224 12.019 6.64417C12.1203 6.5561 12.369 6.40134 12.5717 6.30037C12.7744 6.19941 13.0894 6.07523 13.2718 6.02475Z' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M5.47834 9.28879C5.65558 9.2022 5.91131 9.11303 6.06791 9.08281C6.24 9.04965 6.48357 9.03491 6.71276 9.04375C6.97586 9.05407 7.16011 9.08429 7.35761 9.14988C7.50943 9.20036 7.73347 9.29911 7.85507 9.36912C7.97667 9.43951 8.14028 9.56958 8.21877 9.65839C8.29725 9.74756 8.39601 9.89459 8.43801 9.98597C8.49366 10.1065 8.51503 10.2273 8.5154 10.4282C8.51613 10.6658 8.50066 10.7329 8.40669 10.9057C8.34663 11.0163 8.20587 11.1961 8.09459 11.3051C7.9763 11.4209 7.78432 11.5565 7.63398 11.6298C7.49211 11.6991 7.25997 11.7801 7.1181 11.81C6.97623 11.8395 6.70281 11.8641 6.5101 11.8641C6.31738 11.8641 6.04396 11.8391 5.90209 11.8089C5.76023 11.7787 5.53619 11.7027 5.40464 11.6397C5.26351 11.5727 5.07742 11.4404 4.95214 11.318C4.82796 11.1964 4.70599 11.0332 4.65882 10.9256C4.60134 10.7937 4.57812 10.668 4.57812 10.4834C4.57812 10.2988 4.60134 10.1732 4.65882 10.0412C4.70599 9.93365 4.82796 9.77077 4.95214 9.64917C5.09401 9.51099 5.27014 9.39013 5.47834 9.28879Z' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M21.3417 11.7234C21.4835 11.681 21.691 11.6313 21.8023 11.6128C21.9135 11.594 22.1542 11.5771 22.3366 11.5749C22.519 11.5727 22.8174 11.597 22.9998 11.6287C23.1822 11.6607 23.4557 11.7352 23.6078 11.7938C23.7597 11.8527 23.9837 11.9655 24.1053 12.0447C24.2269 12.1236 24.4148 12.2857 24.5232 12.4043C24.6315 12.5234 24.7619 12.712 24.8135 12.8233C24.8647 12.9346 24.9241 13.1255 24.9447 13.2471C24.9716 13.4059 24.9698 13.5304 24.9388 13.6893C24.9149 13.8109 24.857 13.9933 24.8098 14.0946C24.7627 14.1959 24.6595 14.3569 24.5806 14.4524C24.5014 14.5478 24.3455 14.6952 24.2343 14.78C24.123 14.8647 23.8989 14.9981 23.7368 15.0759C23.5747 15.154 23.3094 15.2538 23.1472 15.2981C22.9007 15.3655 22.7563 15.3784 22.2629 15.3777C21.7783 15.3769 21.621 15.3629 21.3785 15.2981C21.2164 15.2546 20.9511 15.1532 20.7889 15.0733C20.6268 14.993 20.4112 14.8577 20.3099 14.773C20.2086 14.6878 20.0777 14.5585 20.0192 14.4856C19.9609 14.4122 19.8625 14.2449 19.8006 14.113C19.7196 13.9406 19.6835 13.8013 19.6717 13.6156C19.6606 13.4398 19.6754 13.2872 19.7185 13.1365C19.7531 13.0149 19.8504 12.8089 19.9351 12.6785C20.0195 12.5481 20.1883 12.3594 20.3099 12.2588C20.4315 12.1586 20.6552 12.0141 20.8073 11.9382C20.9592 11.8623 21.1998 11.7654 21.3417 11.7234Z' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M11.411 14.7457C11.5023 14.6937 11.6512 14.63 11.7426 14.6042C11.8436 14.5755 12.0595 14.5618 12.2953 14.5685C12.6192 14.5777 12.7154 14.595 12.8849 14.6746C12.9962 14.7265 13.1539 14.8422 13.235 14.9318C13.3286 15.0346 13.4 15.1606 13.4306 15.276C13.4667 15.413 13.469 15.4989 13.4398 15.6238C13.417 15.7207 13.3433 15.8567 13.2626 15.9514C13.1867 16.0402 13.0581 16.1515 12.977 16.1986C12.896 16.2458 12.7467 16.3096 12.6454 16.3405C12.5441 16.3715 12.3366 16.3969 12.1848 16.3969C12.0326 16.3969 11.817 16.3718 11.7057 16.3416C11.5945 16.3114 11.4368 16.2477 11.3557 16.1997C11.2746 16.1522 11.1545 16.0487 11.0885 15.9698C11.02 15.8876 10.9507 15.748 10.926 15.6422C10.8888 15.483 10.8925 15.4329 10.9518 15.2737C10.9898 15.1724 11.0712 15.0335 11.1331 14.965C11.1947 14.8968 11.3196 14.798 11.411 14.7457Z' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M9.91412 3.48521C9.99519 3.45241 10.1444 3.41114 10.2458 3.39382C10.3471 3.3765 10.4547 3.36066 10.4853 3.35845C10.5159 3.35587 10.6441 3.37061 10.7709 3.39087C10.8976 3.41077 11.08 3.46641 11.1762 3.51395C11.2724 3.56185 11.3892 3.64881 11.4356 3.7074C11.4817 3.76636 11.5292 3.86401 11.5406 3.92481C11.5531 3.9904 11.5388 4.08031 11.5056 4.1459C11.475 4.2067 11.4028 4.3003 11.3453 4.35373C11.2878 4.40716 11.1909 4.47533 11.1301 4.50518C11.0693 4.53539 10.9282 4.58108 10.8169 4.60688C10.6968 4.63451 10.5015 4.64631 10.3379 4.63488C10.1717 4.62383 9.98782 4.58403 9.87728 4.53576C9.77594 4.49154 9.63887 4.40237 9.57254 4.33751C9.49995 4.2664 9.44357 4.16838 9.43104 4.09063C9.41851 4.01546 9.43067 3.91707 9.45941 3.8548C9.48668 3.79584 9.56664 3.70224 9.63776 3.6466C9.70888 3.59096 9.83306 3.51837 9.91412 3.48521Z' fill='%23F1EFEC'/%3E%3Cpath d='M13.5069 6.34392C13.6996 6.30081 13.9151 6.25843 13.9859 6.24996C14.0566 6.24148 14.3054 6.24148 14.5386 6.25032C14.7803 6.25917 15.0932 6.29712 15.2664 6.33876C15.4337 6.37929 15.6658 6.45041 15.7823 6.49721C15.8987 6.54401 16.0936 6.64939 16.2152 6.7312C16.3368 6.813 16.5074 6.96113 16.5944 7.06063C16.6817 7.15975 16.7882 7.31562 16.8317 7.407C16.8837 7.51607 16.9157 7.66752 16.9253 7.84919C16.9367 8.07065 16.9231 8.16977 16.8564 8.34664C16.7912 8.52094 16.7145 8.62632 16.4945 8.8441C16.3394 8.99739 16.1168 9.17315 15.9941 9.23838C15.8725 9.30323 15.6736 9.39056 15.552 9.43294C15.4304 9.47531 15.2233 9.53501 15.0914 9.56522C14.9594 9.59581 14.6775 9.63081 14.4649 9.64261C14.2368 9.6555 13.942 9.64629 13.7464 9.62013C13.564 9.59544 13.2655 9.5269 13.0831 9.46794C12.9007 9.40899 12.6686 9.31318 12.5672 9.25496C12.4659 9.19711 12.2835 9.05819 12.1619 8.94654C12.0248 8.82088 11.8995 8.66133 11.8317 8.52683C11.7473 8.3588 11.7197 8.24752 11.7087 8.03343C11.698 7.82008 11.712 7.711 11.7702 7.5544C11.8155 7.43243 11.9242 7.26366 12.0436 7.13064C12.1523 7.00904 12.3395 6.84396 12.4596 6.76363C12.5794 6.68293 12.7854 6.57349 12.9173 6.51969C13.0492 6.46589 13.3141 6.38703 13.5069 6.34392Z' fill='%23F1EFEC'/%3E%3Cpath d='M5.60284 9.61092C5.72444 9.55417 5.9319 9.48416 6.06345 9.45505C6.195 9.4263 6.41904 9.40162 6.5609 9.40051C6.70277 9.39904 6.93492 9.42299 7.07678 9.45357C7.21865 9.48379 7.42169 9.54975 7.52818 9.60023C7.63467 9.65034 7.80196 9.77047 7.90035 9.86665C8.01347 9.97719 8.09491 10.0962 8.12144 10.1891C8.14466 10.2701 8.16308 10.3947 8.16308 10.4654C8.16308 10.5362 8.13102 10.6607 8.09196 10.7418C8.05327 10.8229 7.94567 10.9596 7.85318 11.0458C7.76069 11.132 7.60188 11.244 7.50054 11.2945C7.39921 11.3454 7.21275 11.4143 7.086 11.4478C6.94855 11.4843 6.71456 11.509 6.50563 11.509C6.2967 11.509 6.06271 11.4843 5.92526 11.4478C5.79851 11.4143 5.61205 11.3454 5.51072 11.2945C5.40938 11.244 5.26531 11.1401 5.19087 11.0642C5.11607 10.9883 5.02542 10.8597 4.98894 10.7786C4.95246 10.6976 4.92225 10.5609 4.92188 10.4746C4.92151 10.3862 4.95725 10.2436 5.00405 10.1463C5.04974 10.052 5.15329 9.91639 5.23435 9.84454C5.31542 9.77305 5.48124 9.66803 5.60284 9.61092Z' fill='%23F1EFEC'/%3E%3Cpath d='M21.1898 12.1557C21.3317 12.1008 21.5638 12.0297 21.7057 11.998C21.8932 11.9563 22.0948 11.9445 22.4426 11.9556C22.7835 11.9663 23.0013 11.9935 23.198 12.0496C23.3499 12.093 23.582 12.1807 23.7139 12.2445C23.8657 12.3182 24.0422 12.449 24.1963 12.6015C24.3805 12.7839 24.4594 12.8956 24.5224 13.0633C24.5876 13.2368 24.602 13.3359 24.5891 13.5239C24.5788 13.6731 24.5404 13.826 24.4881 13.9292C24.4413 14.0206 24.3602 14.1514 24.3076 14.2203C24.2545 14.2892 24.1119 14.4211 23.9903 14.514C23.8687 14.6065 23.6365 14.7377 23.4744 14.8047C23.3123 14.8722 23.0385 14.9532 22.8664 14.9853C22.6413 15.0269 22.429 15.0376 22.111 15.024C21.8678 15.0133 21.5693 14.9779 21.4477 14.9451C21.3261 14.9127 21.1021 14.8246 20.9503 14.7495C20.7981 14.6747 20.5825 14.5276 20.4712 14.4237C20.36 14.3194 20.2199 14.1448 20.1606 14.0357C20.0788 13.885 20.049 13.7748 20.0372 13.5791C20.0254 13.382 20.0394 13.2737 20.0969 13.1185C20.1381 13.0073 20.2446 12.833 20.3338 12.7316C20.423 12.6303 20.594 12.4818 20.7137 12.4015C20.8338 12.3211 21.0479 12.2106 21.1898 12.1557Z' fill='%23F1EFEC'/%3E%3Cpath d='M11.6368 15.0299C11.7127 14.9919 11.8373 14.9451 11.9132 14.9256C11.9891 14.9061 12.1508 14.8972 12.2724 14.9061C12.394 14.9149 12.5599 14.9418 12.6409 14.9654C12.722 14.989 12.8546 15.0711 12.9357 15.1478C13.0654 15.2705 13.0831 15.3073 13.0831 15.4533C13.0831 15.5874 13.0617 15.6419 12.9726 15.7359C12.9118 15.7996 12.8038 15.8822 12.733 15.919C12.6623 15.9559 12.4965 16.0056 12.3646 16.0296C12.1623 16.0664 12.0878 16.0635 11.8855 16.0123C11.7536 15.9791 11.5889 15.9153 11.5189 15.8708C11.4492 15.8265 11.3623 15.7403 11.3258 15.6795C11.2893 15.6187 11.2595 15.5233 11.2591 15.4676C11.2591 15.405 11.3052 15.3151 11.3789 15.2325C11.4448 15.1592 11.5609 15.0678 11.6368 15.0299Z' fill='%23F1EFEC'/%3E%3Cpath d='M9.91412 3.48521C9.99519 3.45241 10.1444 3.41114 10.2458 3.39382C10.3471 3.3765 10.4547 3.36066 10.4853 3.35845C10.5159 3.35587 10.6441 3.37061 10.7709 3.39087C10.8976 3.41077 11.08 3.46641 11.1762 3.51395C11.2724 3.56185 11.3892 3.64881 11.4356 3.7074C11.4817 3.76636 11.5292 3.86401 11.5406 3.92481C11.5531 3.9904 11.5388 4.08031 11.5056 4.1459C11.475 4.2067 11.4028 4.3003 11.3453 4.35373C11.2878 4.40716 11.1909 4.47533 11.1301 4.50518C11.0693 4.53539 10.9282 4.58108 10.8169 4.60688C10.6968 4.63451 10.5015 4.64631 10.3379 4.63488C10.1717 4.62383 9.98782 4.58403 9.87728 4.53576C9.77594 4.49154 9.63887 4.40237 9.57254 4.33751C9.49995 4.2664 9.44357 4.16838 9.43104 4.09063C9.41851 4.01546 9.43067 3.91707 9.45941 3.8548C9.48668 3.79584 9.56664 3.70224 9.63776 3.6466C9.70888 3.59096 9.83306 3.51837 9.91412 3.48521Z' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M13.5069 6.34392C13.6996 6.30081 13.9151 6.25843 13.9859 6.24996C14.0566 6.24148 14.3054 6.24148 14.5386 6.25032C14.7803 6.25917 15.0932 6.29712 15.2664 6.33876C15.4337 6.37929 15.6658 6.45041 15.7823 6.49721C15.8987 6.54401 16.0936 6.64939 16.2152 6.7312C16.3368 6.813 16.5074 6.96113 16.5944 7.06063C16.6817 7.15975 16.7882 7.31562 16.8317 7.407C16.8837 7.51607 16.9157 7.66752 16.9253 7.84919C16.9367 8.07065 16.9231 8.16977 16.8564 8.34664C16.7912 8.52094 16.7145 8.62632 16.4945 8.8441C16.3394 8.99739 16.1168 9.17315 15.9941 9.23838C15.8725 9.30323 15.6736 9.39056 15.552 9.43294C15.4304 9.47531 15.2233 9.53501 15.0914 9.56522C14.9594 9.59581 14.6775 9.63081 14.4649 9.64261C14.2368 9.6555 13.942 9.64629 13.7464 9.62013C13.564 9.59544 13.2655 9.5269 13.0831 9.46794C12.9007 9.40899 12.6686 9.31318 12.5672 9.25496C12.4659 9.19711 12.2835 9.05819 12.1619 8.94654C12.0248 8.82088 11.8995 8.66133 11.8317 8.52683C11.7473 8.3588 11.7197 8.24752 11.7087 8.03343C11.698 7.82008 11.712 7.711 11.7702 7.5544C11.8155 7.43243 11.9242 7.26366 12.0436 7.13064C12.1523 7.00904 12.3395 6.84396 12.4596 6.76363C12.5794 6.68293 12.7854 6.57349 12.9173 6.51969C13.0492 6.46589 13.3141 6.38703 13.5069 6.34392Z' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M5.60284 9.61092C5.72444 9.55417 5.9319 9.48416 6.06345 9.45505C6.195 9.4263 6.41904 9.40162 6.5609 9.40051C6.70277 9.39904 6.93492 9.42299 7.07678 9.45357C7.21865 9.48379 7.42169 9.54975 7.52818 9.60023C7.63467 9.65034 7.80196 9.77047 7.90035 9.86665C8.01347 9.97719 8.09491 10.0962 8.12144 10.1891C8.14466 10.2701 8.16308 10.3947 8.16308 10.4654C8.16308 10.5362 8.13102 10.6607 8.09196 10.7418C8.05327 10.8229 7.94567 10.9596 7.85318 11.0458C7.76069 11.132 7.60188 11.244 7.50054 11.2945C7.39921 11.3454 7.21275 11.4143 7.086 11.4478C6.94855 11.4843 6.71456 11.509 6.50563 11.509C6.2967 11.509 6.06271 11.4843 5.92526 11.4478C5.79851 11.4143 5.61205 11.3454 5.51072 11.2945C5.40938 11.244 5.26531 11.1401 5.19087 11.0642C5.11607 10.9883 5.02542 10.8597 4.98894 10.7786C4.95246 10.6976 4.92225 10.5609 4.92188 10.4746C4.92151 10.3862 4.95725 10.2436 5.00405 10.1463C5.04974 10.052 5.15329 9.91639 5.23435 9.84454C5.31542 9.77305 5.48124 9.66803 5.60284 9.61092Z' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M21.1898 12.1557C21.3317 12.1008 21.5638 12.0297 21.7057 11.998C21.8932 11.9563 22.0948 11.9445 22.4426 11.9556C22.7835 11.9663 23.0013 11.9935 23.198 12.0496C23.3499 12.093 23.582 12.1807 23.7139 12.2445C23.8657 12.3182 24.0422 12.449 24.1963 12.6015C24.3805 12.7839 24.4594 12.8956 24.5224 13.0633C24.5876 13.2368 24.602 13.3359 24.5891 13.5239C24.5788 13.6731 24.5404 13.826 24.4881 13.9292C24.4413 14.0206 24.3602 14.1514 24.3076 14.2203C24.2545 14.2892 24.1119 14.4211 23.9903 14.514C23.8687 14.6065 23.6365 14.7377 23.4744 14.8047C23.3123 14.8722 23.0385 14.9532 22.8664 14.9853C22.6413 15.0269 22.429 15.0376 22.111 15.024C21.8678 15.0133 21.5693 14.9779 21.4477 14.9451C21.3261 14.9127 21.1021 14.8246 20.9503 14.7495C20.7981 14.6747 20.5825 14.5276 20.4712 14.4237C20.36 14.3194 20.2199 14.1448 20.1606 14.0357C20.0788 13.885 20.049 13.7748 20.0372 13.5791C20.0254 13.382 20.0394 13.2737 20.0969 13.1185C20.1381 13.0073 20.2446 12.833 20.3338 12.7316C20.423 12.6303 20.594 12.4818 20.7137 12.4015C20.8338 12.3211 21.0479 12.2106 21.1898 12.1557Z' stroke='black' stroke-width='0.75'/%3E%3Cpath d='M11.6368 15.0299C11.7127 14.9919 11.8373 14.9451 11.9132 14.9256C11.9891 14.9061 12.1508 14.8972 12.2724 14.9061C12.394 14.9149 12.5599 14.9418 12.6409 14.9654C12.722 14.989 12.8546 15.0711 12.9357 15.1478C13.0654 15.2705 13.0831 15.3073 13.0831 15.4533C13.0831 15.5874 13.0617 15.6419 12.9726 15.7359C12.9118 15.7996 12.8038 15.8822 12.733 15.919C12.6623 15.9559 12.4965 16.0056 12.3646 16.0296C12.1623 16.0664 12.0878 16.0635 11.8855 16.0123C11.7536 15.9791 11.5889 15.9153 11.5189 15.8708C11.4492 15.8265 11.3623 15.7403 11.3258 15.6795C11.2893 15.6187 11.2595 15.5233 11.2591 15.4676C11.2591 15.405 11.3052 15.3151 11.3789 15.2325C11.4448 15.1592 11.5609 15.0678 11.6368 15.0299Z' stroke='black' stroke-width='0.75'/%3E%3C/svg%3E%0A");
		display: block;
		width: 30px;
		height: 24px;
		background-size: 100%;
	}

	.cky-notice .cky-title {
		padding-left: 48px !important;
	}

	.cky-notice-des P:last-child,
	.cky-preference-content-wrapper p:last-child,
	.cky-cookie-des-table li div:last-child p:last-child,
	.cky-gpc-wrapper .cky-gpc-desc p:last-child {
		padding-left: 48px;
	}

	.cky-notice .cky-title {
		margin: 0 0 16px 0;
	}

	.cky-consent-bar .cky-notice-des p,
	.cky-gpc-wrapper .cky-gpc-desc p,
	.cky-preference-body-wrapper .cky-preference-content-wrapper p,
	.cky-accordion-header-wrapper .cky-accordion-header-des p,
	.cky-cookie-des-table li div:last-child p {
		margin-bottom: 32px !important;
	}

	.cky-consent-container .cky-consent-bar {}

	.cky-box-bottom-right {
		right: 8px !important;
		bottom: 20px !important;
		max-width: calc(100% - 16px);
	}
}

@media (max-width: 440px) {
	.cky-notice-des {
		padding: 0 !important;
	}

	.cky-custom-brand-logo-wrapper,
	.cky-notice-des,
	.cky-notice-btn-wrapper {
		padding: 0 !important;
	}

	.cky-notice .cky-title {
		padding-left: 48px !important;
	}

	.cky-notice-btn-wrapper .cky-btn-customize {
		margin-bottom: 10px !important;
	}
}

@media (max-width: 440px) {

	.cky-box-bottom-left,
	.cky-box-bottom-right,
	.cky-box-top-left,
	.cky-box-top-right {
		width: calc(100% - 16px) !important;
		max-width: calc(100% - 16px) !important;
	}
}