@charset "UTF-8";

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --container-width: 1260px;
  --transition: 0.3s ease;
  --default-font-family: 'Montserrat';
  --heading-font-family: 'Montserrat';
  --sp: 120px;
  --primary: #02c358;
  --secondary: #1b2225;
  --white: #ffffff;
  --black: #000000;
  --grey-20: #fafafa;
  --grey-40: #f5f5f5;
  --grey-100: #e8eaeb;
  --grey-200: #d7dadb;
  --grey-400: #b2b6b8;
  --grey-500: #787d80;
  --grey-700: #3f494d;
  --grey-900: #262e31;
  --light-green: #ecfbf3;
  --bg-gradient-grey: radial-gradient(
    164.15% 141.42% at 0% 100%,
    rgba(120, 125, 128, 0.24) 0%,
    rgba(120, 125, 128, 0.04) 54.33%
  );
  --bg-gradient-green: radial-gradient(
    94.03% 141.42% at 0% 100%,
    rgba(2, 195, 88, 0.2) 0%,
    rgba(2, 195, 88, 0.04) 54.33%
  );
  --red: #e53333;
  --yellow: #ffe928;
  --error: var(--red);
  --green: #02c358;
  --h1: 44px;
  --h2: 32px;
  --h3: 24px;
  --h4: 18px;
  --h5: 16px;
  --h6: 14px;
  --huge: 128px;
  --m: 16px;
  --s: 14px;
  --xs: 12px;
  --xxs: 10px;
  --btn: 14px;
  --menu: 14px;
  --fz-default: var(--m);
  --swiper-theme-color: var(--secondary);
  --swiper-navigation-color: var(--secondary);
  --swiper-navigation-size: 16px;
}

body {
  font:
    300 var(--fz-default) var(--default-font-family),
    Helvetica,
    Arial,
    sans-serif;
  background: var(--white);
  min-width: 360px;
  color: var(--secondary);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

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

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*='__container'] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

[class*='__container'] [class*='__container'] {
  padding: 0;
}

form input.error {
  box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
  border: 2px solid var(--red) !important;
}

form input.not_error {
  box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
  border: 2px solid var(--green) !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--8, 8px);
  top: -48px;
  transform: none;
  margin: 0;
  right: 0;
  left: auto;
  transform: translateY(-100%);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--secondary);
  --swiper-navigation-color: var(--white);
}

.swiper-button-prev {
  left: auto;
  right: 2px;
  transform: translate(-100%, -100%);
}

h1,
._h1 {
  font: 500 var(--h1)/110% var(--heading-font-family);
}

h2,
._h2 {
  font: 500 var(--h2)/120% var(--heading-font-family);
}

h3,
._h3 {
  font: 500 var(--h3)/125% var(--heading-font-family);
}

h4,
._h4 {
  font: 500 var(--h4)/120% var(--heading-font-family);
}

h5,
._h5 {
  font: 500 var(--h5)/125% var(--heading-font-family);
}

h6,
._h6 {
  font: 500 var(--h6)/130% var(--heading-font-family);
}

a {
  color: var(--secondary);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._primary {
  color: var(--primary);
}

._secondary {
  color: var(--secondary);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 140%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

._e {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

._e ul {
  list-style: disc;
  padding-left: 20px;
}

._e ol {
  list-style: auto;
  padding-left: 20px;
}

._e strong {
  font-weight: 600;
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: var(--btn);
  line-height: 115%;
  font-weight: 600;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--8, 8px);
  transition: var(--transition);
}

.btn path {
  transition: var(--transition);
  fill: var(--white);
}

.btn:hover {
  background: var(--yellow);
  color: var(--secondary);
}

.btn:hover path {
  fill: var(--secondary);
}

.btn:disabled {
  filter: saturate(0);
  cursor: not-allowed;
}

.subm {
  cursor: pointer;
  border: none;
  display: flex;
  border: none;
  justify-content: center;
  width: 100%;
}

.form {
  position: relative;
}

.form__inputs {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

.form__subtitle {
  margin-top: 8px;
}

.form .input {
  width: 100%;
  height: 42px;
  border-radius: var(--4, 4px);
  background: var(--grey-900, #262e31);
  border: 2px solid var(--transparent);
  border-radius: 3px;
  padding-left: 12px;
  line-height: 1;
  display: block;
  color: var(--white);
  font-size: var(--s);
  line-height: 130%;
}

.form .input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--default-font-family);
}

.form .input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--default-font-family);
}

.form .input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--default-font-family);
}

.form .input__wrap {
  display: block;
  text-align: left;
}

.form .input__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  display: block;
}

.form__agreement {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-left: 24px;
  text-align: start;
}

.form__agreement a {
  text-decoration: underline;
  color: var(--primary);
}

.form__agreement p:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  border-radius: var(--4, 4px);
  border: 1px solid var(--white, #fff);
}

.form__agreement input {
  display: none;
  z-index: -1;
}

.form__agreement input:checked + p:before {
  content: '';
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M2.8619 5.25257L1.1379 3.52857C0.877589 3.26826 0.455543 3.26826 0.195233 3.52857C-0.0650775 3.78888 -0.0650776 4.21092 0.195233 4.47123L2.50835 6.78435C2.70361 6.97961 3.02019 6.97961 3.21545 6.78435L8.8619 1.1379C9.12221 0.877589 9.12221 0.455543 8.8619 0.195232C8.60159 -0.0650776 8.17954 -0.0650774 7.91923 0.195233L2.8619 5.25257Z' fill='%231B2225'/%3E%3C/svg%3E")
    50% no-repeat;
}

.form:before {
  content: '';
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(27, 34, 37, 0.7) url(../img/loading-white.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.header {
  padding: 16px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  background: url(../img/logo--black.svg) 50% / contain no-repeat;
  aspect-ratio: 170/40;
  width: 170px;
}

.header-menu {
  border-radius: var(--8, 8px);
  background: var(--grey-700, #3f494d);
  -webkit-backdrop-filter: blur(150px);
  backdrop-filter: blur(150px);
  display: flex;
  gap: 2px;
  position: absolute;
  left: 50%;
  top: 100vh;
  transform: translate(-50%, -105%);
  padding: 4px;
  transition: var(--transition, 0.3s ease);
}

.header-menu.active {
  transform: translate(-50%, 0);
}

.header-menu.hide-on-footer {
  opacity: 0;
  pointer-events: none;
}

.header-menu__link {
  padding: 8px;
  border-radius: var(--4, 4px);
  background: var(--white-4, rgba(255, 255, 255, 0.04));
  display: flex;
  align-items: center;
  height: 34px;
  font-size: var(--menu);
  line-height: 130%;
  color: var(--white);
  white-space: nowrap;
  transition: var(--transition, 0.3s ease);
}

.header-menu__link:hover {
  background: var(--primary);
}

.header-menu__link.hover,
.header-menu__link.active {
  background: var(--white);
  color: var(--secondary);
}

.header-burger {
  display: none;
  z-index: 100;
}

.header-burger__text {
  font: 500 var(--h5)/125% var(--heading-font-family);
}

.header-burger__icon {
  width: 16px;
  height: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-burger__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header-burger__icon span:nth-child(1) {
  transform-origin: top left;
}

.header-burger__icon span:nth-child(3) {
  transform-origin: bottom left;
}

.header-burger.active .header-burger__icon span:nth-child(1) {
  transform: rotate(45deg) translate(2px, -2px);
}

.header-burger.active .header-burger__icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.header-burger.active .header-burger__icon span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 2px);
}

.header-overlay {
  display: none;
}

.error404:not(body) {
  padding: var(--sp) 0;
}

.error404__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.error404__content {
  max-width: 380px;
}

.error404__tagline {
  font: 500 var(--h5)/125% var(--heading-font-family);
  color: var(--error, #e53333);
  display: inline-flex;
  padding: 4px 8px;
  border-radius: var(--8, 8px);
  border: 1px solid var(--error, #e53333);
  background: var(--red-4, rgba(229, 51, 51, 0.04));
}

.error404__code {
  font-size: 300px;
  font-weight: 500;
  position: relative;
}

.error404__code:before {
  content: '';
  background: url("data:image/svg+xml,%3Csvg width='617' height='694' viewBox='0 0 617 694' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.5147 580.619C100.102 666.336 214.945 703.86 322.35 691.796C422.302 680.569 497.448 605.703 552.864 522.509C604.592 444.851 632.279 352.774 607.969 263.01C606.576 257.865 605.034 252.798 603.349 247.809C615.529 322.226 569.016 387.429 523.732 450.909C516.776 460.66 509.849 470.37 503.169 480.067C494.642 492.443 486.278 505.385 477.854 518.419C434.31 585.798 389.177 655.635 311.695 662.545C217.652 670.932 143.48 591.455 85.144 517.347C46.6843 468.489 19.1865 411.816 12.9187 352.142C-2.1775 433.5 -13.4531 515.631 35.5147 580.619Z' fill='%23FAFAFA'/%3E%3Cpath d='M33.7158 226.459C45.6175 144.663 61.6518 63.2016 131.475 23.2707C200.823 -16.3888 282.391 0.287804 358.717 31.3023C289.59 26.8414 220.065 55.5715 158.755 93.4078C105.134 126.499 59.3916 171.293 33.7158 226.459Z' fill='%23FAFAFA'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M602.172 241.165C582.228 146.476 502.998 72.3669 410.934 41.7461C325.258 13.2501 235.541 46.3231 158.718 93.6703C87.0071 137.867 29.3826 202.964 14.9842 285.778C0.462458 369.301 32.5498 450.516 85.0869 517.169C143.439 591.2 217.632 670.595 311.7 662.217C389.204 655.314 434.349 585.55 477.906 518.24C486.331 505.22 494.698 492.292 503.227 479.928C509.91 470.241 516.838 460.541 523.796 450.8C570.458 385.476 618.424 318.324 602.172 241.165ZM279.53 566.543C417.977 566.543 530.211 454.457 530.211 316.192C530.211 177.927 417.977 65.8407 279.53 65.8407C141.083 65.8407 28.8498 177.927 28.8498 316.192C28.8498 454.457 141.083 566.543 279.53 566.543Z' fill='%23E8EAEB'/%3E%3C/svg%3E%0A")
    50% / contain no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 616.89/694;
  width: 616px;
  z-index: -1;
}

.error404__text {
  margin: 16px 0 32px;
}

.success {
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='463' height='492' viewBox='0 0 463 492' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M459.613 163.394C444.094 89.7171 382.445 32.0532 310.811 8.22722C244.147 -13.9454 174.337 11.7886 114.562 48.6294C58.7637 83.0189 13.9262 133.67 2.72286 198.108C-8.57651 263.097 16.3906 326.291 57.2696 378.153C102.674 435.757 160.403 497.534 233.597 491.015C293.902 485.644 329.03 431.36 362.921 378.987C369.477 368.855 375.987 358.796 382.624 349.176C387.823 341.639 393.215 334.091 398.628 326.512C434.936 275.683 472.258 223.432 459.613 163.394ZM208.566 416.57C316.291 416.57 403.619 329.357 403.619 221.773C403.619 114.189 316.291 26.9752 208.566 26.9752C100.84 26.9752 13.5116 114.189 13.5116 221.773C13.5116 329.357 100.84 416.57 208.566 416.57Z' fill='%23E8EAEB'/%3E%3C/svg%3E")
    50% no-repeat;
}

.success__tagline {
  font: 500 var(--h5)/125% var(--heading-font-family);
  color: var(--primary);
  display: inline-flex;
  padding: 4px 8px;
  border-radius: var(--8, 8px);
  border: 1px solid var(--light-green, #ecfbf3);
  background: var(
    --bg-gradient-green,
    radial-gradient(94.03% 141.42% at 0% 100%, rgba(2, 195, 88, 0.2) 0%, rgba(2, 195, 88, 0.04) 54.33%)
  );
}

.success__title {
  max-width: 600px;
  margin: 0 auto 16px;
}

.success__text {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.success__btn {
  margin: 16px auto 0px;
}

.document {
  padding: var(--sp) 0;
}

.footer {
  margin-top: auto;
  border-radius: var(--48, 48px) var(--48, 48px) 0 0;
  background: var(--secondary, #1b2225);
  padding: var(--sp) 0 20px;
  position: relative;
  overflow: hidden;
}

.footer:before {
  content: '';
  background: url("data:image/svg+xml,%3Csvg width='3494' height='3934' viewBox='0 0 3494 3934' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3292.85 642.712C2927.03 156.813 2276.57 -55.8933 1668.24 12.4922C1102.12 76.1321 676.504 500.521 362.633 972.111C69.646 1412.32 -87.168 1934.27 50.5225 2443.11C58.4136 2472.27 67.146 2500.99 76.6868 2529.27C7.70117 2107.43 271.148 1737.82 527.631 1377.98C567.029 1322.71 606.262 1267.67 644.101 1212.7C692.397 1142.54 739.769 1069.18 787.478 995.297C1034.11 613.351 1289.74 217.474 1728.59 178.304C2261.24 130.763 2681.34 581.287 3011.75 1001.37C3229.58 1278.33 3385.33 1599.59 3420.83 1937.85C3506.33 1476.66 3570.2 1011.1 3292.85 642.712Z' fill='%23262E31'/%3E%3Cpath d='M3303.04 2650.3C3235.63 3113.97 3144.81 3575.74 2749.34 3802.09C2356.56 4026.9 1894.56 3932.37 1462.26 3756.56C1853.79 3781.85 2247.57 3618.99 2594.83 3404.51C2898.53 3216.93 3157.61 2963.01 3303.04 2650.3Z' fill='%23262E31'/%3E%3C/svg%3E%0A")
    50% / contain no-repeat;
  aspect-ratio: 1/1;
  z-index: 11;
  width: 3494px;
  top: 56px;
  left: 50%;
  transform: translateX(-65%);
  position: absolute;
  z-index: 1;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: wrap;
  gap: 84px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contacts {
  color: var(--white);
  max-width: 360px;
}

.footer-contacts b, strong {
  font-weight: 700;
}

.footer-contacts a {
  color: var(--primary);
}


.footer-logo__icon {
  aspect-ratio: 53/60;
  height: 60px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2254%22%20height%3D%2260%22%20viewBox%3D%220%200%2054%2060%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_4183_3901)%22%3E%0A%3Cpath%20opacity%3D%220.15%22%20d%3D%22M52.1628%2021.4307C52.3077%2021.8601%2052.4424%2022.2955%2052.5623%2022.7383C54.664%2030.4987%2052.2706%2038.459%2047.7986%2045.1729C43.0076%2052.3654%2036.5103%2058.838%2027.8689%2059.8086C18.5833%2060.8514%208.65491%2057.6078%203.07104%2050.1973C-1.16364%2044.5772%20-0.186792%2037.4742%201.1189%2030.4385C1.65947%2035.5999%204.03566%2040.5018%207.36206%2044.7275C12.4055%2051.1345%2018.8176%2058.0062%2026.948%2057.2812C34.9424%2056.5683%2038.9535%2048.1064%2043.5017%2041.5049C47.8383%2035.2105%2053.374%2028.8504%2052.1628%2021.4307ZM11.3669%202.01172C17.365%20-1.4185%2024.4201%200.0273815%2031.0212%202.71094C25.0422%202.32253%2019.0283%204.80357%2013.7253%208.07617C9.09217%2010.9355%205.13915%2014.8056%202.9187%2019.5713C3.94754%2012.5022%205.33267%205.46282%2011.3669%202.01172Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%0A%3Cpath%20d%3D%22M13.7256%208.07617C20.3653%203.97857%2028.1195%201.11607%2035.5244%203.58203C43.4816%206.23211%2050.3299%2012.646%2052.0537%2020.8408C53.6678%2028.5143%2047.953%2035.0445%2043.502%2041.5049C38.9538%2048.1063%2034.9424%2056.5671%2026.9482%2057.2803C18.8178%2058.0054%2012.4048%2051.1345%207.36133%2044.7275C2.82057%2038.9591%200.0477297%2031.9306%201.30273%2024.7021C2.5472%2017.535%207.52754%2011.9012%2013.7256%208.07617ZM24.168%205.66699C12.2018%205.66699%202.50098%2015.3678%202.50098%2027.334C2.50101%2039.3001%2012.2018%2049.001%2024.168%2049.001C36.134%2049.0008%2045.834%2039.3%2045.834%2027.334C45.834%2015.3679%2036.134%205.66715%2024.168%205.66699Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%0A%3Cpath%20d%3D%22M25.5865%2019.7406C27.507%2023.8774%2024.0251%2027.0753%2024.0251%2027.0753L23.8701%2027.2049C14.5583%2021.3849%2022.9596%2010.667%2022.9596%2010.667C24.2563%2013.9935%2025.7457%2015.4355%2026.9864%2016.6367C28.2019%2017.8136%2029.1787%2018.7592%2029.5016%2021.0194C30.3099%2026.6771%2025.2472%2027.043%2025.2472%2027.043C25.2472%2027.043%2029.0076%2022.6159%2026.1607%2019.3492C23.7942%2016.6337%2023.2442%2014.7976%2023.1178%2014.0336C23.3634%2016.3974%2023.9814%2017.2641%2024.6412%2018.1893C24.9589%2018.6349%2025.2863%2019.0941%2025.5865%2019.7406Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%0A%3Cpath%20d%3D%22M24.6105%2029.5715C24.6105%2029.5715%2025.9174%2027.8318%2027.2405%2027.2806C28.2075%2026.8777%2028.6956%2026.8866%2029.6536%2027.0765C30.2787%2027.2003%2030.8576%2027.4792%2031.2698%2027.6777C31.4893%2027.7835%2031.6616%2027.8665%2031.7684%2027.8911C31.8539%2027.9109%2031.9948%2027.9626%2032.1646%2028.025C32.605%2028.1869%2033.2404%2028.4203%2033.6121%2028.3532C33.6121%2028.3532%2029.98%2033.2035%2024.8099%2029.9773C24.8099%2029.9773%2027.6833%2028.3868%2028.9577%2028.432C30.2321%2028.4771%2030.6749%2028.6036%2030.6749%2028.6036C30.6749%2028.6036%2031.8227%2028.7573%2032.2656%2028.6217C32.2656%2028.6217%2030.9342%2028.4909%2030.4256%2028.3769C30.3777%2028.3662%2030.3319%2028.3523%2030.2863%2028.3338C29.9576%2028.2001%2027.3038%2027.6819%2024.6105%2029.5715Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M23.8955%2027.5648C23.9407%2027.5668%2023.9842%2027.546%2024.0204%2027.519C24.1209%2027.4436%2024.1567%2027.328%2024.1832%2027.2106C24.218%2027.1921%2024.2624%2027.2216%2024.2755%2027.2588C24.2869%2027.2911%2024.2825%2027.3261%2024.2781%2027.3604L24.2773%2027.3667L24.2762%2027.376C24.2699%2027.4298%2024.2704%2027.4843%2024.2774%2027.5379C24.2813%2027.5672%2024.2874%2027.5971%2024.3038%2027.6216C24.3383%2027.6737%2024.4093%2027.6885%2024.4715%2027.6822C24.5143%2027.6778%2024.5556%2027.6657%2024.597%2027.6535C24.6242%2027.6455%2024.6515%2027.6375%2024.6792%2027.6317C24.7489%2027.6169%2024.8282%2027.6181%2024.8836%2027.6631C24.9473%2027.7149%2024.9594%2027.8109%2024.9344%2027.8892C24.9093%2027.9673%2024.8545%2028.0318%2024.801%2028.0941C24.7831%2028.115%2024.7642%2028.1365%2024.7389%2028.1473C24.7181%2028.1561%2024.6947%2028.1568%2024.6724%2028.1534C24.5837%2028.1402%2024.5197%2028.072%2024.4557%2028.0037C24.3921%2027.9358%2024.3284%2027.8679%2024.2404%2027.8539C24.2121%2027.8495%2024.183%2027.8511%2024.154%2027.8527C24.131%2027.854%2024.1079%2027.8553%2024.0856%2027.8535C24.0852%2027.8717%2024.0824%2027.8902%2024.0796%2027.9085C24.0788%2027.9137%2024.0781%2027.9189%2024.0773%2027.9241C24.0699%2027.9777%2024.069%2028.0323%2024.0748%2028.086C24.0779%2028.1153%2024.0833%2028.1453%2024.0991%2028.1702C24.1325%2028.2233%2024.2031%2028.2397%2024.2654%2028.2348C24.3086%2028.2314%2024.3504%2028.2202%2024.3924%2028.2089C24.4195%2028.2017%2024.4466%2028.1944%2024.4742%2028.1892C24.5443%2028.1762%2024.6235%2028.1794%2024.6778%2028.2255C24.7403%2028.2788%2024.7501%2028.3751%2024.7232%2028.4527C24.6963%2028.5303%2024.64%2028.5935%2024.585%2028.6544C24.5666%2028.6749%2024.5472%2028.6959%2024.5217%2028.7061C24.5086%2028.7113%2024.4945%2028.7133%2024.4804%2028.7132C24.5057%2028.7183%2024.5297%2028.7279%2024.5506%2028.7436C24.6164%2028.7927%2024.6324%2028.8883%2024.6104%2028.9674C24.5885%2029.0465%2024.5364%2029.1132%2024.4854%2029.1776C24.4683%2029.1991%2024.4503%2029.2213%2024.4255%2029.2331C24.4051%2029.2429%2024.3817%2029.2443%2024.3593%2029.2419C24.2701%2029.2324%2024.2034%2029.1667%2024.1367%2029.1011C24.0705%2029.0358%2024.0042%2028.9706%2023.9156%2028.9601C23.8871%2028.9567%2023.8579%2028.9595%2023.8289%2028.9623C23.8124%2028.9639%2023.7959%2028.9655%2023.7797%2028.9659C23.7916%2028.9948%2023.7914%2029.0272%2023.7913%2029.059C23.7912%2029.0643%2023.7912%2029.0696%2023.7913%2029.0748C23.7916%2029.129%2023.7986%2029.1831%2023.8121%2029.2354C23.8195%2029.264%2023.8292%2029.2928%2023.8484%2029.3152C23.889%2029.3629%2023.9613%2029.369%2024.0222%2029.3551C24.0642%2029.3455%2024.1038%2029.3285%2024.1434%2029.3114C24.1695%2029.3002%2024.1955%2029.289%2024.2222%2029.2799C24.2897%2029.2567%2024.3686%2029.2483%2024.429%2029.2863C24.4985%2029.3299%2024.5222%2029.4238%2024.5068%2029.5045C24.4914%2029.5851%2024.4447%2029.6557%2024.3992%2029.7242C24.384%2029.747%2024.3679%2029.7706%2024.344%2029.7843C24.3245%2029.7957%2024.3013%2029.7991%2024.2787%2029.7985C24.189%2029.7962%2024.1172%2029.7362%2024.0454%2029.6761C23.9741%2029.6165%2023.9027%2029.5569%2023.8137%2029.5536C23.785%2029.5525%2023.7562%2029.5577%2023.7275%2029.5628L23.7241%2029.5634C23.737%2029.5935%2023.7368%2029.6274%2023.7366%2029.6608L23.7366%2029.664C23.7366%2029.6683%2023.7366%2029.6727%2023.7366%2029.677C23.737%2029.7323%2023.7441%2029.7879%2023.758%2029.8417C23.7656%2029.8709%2023.7755%2029.9006%2023.7952%2029.9237C23.8369%2029.9723%2023.9111%2029.9786%2023.9736%2029.9645C24.0169%2029.9546%2024.0577%2029.937%2024.0986%2029.9194C24.1251%2029.908%2024.1516%2029.8966%2024.1789%2029.8872C24.2481%2029.8635%2024.329%2029.855%2024.391%2029.8939C24.4623%2029.9386%2024.4866%2030.035%2024.4707%2030.1178C24.4549%2030.2005%2024.4072%2030.273%2024.3604%2030.343C24.3447%2030.3666%2024.3282%2030.3908%2024.3038%2030.405C24.2837%2030.4165%2024.2599%2030.4201%2024.2368%2030.4195C24.1447%2030.4171%2024.0711%2030.3555%2023.9974%2030.2939C23.9242%2030.2327%2023.851%2030.1715%2023.7596%2030.1681C23.7302%2030.1671%2023.7008%2030.1723%2023.6714%2030.1776L23.6587%2030.1798C23.6688%2030.2071%2023.6697%2030.2373%2023.6706%2030.267L23.6708%2030.2735L23.6712%2030.283C23.6735%2030.3385%2023.6827%2030.3936%2023.6984%2030.4468C23.707%2030.476%2023.718%2030.5052%2023.7385%2030.5275C23.7819%2030.5748%2023.8562%2030.5784%2023.9182%2030.5619C23.9611%2030.5506%2024.0012%2030.5316%2024.0414%2030.5126C24.0675%2030.5002%2024.0937%2030.4879%2024.1206%2030.4776C24.1889%2030.4514%2024.2695%2030.44%2024.3328%2030.4767C24.4057%2030.519%2024.4334%2030.6144%2024.4205%2030.6976C24.4077%2030.7809%2024.3625%2030.855%2024.3182%2030.9267C24.3034%2030.9507%2024.2877%2030.9756%2024.2638%2030.9905L24.2607%2030.9924C24.2987%2030.988%2024.3366%2030.992%2024.3705%2031.0094C24.445%2031.0475%2024.4774%2031.1406%2024.4689%2031.2238C24.4605%2031.307%2024.4197%2031.3828%2024.3795%2031.4562C24.3661%2031.4809%2024.3519%2031.5064%2024.3289%2031.5223C24.3101%2031.5356%2024.2869%2031.5412%2024.2639%2031.5427C24.1727%2031.5483%2024.0946%2031.4939%2024.0163%2031.4394C23.9386%2031.3852%2023.8608%2031.3311%2023.7701%2031.3358C23.751%2031.3368%2023.7321%2031.3405%2023.7133%2031.3451C23.7233%2031.3706%2023.7262%2031.3991%2023.729%2031.4271L23.7297%2031.4348L23.7306%2031.4435C23.7369%2031.5001%2023.7501%2031.556%2023.77%2031.6093C23.7808%2031.6385%2023.7942%2031.6677%2023.8167%2031.689C23.8645%2031.7343%2023.9408%2031.733%2024.0032%2031.7118C24.0461%2031.6971%2024.0858%2031.6749%2024.1254%2031.6527C24.1514%2031.6381%2024.1774%2031.6236%2024.2044%2031.6111C24.2725%2031.5794%2024.3542%2031.5621%2024.4216%2031.5953C24.4992%2031.6334%2024.5342%2031.7292%2024.5269%2031.8153C24.5196%2031.9014%2024.4785%2031.9806%2024.4383%2032.057C24.4248%2032.0826%2024.4105%2032.1092%2024.387%2032.1262C24.3678%2032.1401%2024.3439%2032.1463%2024.3202%2032.1481C24.226%2032.1555%2024.1443%2032.1005%2024.0626%2032.0455C23.9814%2031.9908%2023.9001%2031.9361%2023.8064%2031.9425C23.7861%2031.9439%2023.7661%2031.9482%2023.7462%2031.9534C23.7562%2031.9772%2023.7597%2032.0039%2023.7631%2032.0302L23.7638%2032.0359L23.7652%2032.046C23.7728%2032.0997%2023.787%2032.1526%2023.8075%2032.2029C23.8186%2032.2304%2023.8323%2032.2579%2023.8544%2032.2776C23.9012%2032.3194%2023.9739%2032.3159%2024.0327%2032.2939C24.0734%2032.2786%2024.1108%2032.2562%2024.1481%2032.2337C24.1723%2032.2192%2024.1965%2032.2046%2024.2217%2032.192C24.2857%2032.1601%2024.363%2032.1411%2024.4283%2032.1708C24.5033%2032.2049%2024.5395%2032.2952%2024.5349%2032.3775C24.5304%2032.4598%2024.4936%2032.5364%2024.4574%2032.6105L24.453%2032.6194C24.4852%2032.6131%2024.5179%2032.6135%2024.5492%2032.624C24.6312%2032.6511%2024.679%2032.7412%2024.6834%2032.8275C24.6879%2032.9138%2024.658%2032.9979%2024.6285%2033.0792C24.6186%2033.1064%2024.6081%2033.1346%2024.5871%2033.1546C24.5699%2033.171%2024.5471%2033.1804%2024.5239%2033.1855C24.4316%2033.2056%2024.3432%2033.1622%2024.2547%2033.1188C24.1668%2033.0757%2024.0788%2033.0325%2023.9869%2033.0515C23.9751%2033.054%2023.9634%2033.0575%2023.952%2033.0616C23.967%2033.0867%2023.9742%2033.1165%2023.9812%2033.1458C23.9826%2033.1513%2023.9839%2033.1569%2023.9853%2033.1623C23.9996%2033.2189%2024.0208%2033.2738%2024.0485%2033.3251C24.0636%2033.3532%2024.0812%2033.381%2024.1071%2033.3995C24.1619%2033.4387%2024.2391%2033.4265%2024.2994%2033.3963C24.341%2033.3755%2024.3782%2033.3473%2024.4154%2033.3191C24.4396%2033.3007%2024.4639%2033.2823%2024.4895%2033.2659C24.5542%2033.2245%2024.6346%2033.1954%2024.7076%2033.2195C24.7917%2033.2473%2024.8407%2033.3396%2024.8453%2033.428C24.85%2033.5164%2024.8194%2033.6024%2024.7893%2033.6856C24.7857%2033.6956%2024.782%2033.7058%2024.7777%2033.7156C24.8235%2033.6954%2024.8727%2033.686%2024.9206%2033.6973C25.0111%2033.7187%2025.07%2033.8105%2025.0819%2033.902C25.0937%2033.9937%2025.0686%2034.086%2025.0435%2034.1753C25.0351%2034.2052%2025.0261%2034.2364%2025.0053%2034.2597C24.9881%2034.2787%2024.9643%2034.2907%2024.9398%2034.2984C24.8421%2034.3283%2024.7434%2034.2902%2024.6447%2034.2521C24.5465%2034.2143%2024.4483%2034.1764%2024.3509%2034.2052C24.3304%2034.2113%2024.3108%2034.2202%2024.2915%2034.2301C24.2939%2034.232%2024.2962%2034.2341%2024.2984%2034.2363C24.3262%2034.2642%2024.339%2034.3029%2024.3514%2034.3408C24.3534%2034.3467%2024.3553%2034.3526%2024.3573%2034.3584C24.3775%2034.4177%2024.405%2034.4745%2024.439%2034.5272C24.4575%2034.5558%2024.4788%2034.5839%2024.5081%2034.6016C24.5702%2034.6389%2024.6517%2034.6192%2024.7136%2034.5815C24.7565%2034.5555%2024.794%2034.522%2024.8315%2034.4885C24.8557%2034.4669%2024.88%2034.4453%2024.9057%2034.4256C24.9714%2034.3756%2025.0549%2034.3375%2025.1351%2034.3571C25.2275%2034.3796%2025.2879%2034.474%2025.3004%2034.5683C25.3131%2034.6625%2025.2879%2034.7572%2025.2628%2034.8489C25.2544%2034.8795%2025.2454%2034.9115%2025.2243%2034.9353C25.2069%2034.9547%2025.1827%2034.9671%2025.1577%2034.9748C25.0584%2035.005%2024.9576%2034.9654%2024.8567%2034.9258C24.7565%2034.8864%2024.6563%2034.847%2024.5573%2034.876C24.5494%2034.8784%2024.5416%2034.8811%2024.5339%2034.8842C24.5353%2034.885%2024.5365%2034.8859%2024.5378%2034.8867L24.5405%2034.8888L24.5433%2034.891C24.576%2034.9178%2024.5937%2034.9577%2024.6111%2034.9968C24.6137%2035.0028%2024.6163%2035.0087%2024.619%2035.0146C24.6468%2035.0755%2024.6821%2035.1331%2024.7239%2035.1853C24.7466%2035.2138%2024.7723%2035.2414%2024.8053%2035.2571C24.8753%2035.2901%2024.9599%2035.2604%2025.0217%2035.214C25.0644%2035.1817%2025.1006%2035.1422%2025.1369%2035.1027C25.1604%2035.077%2025.184%2035.0513%2025.2094%2035.0276C25.2738%2034.9674%2025.3586%2034.918%2025.446%2034.9302C25.5466%2034.9443%2025.6208%2035.0384%2025.6443%2035.1372C25.6677%2035.2359%2025.651%2035.3394%2025.6342%2035.4395C25.6285%2035.4731%2025.6223%2035.508%2025.6023%2035.5355C25.586%2035.5582%2025.5616%2035.5739%2025.5359%2035.5846C25.4335%2035.6274%2025.3221%2035.5961%2025.2106%2035.5647C25.0999%2035.5335%2024.989%2035.5023%2024.8868%2035.5437C24.8754%2035.5484%2024.8644%2035.5538%2024.8536%2035.5599C24.8714%2035.5826%2024.8839%2035.6098%2024.8962%2035.6366C24.8989%2035.6425%2024.9016%2035.6484%2024.9044%2035.6542C24.9326%2035.7142%2024.9688%2035.7703%2025.0116%2035.8207C25.035%2035.8484%2025.0614%2035.8751%2025.0955%2035.8892C25.1677%2035.919%2025.2555%2035.885%2025.3199%2035.8353C25.3642%2035.8009%2025.4018%2035.7595%2025.4395%2035.7181L25.4397%2035.7179C25.4643%2035.6908%2025.489%2035.6637%2025.5156%2035.6385C25.5828%2035.5748%2025.6709%2035.521%2025.7613%2035.5291C25.8654%2035.5383%2025.9416%2035.6294%2025.9652%2035.7277C25.9888%2035.826%2025.9706%2035.9308%2025.9525%2036.0325C25.9463%2036.0666%2025.9397%2036.102%2025.9188%2036.1306C25.9017%2036.1542%2025.8763%2036.1713%2025.8496%2036.1832C25.7432%2036.2312%2025.6281%2036.2051%2025.5129%2036.179C25.3985%2036.153%2025.2839%2036.127%2025.1778%2036.1737C25.1667%2036.1786%2025.1559%2036.1842%2025.1453%2036.1903C25.1798%2036.2159%2025.2018%2036.2546%2025.2234%2036.2925C25.227%2036.2988%2025.2306%2036.3052%2025.2342%2036.3114C25.2707%2036.3742%2025.315%2036.4325%2025.3657%2036.4844C25.3935%2036.5128%2025.4241%2036.54%2025.4614%2036.5533C25.5405%2036.5813%2025.6287%2036.5403%2025.6905%2036.4834C25.7331%2036.444%2025.7679%2036.3975%2025.8028%2036.351C25.8255%2036.3207%2025.8482%2036.2904%2025.8731%2036.2621C25.9362%2036.1901%2026.0225%2036.1276%2026.1182%2036.1314C26.2283%2036.1359%2026.3186%2036.2294%2026.3546%2036.3336C26.3905%2036.4377%2026.3836%2036.5512%2026.3761%2036.6611C26.3737%2036.698%2026.3707%2036.7364%2026.3521%2036.7684C26.3369%2036.7945%2026.3122%2036.814%2026.2856%2036.8284C26.1795%2036.8856%2026.0558%2036.8637%2025.9321%2036.8418C25.8091%2036.82%2025.6861%2036.7982%2025.5803%2036.8539C25.5611%2036.864%2025.5431%2036.8765%2025.5258%2036.8899C25.531%2036.8929%2025.536%2036.8963%2025.5406%2036.9001C25.5762%2036.9292%2025.5954%2036.9727%2025.6142%2037.0152C25.6171%2037.0216%2025.6199%2037.028%2025.6227%2037.0343C25.6529%2037.1004%2025.6912%2037.1628%2025.7366%2037.2195C25.7613%2037.2505%2025.7891%2037.2805%2025.825%2037.2974C25.9009%2037.3333%2025.9927%2037.3012%2026.0598%2037.2505C26.1061%2037.2157%2026.1454%2037.1729%2026.1847%2037.13C26.2103%2037.1021%2026.2359%2037.0742%2026.2635%2037.0485C26.3334%2036.9831%2026.4254%2036.9295%2026.5202%2036.9428C26.6294%2036.958%2026.71%2037.0601%2026.7354%2037.1674C26.7609%2037.2746%2026.7427%2037.3868%2026.7245%2037.4954C26.7184%2037.5319%2026.7117%2037.5697%2026.6899%2037.5997C26.6722%2037.6242%2026.6457%2037.6412%2026.6178%2037.6528C26.5066%2037.6993%2026.3857%2037.6653%2026.2648%2037.6312C26.1446%2037.5973%2026.0243%2037.5635%2025.9134%2037.6085C25.8777%2037.623%2025.8453%2037.6451%2025.813%2037.6671C25.7677%2037.6981%2025.7227%2037.7288%2025.6693%2037.7378C25.6374%2037.7433%2025.6047%2037.7404%2025.5722%2037.7376H25.5719C25.5311%2037.734%2025.4904%2037.7304%2025.4519%2037.7432C25.3665%2037.7717%2025.3349%2037.8585%2025.3024%2037.9479C25.2772%2038.0173%2025.2514%2038.0883%2025.1994%2038.1349C25.1259%2038.2008%2025.0089%2038.2023%2024.9224%2038.1545C24.836%2038.1069%2024.7777%2038.0186%2024.7455%2037.9253C24.6966%2037.7837%2024.7225%2037.5924%2024.8606%2037.5341C24.9292%2037.5052%2025.006%2037.517%2025.0823%2037.5287C25.1643%2037.5413%2025.2459%2037.5538%2025.3162%2037.5155C25.3695%2037.4863%2025.4051%2037.4324%2025.4279%2037.3761C25.4824%2037.2414%2025.461%2037.1058%2025.4214%2036.9728C25.3993%2036.9876%2025.376%2036.9998%2025.3501%2037.0068C25.3189%2037.0154%2025.286%2037.0158%2025.2533%2037.0162C25.2123%2037.0167%2025.1714%2037.0172%2025.1344%2037.0337C25.0521%2037.0705%2025.0294%2037.16%2025.0059%2037.2522C24.9876%2037.3238%2024.969%2037.3969%2024.9219%2037.4485C24.8553%2037.5215%2024.739%2037.5343%2024.6482%2037.4955C24.5575%2037.4567%2024.4907%2037.3747%2024.4495%2037.2849C24.3868%2037.1488%2024.3936%2036.9559%2024.5253%2036.8842C24.5907%2036.8486%2024.6683%2036.8528%2024.7454%2036.8569C24.8282%2036.8613%2024.9106%2036.8657%2024.9768%2036.8206C25.027%2036.7863%2025.057%2036.729%2025.0741%2036.6708C25.1151%2036.5309%2025.08%2036.3977%2025.0273%2036.2691C25.0011%2036.2851%2024.9738%2036.2982%2024.9439%2036.3045C24.9135%2036.3109%2024.8823%2036.3097%2024.8512%2036.3086C24.8122%2036.3071%2024.7734%2036.3056%2024.7366%2036.3193C24.6548%2036.3495%2024.6241%2036.4314%2024.5925%2036.5158C24.568%2036.5812%2024.5429%2036.6482%2024.493%2036.6938C24.4224%2036.7582%2024.3107%2036.7647%2024.2285%2036.7244C24.1463%2036.6839%2024.0914%2036.6048%2024.0613%2036.5197C24.0156%2036.3905%2024.0416%2036.2121%2024.1737%2036.1518C24.2394%2036.1219%2024.3126%2036.1294%2024.3853%2036.1368C24.4635%2036.1448%2024.5412%2036.1527%2024.6086%2036.1141C24.6597%2036.0848%2024.694%2036.0331%2024.7161%2035.9798C24.7638%2035.865%2024.7526%2035.7522%2024.7229%2035.642C24.7036%2035.6517%2024.6834%2035.6592%2024.6618%2035.6629C24.6325%2035.6678%2024.6024%2035.6652%2024.5723%2035.6626C24.5346%2035.6593%2024.4971%2035.656%2024.4616%2035.6678C24.3829%2035.694%2024.3538%2035.774%2024.3238%2035.8564C24.3006%2035.9204%2024.2768%2035.9858%2024.2289%2036.0288C24.1612%2036.0895%2024.0534%2036.0908%2023.9737%2036.0468C23.894%2036.003%2023.8404%2035.9215%2023.8107%2035.8357C23.7656%2035.7052%2023.7895%2035.5289%2023.9168%2035.4752C23.98%2035.4485%2024.0507%2035.4594%2024.121%2035.4701C24.1966%2035.4818%2024.2717%2035.4933%2024.3365%2035.458C24.3857%2035.4311%2024.4185%2035.3814%2024.4395%2035.3296C24.4924%2035.1988%2024.4676%2035.0669%2024.4274%2034.9381C24.3985%2034.9524%2024.3688%2034.9639%2024.3366%2034.9661C24.3088%2034.968%2024.281%2034.9627%2024.2533%2034.9574C24.2185%2034.9508%2024.1839%2034.9443%2024.1498%2034.9519C24.074%2034.969%2024.0394%2035.0407%2024.0038%2035.1147C23.9762%2035.1721%2023.948%2035.2307%2023.8994%2035.2663C23.8306%2035.3166%2023.7301%2035.3076%2023.66%2035.2593C23.59%2035.2108%2023.5476%2035.1302%2023.5279%2035.0475C23.4982%2034.9217%2023.5369%2034.7598%2023.6604%2034.7218C23.7218%2034.7027%2023.7867%2034.7195%2023.8511%2034.7361C23.9204%2034.754%2023.9893%2034.7717%2024.0529%2034.7449C24.1012%2034.7244%2024.1364%2034.6813%2024.1607%2034.6348C24.2202%2034.5218%2024.212%2034.4011%2024.1885%2034.2815C24.1709%2034.2879%2024.1529%2034.2925%2024.1339%2034.2939C24.1066%2034.2959%2024.0793%2034.2909%2024.0521%2034.2859C24.018%2034.2796%2023.9841%2034.2734%2023.9506%2034.2811C23.8761%2034.298%2023.8419%2034.368%2023.8066%2034.4402C23.7792%2034.4962%2023.7512%2034.5534%2023.7034%2034.5883C23.6357%2034.6375%2023.537%2034.6293%2023.4685%2034.5825C23.3999%2034.5358%2023.3587%2034.4576%2023.3399%2034.3771C23.3113%2034.2547%2023.3501%2034.0971%2023.4714%2034.0594C23.5318%2034.0407%2023.5953%2034.0566%2023.6585%2034.0725C23.7264%2034.0896%2023.7939%2034.1065%2023.8565%2034.08C23.904%2034.06%2023.9388%2034.0178%2023.9629%2033.9725C24.0086%2033.887%2024.0144%2033.7972%2024.0042%2033.707C23.9771%2033.7176%2023.9496%2033.7254%2023.9205%2033.725C23.8946%2033.7247%2023.8691%2033.7177%2023.8438%2033.7107C23.812%2033.702%2023.7803%2033.6933%2023.7481%2033.6979C23.6764%2033.7081%2023.639%2033.7721%2023.6004%2033.8381C23.5704%2033.8893%2023.5398%2033.9416%2023.492%2033.971C23.4245%2034.0125%2023.3317%2033.9967%2023.2703%2033.9465C23.2089%2033.8963%2023.1756%2033.8184%2023.1636%2033.74C23.1454%2033.621%2023.1935%2033.4736%2023.311%2033.4474C23.3694%2033.4345%2023.4283%2033.4548%2023.4868%2033.4751C23.5499%2033.4969%2023.6125%2033.5186%2023.6737%2033.4984C23.72%2033.4831%2023.7559%2033.4456%2023.782%2033.4044C23.8402%2033.3126%2023.8465%2033.2108%2023.8373%2033.1079C23.8188%2033.1135%2023.7999%2033.1171%2023.7802%2033.1168C23.7549%2033.1165%2023.73%2033.1096%2023.7052%2033.1028C23.6742%2033.0943%2023.6433%2033.0858%2023.6119%2033.0902C23.5419%2033.1%2023.5053%2033.1625%2023.4676%2033.227C23.4383%2033.2769%2023.4084%2033.328%2023.3617%2033.3566C23.2956%2033.3971%2023.2052%2033.3816%2023.1452%2033.3326C23.0853%2033.2835%2023.0528%2033.2073%2023.0412%2033.1307C23.0235%2033.0145%2023.0706%2032.8707%2023.1854%2032.8453C23.2425%2032.8326%2023.3%2032.8526%2023.3573%2032.8724C23.4187%2032.8937%2023.4798%2032.9149%2023.5395%2032.8953C23.5847%2032.8804%2023.6197%2032.8438%2023.6453%2032.8036C23.6938%2032.7272%2023.7055%2032.6435%2023.7024%2032.5581C23.6848%2032.5613%2023.6671%2032.5626%2023.6492%2032.5605C23.6252%2032.5575%2023.6024%2032.5485%2023.5796%2032.5396C23.551%2032.5283%2023.5225%2032.5171%2023.4922%2032.5181C23.4249%2032.5203%2023.3839%2032.5759%2023.3416%2032.6331C23.3087%2032.6775%2023.2752%2032.723%2023.228%2032.7453C23.1613%2032.7772%2023.077%2032.7533%2023.0252%2032.7007C22.9733%2032.6482%2022.9502%2032.5725%2022.9469%2032.4988C22.9419%2032.3868%2023.0012%2032.2552%2023.1125%2032.2427C23.1679%2032.2365%2023.2204%2032.2612%2023.2727%2032.2858C23.3288%2032.3123%2023.3846%2032.3386%2023.4432%2032.326C23.4876%2032.3164%2023.5246%2032.2852%2023.5529%2032.2497C23.616%2032.1704%2023.632%2032.0764%2023.6337%2031.9799C23.6201%2031.9811%2023.6065%2031.981%2023.5928%2031.9789C23.5677%2031.9751%2023.544%2031.965%2023.5204%2031.9548C23.4908%2031.9422%2023.4614%2031.9296%2023.4296%2031.9297C23.3589%2031.9299%2023.3142%2031.9868%2023.268%2032.0455C23.2322%2032.091%2023.1956%2032.1376%2023.1455%2032.1596C23.0746%2032.1907%2022.987%2032.1631%2022.9343%2032.1063C22.8816%2032.0495%2022.8598%2031.9697%2022.8587%2031.8922C22.857%2031.7748%2022.9232%2031.6386%2023.0403%2031.629C23.0986%2031.6242%2023.1529%2031.6519%2023.2069%2031.6793C23.2649%2031.7088%2023.3225%2031.7381%2023.3843%2031.7268C23.4312%2031.7182%2023.4709%2031.6866%2023.5017%2031.6503C23.5704%2031.5691%2023.59%2031.471%2023.5949%2031.3698C23.5842%2031.3702%2023.5736%2031.3696%2023.5628%2031.3678C23.5386%2031.3638%2023.5158%2031.3536%2023.4931%2031.3434C23.4647%2031.3307%2023.4365%2031.3181%2023.4058%2031.3176C23.3374%2031.3168%2023.2932%2031.3712%2023.2477%2031.4272C23.2124%2031.4707%2023.1762%2031.5152%2023.1274%2031.5356C23.0583%2031.5646%2022.9741%2031.5366%2022.9239%2031.4809C22.8738%2031.4253%2022.854%2031.3475%2022.854%2031.2726C22.8542%2031.1588%2022.9204%2031.0283%2023.0339%2031.0209C23.0902%2031.0171%2023.1423%2031.0447%2023.1941%2031.072C23.2498%2031.1014%2023.3051%2031.1307%2023.3651%2031.1206C23.4105%2031.113%2023.4494%2031.0832%2023.4798%2031.0485C23.5436%2030.9754%2023.5655%2030.8872%2023.573%2030.7955C23.549%2030.7989%2023.5252%2030.7998%2023.5014%2030.7945C23.4773%2030.7891%2023.455%2030.7776%2023.4327%2030.7662C23.4048%2030.7519%2023.377%2030.7376%2023.3461%2030.7356C23.2774%2030.7312%2023.2301%2030.7835%2023.1813%2030.8375C23.1435%2030.8794%2023.1048%2030.9222%2023.0545%2030.9403C22.9835%2030.9658%2022.9002%2030.9329%2022.8528%2030.8744C22.8053%2030.8157%2022.7895%2030.7364%2022.7936%2030.6611C22.7998%2030.5467%2022.8732%2030.4189%2022.9877%2030.4174C23.0447%2030.4166%2023.0956%2030.4471%2023.1462%2030.4773C23.2007%2030.5099%2023.2548%2030.5422%2023.3156%2030.5353C23.3618%2030.5302%2023.4025%2030.5021%2023.4348%2030.4689C23.5122%2030.3891%2023.5361%2030.2868%2023.5463%2030.1812C23.5234%2030.1749%2023.5022%2030.163%2023.4811%2030.1512C23.4537%2030.136%2023.4265%2030.1208%2023.3957%2030.1177C23.3272%2030.1107%2023.278%2030.1614%2023.2274%2030.2136C23.1881%2030.2541%2023.1479%2030.2955%2023.097%2030.3118C23.0252%2030.3348%2022.9431%2030.2991%2022.8978%2030.2388C22.8524%2030.1784%2022.8394%2030.0987%2022.8461%2030.0236C22.8564%2029.9096%2022.9343%2029.7843%2023.0488%2029.7869C23.1058%2029.7882%2023.1556%2029.8204%2023.2051%2029.8525C23.2584%2029.887%2023.3113%2029.9212%2023.3723%2029.9165C23.4186%2029.9129%2023.4603%2029.8863%2023.4938%2029.8542C23.5746%2029.7767%2023.6019%2029.6746%2023.6158%2029.5688C23.6133%2029.5682%2023.6108%2029.5677%2023.6083%2029.567C23.585%2029.561%2023.5636%2029.5491%2023.5423%2029.5372C23.5156%2029.5223%2023.489%2029.5075%2023.459%2029.5045C23.3923%2029.4977%2023.3444%2029.5471%2023.295%2029.598C23.2567%2029.6374%2023.2175%2029.6778%2023.168%2029.6937C23.0979%2029.7161%2023.018%2029.6813%2022.9738%2029.6224C22.9296%2029.5637%2022.9169%2029.4861%2022.9235%2029.4128C22.9335%2029.3016%2023.0094%2029.1797%2023.121%2029.1822C23.1764%2029.1834%2023.225%2029.2148%2023.2733%2029.246C23.3252%2029.2796%2023.3768%2029.3129%2023.4362%2029.3083C23.4813%2029.3048%2023.5219%2029.2789%2023.5546%2029.2477C23.6405%2029.1654%2023.6644%2029.0542%2023.6769%2028.9411C23.6666%2028.9351%2023.6566%2028.9284%2023.6467%2028.9218C23.6212%2028.9047%2023.5959%2028.8877%2023.5662%2028.8823C23.5001%2028.8701%2023.4484%2028.9154%2023.395%2028.9622C23.3536%2028.9984%2023.3114%2029.0354%2023.2607%2029.0472C23.1891%2029.0638%2023.1122%2029.0227%2023.0729%2028.9604C23.0337%2028.8983%2023.0273%2028.8199%2023.0399%2028.7475C23.0588%2028.6374%2023.1444%2028.522%2023.2554%2028.5336C23.3106%2028.5393%2023.3565%2028.5745%2023.4021%2028.6096C23.4511%2028.6472%2023.4998%2028.6847%2023.5594%2028.6849C23.6047%2028.6852%2023.6473%2028.6626%2023.6823%2028.6341C23.7624%2028.5689%2023.7978%2028.4783%2023.8198%2028.3824C23.7998%2028.373%2023.782%2028.3593%2023.7642%2028.3456C23.7399%2028.327%2023.7158%2028.3085%2023.6865%2028.3012C23.6214%2028.2849%2023.5669%2028.3268%2023.5107%2028.37C23.4671%2028.4035%2023.4225%2028.4378%2023.3712%2028.4462C23.2986%2028.4583%2023.2245%2028.4123%2023.1892%2028.3478C23.154%2028.2833%2023.1527%2028.2046%2023.1698%2028.1331C23.1958%2028.0245%2023.2885%2027.9147%2023.3986%2027.9334C23.4533%2027.9426%2023.4968%2027.9807%2023.5401%2028.0186C23.5866%2028.0593%2023.6328%2028.0998%2023.6923%2028.1038C23.7374%2028.1069%2023.7814%2028.0872%2023.8182%2028.0609C23.906%2027.9983%2023.9468%2027.9051%2023.9751%2027.8063L23.973%2027.8048C23.9483%2027.7868%2023.9238%2027.7689%2023.8943%2027.7622C23.8289%2027.7474%2023.7753%2027.7906%2023.7202%2027.8352C23.6774%2027.8697%2023.6336%2027.905%2023.5826%2027.9147C23.5103%2027.9285%2023.4351%2027.8843%2023.3984%2027.8206C23.3616%2027.7569%2023.3585%2027.6783%2023.3738%2027.6063C23.3972%2027.4973%2023.4874%2027.3853%2023.5978%2027.4013C23.6527%2027.4093%2023.6971%2027.4463%2023.7412%2027.4832C23.7887%2027.5228%2023.8359%2027.5622%2023.8955%2027.5648ZM23.9335%2028.4652C23.9355%2028.4428%2023.9374%2028.42%2023.935%2028.3981L23.9436%2028.3978C23.9727%2028.3968%2024.002%2028.3959%2024.0303%2028.4011C24.118%2028.4172%2024.18%2028.4866%2024.2419%2028.5559C24.3022%2028.6233%2024.3624%2028.6907%2024.4461%2028.709C24.4124%2028.7073%2024.3777%2028.7121%2024.3451%2028.7203C24.318%2028.7272%2024.2913%2028.7362%2024.2647%2028.7452C24.2236%2028.7591%2024.1825%2028.773%2024.1397%2028.7791C24.0778%2028.7879%2024.0063%2028.776%2023.9697%2028.7254C23.9523%2028.7015%2023.945%2028.6719%2023.9399%2028.6428C23.9307%2028.5895%2023.9281%2028.535%2023.9322%2028.481C23.9326%2028.4758%2023.9331%2028.4705%2023.9335%2028.4652ZM23.703%2030.8358C23.7013%2030.8149%2023.6995%2030.7938%2023.6945%2030.7738C23.7002%2030.7734%2023.7059%2030.7731%2023.7116%2030.7731C23.8031%2030.7732%2023.8784%2030.8318%2023.9538%2030.8904C24.0291%2030.9489%2024.1043%2031.0075%2024.1955%2031.0075C24.1834%2031.0116%2024.1716%2031.0162%2024.1601%2031.0213C24.1339%2031.0329%2024.1086%2031.0466%2024.0833%2031.0602C24.0445%2031.0812%2024.0058%2031.1021%2023.9639%2031.1156C23.9033%2031.1351%2023.8294%2031.1354%2023.7839%2031.0908C23.7624%2031.0697%2023.75%2031.0413%2023.74%2031.0129C23.7215%2030.961%2023.7096%2030.9068%2023.7044%2030.852C23.7039%2030.8466%2023.7035%2030.8412%2023.703%2030.8358ZM23.8327%2032.5222C23.8354%2032.5318%2023.8377%2032.5417%2023.84%2032.5514C23.8413%2032.5568%2023.8426%2032.5622%2023.8439%2032.5675C23.8578%2032.6228%2023.8786%2032.6762%2023.9056%2032.7266C23.9202%2032.7539%2023.9374%2032.7809%2023.9627%2032.7991C24.0162%2032.8375%2024.0915%2032.8258%2024.1504%2032.7962C24.1912%2032.7757%2024.2277%2032.7482%2024.2642%2032.7206C24.2735%2032.7136%2024.2828%2032.7065%2024.2922%2032.6996C24.2245%2032.6895%2024.1617%2032.6499%2024.0989%2032.6103C24.0199%2032.5605%2023.9408%2032.5107%2023.8518%2032.5194C23.8454%2032.52%2023.839%2032.521%2023.8327%2032.5222ZM24.1417%2033.6562C24.1452%2033.6659%2024.1484%2033.6758%2024.1516%2033.6857C24.1535%2033.6913%2024.1553%2033.6969%2024.1572%2033.7025C24.1767%2033.76%2024.2034%2033.8152%2024.2365%2033.8662C24.2546%2033.8941%2024.2753%2033.9213%2024.304%2033.9383C24.3647%2033.9743%2024.4449%2033.9547%2024.5058%2033.9178C24.5478%2033.8925%2024.5847%2033.8598%2024.6215%2033.8272L24.6354%2033.8149C24.6415%2033.8095%2024.6475%2033.8042%2024.6536%2033.799C24.5694%2033.8063%2024.488%2033.7665%2024.4065%2033.7266C24.3194%2033.684%2024.2323%2033.6414%2024.1417%2033.6562Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%0A%3Cpath%20d%3D%22M27.2481%2044.0002C27.2481%2044.0002%2026.7695%2042.5736%2026.7869%2041.634C26.8044%2040.6943%2027.1436%2039.8506%2027.1436%2039.8506C27.1436%2039.8506%2027.3699%2039.2502%2027.1611%2038.7979C26.9522%2038.3455%2026.6216%2037.8759%2026.0996%2038.0933C25.5776%2038.3107%2025.3967%2038.5804%2025.3967%2038.5804C25.3967%2038.5804%2025.268%2038.7719%2025.3967%2038.911C25.5254%2039.0502%2025.856%2039.5636%2025.856%2040.1985C25.856%2040.8335%2025.8821%2042.6605%2027.2481%2044.0002Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%0A%3Cpath%20d%3D%22M20.4531%2030.695C21.7268%2031.2256%2022.9849%2032.9004%2022.9849%2032.9004C20.3922%2031.0814%2017.8375%2031.5801%2017.521%2031.7089C17.4772%2031.7267%2017.433%2031.7401%2017.3869%2031.7504C16.8973%2031.8602%2015.6157%2031.9862%2015.6157%2031.9862C16.042%2032.1166%2017.1469%2031.9687%2017.1469%2031.9687C17.1469%2031.9687%2017.5732%2031.847%2018.8%2031.8034C20.0268%2031.7599%2022.793%2033.2912%2022.793%2033.2912C17.8159%2036.3969%2014.3193%2031.7277%2014.3193%2031.7277C14.6772%2031.7923%2015.2888%2031.5675%2015.7127%2031.4118C15.8762%2031.3517%2016.0119%2031.3018%2016.0942%2031.2828C16.197%2031.2591%2016.3629%2031.1792%2016.5743%2031.0774C16.9711%2030.8862%2017.5284%2030.6178%2018.1301%2030.4986C19.0523%2030.3158%2019.5222%2030.3072%2020.4531%2030.695Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_4183_3901%22%3E%0A%3Crect%20width%3D%2253.3332%22%20height%3D%2259.9999%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A')
    no-repeat center/contain;
}

.footer-logo__text {
  aspect-ratio: 1420/253;
  height: 35px;
  background: no-repeat 0 50% / contain;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social__item {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 56px;
  background: var(--green-4, rgba(2, 195, 88, 0.04));
  border-radius: var(--12, 12px);
  transition: var(--transition, 0.3s ease);
}

.footer-social__item:hover {
  background: var(--primary, #02c358);
}

.footer-social__item:hover path {
  fill: var(--white, #ffffff);
}

.footer-social__item path {
  transition: var(--transition, 0.3s ease);
  fill: var(--primary, #02c358);
}

.footer__copyright {
  color: var(--grey-40, #f5f5f5);
  font-size: var(--xs);
  line-height: 120%;
}

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

.footer-menu {
  display: flex;
  gap: 20px;
}

.footer-menu__link {
  font-size: var(--btn);
  line-height: 115%;
  font-weight: 600;
  transition: var(--transition, 0.3s ease);
  color: var(--primary);
}

.footer-menu__link:hover {
  color: var(--white);
}

.footer-developed {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--xs);
  line-height: 120%;
  color: var(--grey-40, #f5f5f5);
}

.footer-developed__logo {
  aspect-ratio: 62/24;
  height: 24px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2262%22%20height%3D%2224%22%20viewBox%3D%220%200%2062%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M13.9697%200L5.625%2024H1.875C0.839466%2024%200%2023.1605%200%2022.125V1.875C0%200.839466%200.839466%200%201.875%200H13.9697ZM22.1709%2021.0137L22.918%2023.8213C22.6768%2023.9342%2022.4089%2024%2022.125%2024H14.873L15.5234%2021.0137H22.1709ZM18.9014%208.02441C19.0218%209.00773%2019.3406%209.9072%2019.5332%2010.7227L20.6533%2015.3281H17.1494L18.3418%2010.7227C18.5826%209.7873%2018.8772%208.88783%2018.9014%208.02441Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M58.245%2017.7772C58.245%2017.4585%2058.0857%2017.2991%2057.7669%2017.2991H56.4124C56.0936%2017.2991%2055.9343%2017.4585%2055.9343%2017.7772V20.327C55.9343%2020.6457%2056.0936%2020.8051%2056.4124%2020.8051H57.7669C58.0857%2020.8051%2058.245%2020.6457%2058.245%2020.327V17.7772ZM59.6793%2020.327C59.6793%2020.8848%2059.5518%2021.2912%2059.2968%2021.5461C59.0471%2021.7958%2058.6434%2021.9206%2058.0857%2021.9206H56.0936C55.5359%2021.9206%2055.1295%2021.7958%2054.8745%2021.5461C54.6248%2021.2912%2054.5%2020.8848%2054.5%2020.327V17.7772C54.5%2017.2195%2054.6248%2016.8157%2054.8745%2016.5661C55.1295%2016.3111%2055.5359%2016.1836%2056.0936%2016.1836H58.0857C58.6434%2016.1836%2059.0471%2016.3111%2059.2968%2016.5661C59.5518%2016.8157%2059.6793%2017.2195%2059.6793%2017.7772V20.327Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M53.7806%2021.9214H50.9121V20.8059H51.6292V17.4593H50.9121V16.3438H53.7806V17.4593H53.0635V20.8059H53.7806V21.9214Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M48.5246%2016.3438C49.1248%2016.3438%2049.579%2016.5005%2049.8871%2016.8139C50.2005%2017.122%2050.3572%2017.5762%2050.3572%2018.1764V20.0888C50.3572%2020.689%2050.2005%2021.1459%2049.8871%2021.4593C49.579%2021.7674%2049.1248%2021.9214%2048.5246%2021.9214H45.417V16.3438H48.5246ZM48.923%2018.1764C48.923%2017.6983%2048.6839%2017.4593%2048.2058%2017.4593H46.8513V20.8059H48.2058C48.6839%2020.8059%2048.923%2020.5669%2048.923%2020.0888V18.1764Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M43.0261%2016.3438H44.4604V20.4075C44.4604%2020.9653%2044.3329%2021.3716%2044.0779%2021.6266C43.8282%2021.8763%2043.4245%2022.0011%2042.8667%2022.0011H41.0341C40.4763%2022.0011%2040.0699%2021.8763%2039.8149%2021.6266C39.5653%2021.3716%2039.4404%2020.9653%2039.4404%2020.4075V16.3438H40.8747V20.4075C40.8747%2020.7262%2041.0341%2020.8856%2041.3528%2020.8856H42.548C42.8667%2020.8856%2043.0261%2020.7262%2043.0261%2020.4075V16.3438Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M37.2082%2021.9214H35.7739V17.4593H34.1006V16.3438H38.8815V17.4593H37.2082V21.9214Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M29.391%2020.7661C30.8466%2020.8457%2031.832%2020.8856%2032.3472%2020.8856C32.4694%2020.8856%2032.565%2020.8511%2032.6341%2020.782C32.7084%2020.7076%2032.7456%2020.6094%2032.7456%2020.4872V19.77H30.913C30.3552%2019.77%2029.9488%2019.6452%2029.6938%2019.3955C29.4442%2019.1406%2029.3193%2018.7342%2029.3193%2018.1764V17.9374C29.3193%2017.3796%2029.4442%2016.9759%2029.6938%2016.7262C29.9488%2016.4712%2030.3552%2016.3438%2030.913%2016.3438H33.7098V17.4593H31.2317C30.913%2017.4593%2030.7536%2017.6187%2030.7536%2017.9374V18.0967C30.7536%2018.4155%2030.913%2018.5748%2031.2317%2018.5748H32.6659C33.1865%2018.5748%2033.569%2018.697%2033.8134%2018.9414C34.0577%2019.1857%2034.1799%2019.5682%2034.1799%2020.0888V20.4872C34.1799%2021.0078%2034.0577%2021.3902%2033.8134%2021.6346C33.569%2021.8789%2033.1865%2022.0011%2032.6659%2022.0011C32.395%2022.0011%2032.1082%2021.9958%2031.8054%2021.9852L31.0723%2021.9533C30.5305%2021.9268%2029.9701%2021.8896%2029.391%2021.8418V20.7661Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M59.0368%2013.634H61.9452V14.7496H57.6025V9.17188H59.0368V13.634Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M52.9405%2014.7496H51.3867L53.4983%209.17188H55.0919L57.2035%2014.7496H55.6497L55.2911%2013.7535H53.2991L52.9405%2014.7496ZM53.6576%2012.7177H54.9325L54.2951%2010.8452L53.6576%2012.7177Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M50.2726%2014.7496H48.8383V10.2874H47.165V9.17188H51.9459V10.2874H50.2726V14.7496Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M46.848%2014.7496H43.9795V13.634H44.6966V10.2874H43.9795V9.17188H46.848V10.2874H46.1309V13.634H46.848V14.7496Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M43.4197%2014.63C42.1767%2014.7628%2041.0346%2014.8292%2039.9934%2014.8292C39.4729%2014.8292%2039.0904%2014.7071%2038.846%2014.4627C38.6017%2014.2184%2038.4795%2013.8359%2038.4795%2013.3153V10.7655C38.4795%2010.2077%2038.6043%209.80401%2038.854%209.55434C39.109%209.29936%2039.5153%209.17188%2040.0731%209.17188H42.9416V10.2874H40.3918C40.0731%2010.2874%2039.9138%2010.4468%2039.9138%2010.7655V13.3153C39.9138%2013.4375%2039.9483%2013.5358%2040.0173%2013.6101C40.0917%2013.6792%2040.19%2013.7137%2040.3122%2013.7137C40.9231%2013.7137%2041.4808%2013.7004%2041.9855%2013.6739V12.5185H40.9496V11.5623H43.4197V14.63Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M37.9222%2014.7496H35.0537V13.634H35.7708V10.2874H35.0537V9.17188H37.9222V10.2874H37.2051V13.634H37.9222V14.7496Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M32.6652%209.17188C33.2655%209.17188%2033.7196%209.32858%2034.0277%209.64199C34.3411%209.9501%2034.4979%2010.4043%2034.4979%2011.0045V12.9169C34.4979%2013.5172%2034.3411%2013.974%2034.0277%2014.2874C33.7196%2014.5955%2033.2655%2014.7496%2032.6652%2014.7496H29.5576V9.17188H32.6652ZM33.0636%2011.0045C33.0636%2010.5265%2032.8245%2010.2874%2032.3465%2010.2874H30.9919V13.634H32.3465C32.8245%2013.634%2033.0636%2013.395%2033.0636%2012.9169V11.0045Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M43.4907%206.42231C44.9462%206.50199%2045.9316%206.54183%2046.4468%206.54183C46.569%206.54183%2046.6646%206.5073%2046.7337%206.43825C46.8081%206.36388%2046.8452%206.2656%2046.8452%206.14343V5.42629H45.0126C44.4548%205.42629%2044.0484%205.30146%2043.7934%205.05179C43.5438%204.79681%2043.4189%204.39044%2043.4189%203.83267V3.59363C43.4189%203.03586%2043.5438%202.63214%2043.7934%202.38247C44.0484%202.12749%2044.4548%202%2045.0126%202H47.8094V3.11554H45.3313C45.0126%203.11554%2044.8532%203.2749%2044.8532%203.59363V3.75299C44.8532%204.07171%2045.0126%204.23108%2045.3313%204.23108H46.7656C47.2861%204.23108%2047.6686%204.35325%2047.913%204.59761C48.1573%204.84197%2048.2795%205.22444%2048.2795%205.74502V6.14343C48.2795%206.66401%2048.1573%207.04648%2047.913%207.29084C47.6686%207.53519%2047.2861%207.65737%2046.7656%207.65737C46.4946%207.65737%2046.2078%207.65206%2045.905%207.64143L45.1719%207.60956C44.6301%207.583%2044.0697%207.54582%2043.4907%207.49801V6.42231Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M42.9418%207.57769H40.0732V6.46215H40.7904V3.11554H40.0732V2H42.9418V3.11554H42.2246V6.46215H42.9418V7.57769Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M37.005%205.90438L38.3596%202H39.9134L37.8019%207.57769H36.2082L34.0967%202H35.6505L37.005%205.90438Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M30.5538%207.57769H29L31.1116%202H32.7052L34.8167%207.57769H33.2629L32.9044%206.58167H30.9124L30.5538%207.57769ZM31.2709%205.54582H32.5458L31.9084%203.67331L31.2709%205.54582Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M54.5%2017.46C54.5%2016.7561%2055.0706%2016.1855%2055.7744%2016.1855H58.9606C59.6644%2016.1855%2060.235%2016.7561%2060.235%2017.46V20.6461C60.235%2021.35%2059.6644%2021.9205%2058.9606%2021.9205H55.7744C55.0706%2021.9205%2054.5%2021.35%2054.5%2020.6461V17.46Z%22%20fill%3D%22%2302C358%22%2F%3E%0A%3C%2Fsvg%3E%0A')
    no-repeat 50% / contain;
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto; 
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 32px;
  height: fit-content;
}

.modal-overlay .close-button {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: 0.2s linear;
  background: 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='M12.5 4.54656L11.4534 3.5L8 6.95344L4.54656 3.5L3.5 4.54656L6.95344 8L3.5 11.4534L4.54656 12.5L8 9.04656L11.4534 12.5L12.5 11.4534L9.04656 8L12.5 4.54656Z' fill='%23787D80'/%3E%3C/svg%3E")
    50% no-repeat;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-form {
  display: flex;
  gap: 32px;
  padding: 32px;
  border-radius: var(--32, 32px);
  background: var(--secondary, #1b2225);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  color: var(--white);
  width: 100%;
  max-width: 796px;
}

.modal-form__form {
  display: flex;
  flex-flow: column;
  gap: 16px;
}

.modal-form__image {
  background: 50% / contain no-repeat;
  width: 100%;
  max-width: 340px;
}

.modal-form__content {
  width: 100%;
  max-width: 360px;
  flex-shrink: 0;
}

.countdownHolder {
  margin: 0 auto;
  font:
    100px/75% var(--default-font-family),
    sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  justify-content: center;
  gap: 20px;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.6em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 300;
}

.countdownHolder .countelement {
  display: flex;
}

.countdownHolder .countDiv0,
.countdownHolder .wrapDays {
  display: none !important;
}

.countdownHolder .countDiv {
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  content: '';
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: var(--xs);
  line-height: 120%;
  letter-spacing: normal;
  margin-top: -20px;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --sp: 80px;
    --btn: 12px;
    --menu: 16px;
    --huge: 64px;
    --h1: 28px;
    --h2: 22px;
    --h3: 18px;
    --h4: 14px;
    --h5: 13px;
    --h6: 12px;
    --m: 13px;
    --s: 12px;
    --xs: 10px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: -32px;
    width: 32px;
    height: 32px;
  }

  h1,
  ._h1 {
    line-height: 115%;
  }

  h3,
  ._h3 {
    line-height: 120%;
  }

  h4,
  ._h4 {
    line-height: 125%;
  }

  .btn {
    height: 40px;
  }

  .form {
    text-align: center;
  }

  .header {
    padding: 12px 0;
  }

  .header__logo {
    width: 119px;
  }

  .header-menu__link {
    line-height: 125%;
  }

  .header-menu__link {
    font-size: 13px;
  }

  .error404__code {
    font-size: 150px;
  }

  .error404__code:before {
    width: 360px;
  }

  .footer {
    padding: var(--sp) 0;
    border-radius: 32px 32px 0 0;
  }

  .footer:before {
    width: 1210px;
  }

  .footer__container {
    gap: 48px;
  }

  .footer-social__item {
    width: 48px;
    border-radius: var(--8, 8px);
  }

  .modal-overlay {
    padding: 30px 10px; 
    align-items: normal;
  }

  .modal-overlay .modal-content {
    border-radius: var(--20, 20px);
  }

  .modal-form {
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    padding: 20px;
    align-items: center;
  }

  .modal-form__image {
    aspect-ratio: 272/322;
    max-width: 272px;
  }

  .countdownHolder {
    gap: 8px;
    font-size: 56px;
  }

  .countdownHolder .countDiv:before,
  .countdownHolder .countDiv:after {
    width: 6px;
    height: 6px;
  }

  .countdownHolder .textdigit {
    margin-top: -10px;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 360px;
  }

  [class*='__container'] {
    flex-direction: column;
  }

  .header {
    position: absolute;
  }

  .header:after {
    background: var(--white-4, rgba(255, 255, 255, 0.04));
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    content: '';
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
  }

  .header-menu {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translate(-50%, 100%);
    width: calc(var(--container-width) + 20px);
    border-radius: var(--20, 20px) var(--20, 20px) 0 0;
    background: var(--secondary, #1b2225);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    padding: 20px;
    display: flex;
    flex-flow: column;
    gap: 2px;
    z-index: 10;
    padding-bottom: 78px;
  }

  .header-menu:before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--grey-500, #787d80);
    margin: 0 auto 16px;
  }

  .header-menu__link {
    padding: 12px 8px;
    text-align: center;
    font-size: 16px;
    justify-content: center;
  }

  .header__button {
    position: fixed;
    bottom: 4px;
    right: calc(50% - var(--container-width) / 2 + 10px);
    z-index: 100;
  }

  .header-burger {
    position: fixed;
    bottom: 4px;
    left: calc(50% - var(--container-width) / 2 + 10px);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: var(--8, 8px);
    background: var(--grey-700, #3f494d);
    color: var(--white);
    padding: 12px 16px;
  }

  .header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .header-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .error404__container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .error404__content {
    text-align: center;
  }

  .error404__code:before {
    width: 300px;
  }

  .footer-logo {
    justify-content: center;
    flex-direction: column;
  }

  .footer__copyright {
    order: 2;
  }

  .footer__bottom {
    flex-wrap: wrap;
    gap: 16px; 
  }

  .footer-menu {
    order: 1;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    flex-direction: column;
    align-items: center;
  }

  .footer-developed {
    order: 3;
  }

  .footer__container {
    align-items: center;
  }

  .footer-contacts {
    text-align: center;
  }
}
