@font-face {
  font-family: 'Tilda Sans VF';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/TildaSansVF/TildaSans-Light/TildaSans-Light.eot');
  src: url('../fonts/TildaSansVF/TildaSans-Light/TildaSans-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/TildaSansVF/TildaSans-Light/TildaSans-Light.woff2') format('woff2'), url('../fonts/TildaSansVF/TildaSans-Light/TildaSans-Light.woff') format('woff');
}
@font-face {
  font-family: 'Tilda Sans VF';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/TildaSansVF/TildaSans-Regular/TildaSans-Regular.eot');
  src: url('../fonts/TildaSansVF/TildaSans-Regular/TildaSans-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/TildaSansVF/TildaSans-Regular/TildaSans-Regular.woff2') format('woff2'), url('../fonts/TildaSansVF/TildaSans-Regular/TildaSans-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Tilda Sans VF';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/TildaSansVF/TildaSans-Medium/TildaSans-Medium.eot');
  src: url('../fonts/TildaSansVF/TildaSans-Medium/TildaSans-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/TildaSansVF/TildaSans-Medium/TildaSans-Medium.woff2') format('woff2'), url('../fonts/TildaSansVF/TildaSans-Medium/TildaSans-Medium.woff') format('woff');
}
@font-face {
  font-family: 'Tilda Sans VF';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/TildaSansVF/TildaSans-Semibold/TildaSans-Semibold.eot');
  src: url('../fonts/TildaSansVF/TildaSans-Semibold/TildaSans-Semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/TildaSansVF/TildaSans-Semibold/TildaSans-Semibold.woff2') format('woff2'), url('../fonts/TildaSansVF/TildaSans-Semibold/TildaSans-Semibold.woff') format('woff');
}
@font-face {
  font-family: 'Tilda Sans VF';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/TildaSansVF/TildaSans-Bold/TildaSans-Bold.eot');
  src: url('../fonts/TildaSansVF/TildaSans-Bold/TildaSans-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/TildaSansVF/TildaSans-Bold/TildaSans-Bold.woff2') format('woff2'), url('../fonts/TildaSansVF/TildaSans-Bold/TildaSans-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Tilda Sans VF';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/TildaSansVF/TildaSans-ExtraBold/TildaSans-ExtraBold.eot');
  src: url('../fonts/TildaSansVF/TildaSans-ExtraBold/TildaSans-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../fonts/TildaSansVF/TildaSans-ExtraBold/TildaSans-ExtraBold.woff2') format('woff2'), url('../fonts/TildaSansVF/TildaSans-ExtraBold/TildaSans-ExtraBold.woff') format('woff');
}
@font-face {
  font-family: 'Tilda Sans VF';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/TildaSansVF/TildaSans-Black/TildaSans-Black.eot');
  src: url('../fonts/TildaSansVF/TildaSans-Black/TildaSans-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/TildaSansVF/TildaSans-Black/TildaSans-Black.woff2') format('woff2'), url('../fonts/TildaSansVF/TildaSans-Black/TildaSans-Black.woff') format('woff');
}
:root {
  --body_color: #EDF2F8;
  --orange: #ff4249;
  --blue: #000b8c;
  --white: #fff;
  --grey: #ced2d5;
  --black: #2d2a26;
  --font-family: "Tilda Sans VF", sans-serif;
  --second-family: "Geologica", sans-serif;
}
html,
body {
  padding: 0;
  margin: 0;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  height: 0;
  width: 0;
}
body {
  background-color: var(--body_color);
  font-family: var(--font-family);
}
.d-flex {
  display: flex;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.container {
  margin: 0 auto;
  width: calc(100% - 30px);
}
@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1680px) {
  .container {
    max-width: 1620px;
  }
}
header,
main,
section,
div {
  position: relative;
  display: block;
}
.z_index_1 {
  z-index: 1;
}
.z_index_2 {
  z-index: 2;
}
.z_index_3 {
  z-index: 3;
}
.z_index_4 {
  z-index: 4;
}
.z_index_5 {
  z-index: 5;
}
.header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header .header_content {
  background: var(--blue);
  padding: 15px;
  display: flex;
  width: calc(100% - 30px);
  border-radius: 0 0 15px 15px;
}
@media (min-width: 1200px) {
  .header .header_content {
    border-radius: 0 0 20px 20px;
    padding: 20px;
  }
}
@media (min-width: 1400px) {
  .header .header_content {
    border-radius: 0 0 25px 25px;
    padding: 25px;
  }
}
@media (min-width: 1680px) {
  .header .header_content {
    border-radius: 0 0 30px 30px;
    padding: 30px 60px;
  }
}
.header .header_content .logo {
  margin: auto 0;
  text-decoration: none;
  outline: none;
}
.header .header_content .logo svg {
  fill: var(--white);
  width: 64px;
  height: 38px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (min-width: 1200px) {
  .header .header_content .logo svg {
    width: 85px;
    height: 50px;
  }
}
@media (min-width: 1680px) {
  .header .header_content .logo svg {
    width: 105px;
    height: 62px;
  }
}
.header .header_content .logo:hover svg {
  fill: var(--orange);
}
.header .header_content .toggle_menu {
  width: 30px;
  height: 18px;
  margin: auto 0 auto auto;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='18' viewBox='0 0 30 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 17H1M29 9H1M29 1H1' stroke='white' stroke-width='2' stroke-linecap='round' /%3E%3C/svg%3E");
}
.header .header_content .toggle_menu.active {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5018 16.4995L1.50183 1.49955M1.50183 16.4995L16.5018 1.49951' stroke='white' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round' /%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  .header .header_content .toggle_menu {
    display: none;
  }
}
.header .header_content .menu {
  position: relative;
  margin-left: auto;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .header .header_content .menu {
    position: absolute;
    flex-direction: column;
    text-align: center;
    top: -200vh;
    left: 0;
    padding-top: 125px;
    width: 100%;
    height: calc(100svh - 145px);
    background-color: var(--blue);
    z-index: -1;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
    background-image: url("data:image/svg+xml,%3Csvg width='375' height='402' viewBox='0 0 375 402' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_143_37)'%3E%3Crect width='375' height='402' fill='%23FF4249'/%3E%3Cpath d='M219.332 53.0342C208.956 67.2458 199.915 83.0921 184.801 92.6333C159.378 105.677 164.416 70.7153 167.952 53.0342H154.273C149.969 76.8871 148.768 114.851 181.998 108.013C207.455 99.6056 220.333 73.3842 235.614 53.0342H219.366H219.332Z' fill='%23000B8C'/%3E%3Cpath d='M0 -59H375V7.5C375 111.053 291.053 195 187.5 195C83.9466 195 0 111.053 0 7.5V-59Z' fill='%23000B8C'/%3E%3Cpath d='M937.166 192.773C947.604 61.6775 870.238 13.4831 769.416 -44.2901C767.784 -45.4928 767.612 -46.1371 768.944 -47.7693C799.358 -80.9299 813.963 -143.643 767.784 -170.231C727.403 -194.586 689.214 -155.97 701.371 -115.894C707.256 -88.5756 721.733 -65.9817 741.107 -46.2658C741.837 -45.4926 743.255 -44.9774 741.623 -43.5169C666.189 27.7867 578.082 -13.8786 505.14 -64.3495C450.068 -101.247 380.563 -66.1967 350.578 -13.7068C349.59 -12.0746 348.602 -11.559 346.712 -11.6449C337.777 -12.0314 328.884 -11.5592 320.035 -10.2706C279.913 -4.60063 243.828 10.6911 211.953 35.7333C135.703 -9.66911 53.9979 32.8124 0 93.9359V120.697C27.6218 87.0635 60.2694 55.4492 102.798 40.8018C134.457 29.5908 165.688 29.7628 195.458 47.3739C197.133 48.3619 197.219 48.8772 195.844 50.2518C159.974 86.4191 137.808 140.326 154.776 190.54C168.738 239.163 231.327 231.604 247.995 190.797C270.419 147.027 260.366 84.4861 225.657 49.6504C224.926 48.9201 223.165 48.3189 225.184 46.8155C259.164 21.6015 296.924 6.95419 339.452 5.23604C341.042 5.15013 341.428 5.45073 340.827 7.04004C328.111 44.41 334.641 89.9414 363.551 118.291C390.099 143.505 429.706 137.406 445.901 105.362C471.289 53.0009 421.845 -1.93741 370.296 -9.11072C360.63 -10.3134 405.263 -49.8312 410.933 -50.4755C472.363 -90.6804 524.901 -22.0829 579.973 -2.4529C637.923 23.2336 708.244 13.4403 753.693 -31.7903C755.197 -33.1648 756.056 -33.2507 757.689 -32.048C761.942 -28.8694 766.237 -25.777 770.705 -22.8991C882.008 30.9653 944.297 109.271 914.055 224.345C913.625 226.063 913.195 227.094 910.919 226.965C850.692 225.418 780.972 242.686 745.746 295.347C701.672 391.908 871.913 394.829 924.364 247.54C924.923 246.122 925.267 245.177 927.157 245.435C950.698 248.613 972.907 256.603 993.87 267.513V248.399C917.448 212.188 929.734 253.467 937.037 192.687M242.926 138.007C242.41 158.668 239.017 178.212 225.313 194.491C203.92 219.748 172.304 206.476 168.609 177.052C159.115 133.497 178.833 91.7885 208.947 61.1193C210.794 59.2293 211.653 59.6157 213.242 61.205C234.549 82.5102 242.195 109.013 242.926 138.05M427.601 103.128C415.659 119.966 392.892 121.684 376.525 107.08C358.225 90.8003 352.855 67.0469 351.566 43.6369C351.308 37.1938 355.003 8.28572 360.759 6.52461C405.564 9.53139 455.953 57.8546 427.601 103.085M755.412 -57.9064C754.639 -56.9614 754.166 -57.2621 753.479 -57.9064C729.079 -78.6962 689.515 -155.498 742.997 -160.352C754.639 -159.708 764.003 -154.51 771.091 -145.404C777.836 -136.77 780.456 -126.676 780.328 -112.029C779.726 -93.2148 769.287 -74.7873 755.369 -57.8634M903.358 254.24C886.261 290.708 861.99 320.733 824.96 338.731C811.042 345.475 796.308 349.04 780.714 346.549C756.4 342.683 747.937 324.213 760.954 303.251C790.637 260.555 846.869 245.993 896.399 243.717C907.997 243.545 908.298 243.717 903.358 254.197' fill='%23000B8C'/%3E%3Cpath d='M205.639 796.871C147.431 721.959 162.681 639.874 262.386 616.937C327.381 603.964 396.5 601.473 454.192 565.306C560.384 511.828 650.81 287.694 494.014 245.599C463.729 237.18 427.215 245.642 401.612 224.638C390.873 215.402 402.772 201.314 412.824 197.491C420.685 194.312 428.847 194.57 437.009 195.429C485.122 205.695 539.721 171.546 516.223 118.326C509.178 97.6226 486.067 65.5358 515.149 52.1771C546.465 37.4868 539.721 77.6488 541.482 96.162C541.01 149.124 613.565 162.655 630.319 109.821C633.541 100.2 635.431 88.9886 643.722 82.2019C652.7 118.971 615.112 146.977 585.213 159.347C560.212 169.012 511.669 189.501 542.513 220.901C586.244 260.547 635.173 207.928 681.439 204.406C686.637 203.633 687.109 205.695 684.059 209.518C677.143 219.354 667.177 225.54 656.996 231.381C599.776 255.049 563.477 323.947 601.236 377.253C619.579 403.326 656.652 415.182 661.034 450.146C662.752 463.161 662.924 476.391 664.771 489.406C668.423 537.3 722.549 557.789 763.187 539.791C841.971 511.055 903.316 421.625 993.956 438.248V420.895C886.132 403.498 829.256 512.172 734.19 528.924C696.56 533.348 677.529 499.629 679.935 467.113C679.935 436.873 667.692 412.905 644.022 394.349C633.97 386.445 623.446 378.885 615.756 368.362C583.065 322.186 616.744 266.475 665.115 246.329C685.52 237.867 727.317 197.491 686.464 187.826C641.617 182.285 602.182 235.935 558.365 212.052C521.636 189.244 619.365 174.983 640.543 142.638C693.209 84.7362 637.75 20.1335 614.038 104.925C608.196 134.692 563.778 133.661 559.568 103.035C557.205 91.0506 558.279 78.9374 557.634 66.8673C557.806 26.3187 511.498 23.9133 491.909 49.471C470.946 75.4581 494.83 104.28 502.305 130.568C515.793 167.852 470.602 185.764 440.574 178.848C400.667 168.668 353.628 214.028 398.132 243.623C423.649 259.258 455.051 255.435 483.446 260.977C615.842 284.859 553.639 467.371 480.053 525.96C393.364 608.904 274.242 570.632 195.114 629.651C138.753 671.102 147.001 745.713 185.148 797H205.682L205.639 796.871Z' fill='%23000B8C'/%3E%3Cpath d='M426.527 270.77C374.291 268.149 315.353 288.166 285.583 333.053C272.137 356.463 282.189 377.51 308.78 382.063C332.837 386.187 357.365 377.897 381.121 384.469C390.185 387.175 392.805 392.243 390.099 401.221C378.2 433.436 336.23 451.048 302.208 444.519C282.92 440.61 266.252 431.16 250.443 420.206C178.876 371.583 86.8176 331.85 0 359.555V377.553C62.5035 353.885 131.794 374.804 189.358 402.896C236.224 425.748 277.507 472.696 334.254 461.314C402.041 453.496 451.443 357.15 349.032 365.054C331.806 365.569 284.81 373 299.716 342.331C329.787 300.322 381.98 283.269 432.112 288.681C465.705 292.59 482.931 316.043 479.279 349.204C467.466 418.746 405.092 467.456 343.619 494.173C262.214 533.348 142.963 520.418 78.0539 584.849C25.087 652.416 71.5245 744.08 125.479 796.827H150.696C110.015 760.402 74.1879 712.638 72.3837 655.38C63.8781 514.405 324.889 571.791 431.854 458.865C494.615 409.812 540.666 283.57 426.442 270.727' fill='%23000B8C'/%3E%3Cpath d='M688.826 -196.957C669.195 -160.833 673.49 -117.707 657.08 -80.5087C636.117 -41.3775 603.126 -91.204 590.152 -111.994C611.889 -135.275 616.314 -166.46 609.397 -197H591.527C597.67 -174.32 598.013 -148.29 582.205 -129.476C581.603 -128.789 581.088 -127.672 580.186 -129.39C568.759 -151.297 558.063 -173.504 550.33 -197H532.503C540.579 -170.712 552.263 -145.756 565.194 -121.53C570.692 -112.681 522.322 -116.504 516.566 -119.468C448.048 -136.306 420.942 -206.321 342.673 -154.905C270.976 -104.563 282.145 -9.33382 161.52 -71.6172C160.274 -72.3044 160.274 -72.8199 160.875 -74.0226C179.605 -111.951 186.092 -159.2 164.312 -196.957H144.208C167.792 -163.839 164.312 -119.683 146.442 -83.3005C146.055 -82.4415 145.883 -81.3678 144.466 -82.3987C110.271 -109.116 56.1877 -149.106 57.0039 -196.914H39.7348C41.3242 -139.098 93.6466 -100.396 135.702 -67.7942C136.518 -67.2358 138.022 -67.021 136.991 -65.3028C110.83 -16.8077 54.1686 23.0535 0.0418701 -5.89754V12.9594C60.4834 38.9465 121.483 -2.2894 150.694 -55.2947C151.854 -57.1847 152.584 -57.1845 154.346 -56.1965C165.214 -49.9682 176.512 -44.5989 188.454 -40.8619C274.413 -14.9177 288.546 -71.9608 333.694 -125.353C411.491 -199.363 439.327 -118.738 513.644 -102.63C533.233 -98.2485 552.779 -96.3588 572.239 -103.103C574.644 -103.962 575.504 -103.489 576.75 -101.47C586.157 -86.3504 596.553 -72.0468 610.213 -60.4062C637.32 -35.1922 668.078 -53.4906 677.528 -85.0618C688.783 -122.174 687.709 -163.496 708.415 -196.914H688.826V-196.957Z' fill='%23000B8C'/%3E%3Cpath d='M271.364 198.607C261.398 205.695 254.825 215.961 247.179 225.153C193.438 292.419 77.2807 279.747 116.2 174.123C120.582 158.531 126.854 143.411 128.444 127.089C132.568 93.2408 99.7479 83.2326 74.6176 95.1738C38.1465 112.184 30.3282 156.856 0.0429997 181.34V202.344C26.9345 185.248 43.0006 154.407 60.5273 128.334C69.2907 115.534 81.233 107.802 97.1274 107.416C116.716 106.084 111.862 129.881 108.167 142.037C101.81 163.685 94.2919 185.034 91.9722 207.756C81.7053 283.527 178.403 301.267 228.578 264.713C245.761 254.061 258.305 238.812 270.505 223.177C275.445 216.863 280.901 210.935 288.934 208.315C296.451 205.866 301.735 208.701 303.497 216.39C307.535 246.715 284.208 273.046 262.429 291.044C145.627 379.615 100.779 261.363 0 287.608V305.004C60.4845 283.699 108.726 339.368 167.836 340.613C237.642 342.89 316.813 293.364 321.109 219.74C321.324 192.379 291.124 181.855 271.321 198.564' fill='%23000B8C'/%3E%3Cpath d='M149.363 410.543C92.9167 392.287 34.623 417.845 0.0419922 463.376V498.083C24.3561 441.212 92.9592 403.756 152.627 430.087C168.994 437.088 176.77 449.373 174.794 464.321C173.419 474.931 166.761 482.491 159.114 489.278C147.558 499.544 134.242 507.404 120.624 514.406C11.8551 569.43 -31.1023 688.241 25.8596 796.829H44.8896C-11.2991 696.187 21.9071 586.225 124.275 531.845C142.146 522.309 159.974 512.516 174.579 498.04C208.559 467.113 188.97 419.821 149.363 410.5' fill='%23000B8C'/%3E%3Cpath d='M255.426 167.329C257.04 175.117 257.294 183.125 256.177 191C256.028 192.052 255.854 193.098 255.656 194.139L253.429 195.91L187.29 248.558L185.066 250.327C184.179 250.294 183.297 250.243 182.418 250.175C152.485 247.872 126.446 226.089 120.085 195.215C112.384 157.842 136.439 121.299 173.815 113.597C211.191 105.896 247.725 129.956 255.426 167.329Z' fill='%230082CB'/%3E%3Cpath d='M246.18 141.051C239.378 131.178 230.185 123.191 219.459 117.835C208.734 112.479 196.825 109.93 184.847 110.425C172.868 110.92 161.211 114.444 150.964 120.666C140.716 126.889 132.214 135.608 126.25 146.008C120.287 156.408 117.057 168.15 116.863 180.137C116.668 192.124 119.516 203.965 125.139 214.553C130.762 225.141 138.978 234.131 149.018 240.682C159.058 247.234 170.595 251.133 182.552 252.016C182.671 252.026 182.792 252.034 182.912 252.04L185.066 250.327L187.289 248.558C185.641 248.549 183.994 248.478 182.347 248.344C170.696 247.411 159.489 243.458 149.831 236.874C140.174 230.291 132.398 221.304 127.272 210.799C122.146 200.295 119.846 188.636 120.599 176.972C121.352 165.308 125.132 154.041 131.567 144.283C139.967 131.543 152.449 122.036 166.964 117.324C181.479 112.611 197.164 112.972 211.447 118.347C225.73 123.723 237.761 133.793 245.567 146.907C253.373 160.02 256.489 175.397 254.405 190.515C254.226 191.816 254.007 193.114 253.747 194.408C253.647 194.911 253.54 195.412 253.429 195.91L255.655 194.139L257.803 192.428C257.851 192.134 257.897 191.837 257.939 191.543C260.507 173.832 256.308 155.805 246.18 141.051Z' fill='white'/%3E%3Cpath d='M174.704 147.101L184.414 157.873L193.065 146.233L196.088 160.417L209.4 154.661L204.927 168.456L219.333 170.128L208.561 179.838L220.201 188.488L206.017 191.512L211.773 204.824L197.977 200.35L196.306 214.756L186.596 203.985L177.945 215.625L174.922 201.441L161.61 207.197L166.083 193.401L151.677 191.73L162.449 182.019L150.809 173.369L164.993 170.345L159.237 157.034L173.033 161.507L174.704 147.101Z' stroke='white' stroke-width='1.27159'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M257.926 192.332L257.11 192.979L254.992 194.667L252.796 196.413L187.562 248.341L185.369 250.086L183.245 251.775L182.917 252.039C182.907 251.943 182.9 251.848 182.891 251.747C182.838 251.142 182.794 250.536 182.759 249.93C182.725 249.324 182.7 248.722 182.685 248.125C182.522 241.366 183.566 234.632 185.767 228.239C189.11 218.464 195.016 209.766 202.867 203.052C203.373 202.619 203.886 202.195 204.405 201.782C207.451 199.357 210.735 197.246 214.207 195.483L214.56 195.306C226.374 189.413 240.192 187.611 253.761 191.099C254.345 191.249 254.927 191.409 255.508 191.577C256.09 191.745 256.669 191.923 257.245 192.112C257.472 192.182 257.699 192.255 257.926 192.332Z' fill='url(%23paint0_linear_143_37)'/%3E%3Cg clip-path='url(%23clip1_143_37)'%3E%3Cpath d='M170.509 224.437L166.152 234.035L158.365 230.508L162.722 220.919L164.578 221.759L160.955 229.723L165.018 231.562L168.641 223.598L170.509 224.437Z' fill='white'/%3E%3Cpath d='M161.262 219.973L155.045 228.492L151.426 225.86C151.047 225.589 150.735 225.235 150.513 224.825C150.301 224.431 150.17 223.997 150.128 223.551C150.085 223.11 150.121 222.664 150.234 222.234C150.343 221.811 150.531 221.411 150.789 221.058C151.135 220.585 151.586 220.199 152.108 219.931C152.629 219.656 153.213 219.521 153.802 219.539C154.414 219.561 155.003 219.771 155.489 220.141L157.518 221.615L159.606 218.766L161.262 219.973ZM156.459 223.073L154.535 221.675C154.34 221.528 154.104 221.446 153.86 221.44C153.6 221.441 153.347 221.514 153.127 221.651C152.863 221.811 152.635 222.024 152.458 222.277C152.261 222.529 152.129 222.825 152.073 223.14C152.03 223.401 152.057 223.669 152.152 223.915C152.241 224.143 152.395 224.34 152.594 224.483L154.444 225.829L156.459 223.073Z' fill='white'/%3E%3Cpath d='M154.166 214.713L146.326 221.774L144.96 220.263L150.662 215.131L141.535 216.472L140.26 215.062L148.1 208L149.475 209.521L143.84 214.593L152.85 213.256L154.166 214.713Z' fill='white'/%3E%3Cpath d='M142.766 209.754C141.611 210.406 140.257 210.61 138.961 210.326C138.289 210.179 137.654 209.896 137.096 209.494C136.488 209.051 135.986 208.478 135.626 207.818C135.17 207.062 134.934 206.194 134.941 205.312C134.948 204.535 135.184 203.776 135.619 203.131L137.332 203.954C137.091 204.267 136.93 204.633 136.861 205.022C136.804 205.37 136.815 205.727 136.892 206.071C136.963 206.389 137.079 206.694 137.238 206.977C137.455 207.39 137.773 207.742 138.163 207.998C138.521 208.225 138.925 208.37 139.345 208.423C139.767 208.478 140.195 208.458 140.611 208.367C141.03 208.276 141.432 208.123 141.806 207.913C142.2 207.691 142.555 207.404 142.854 207.064C143.15 206.739 143.384 206.362 143.545 205.954C143.698 205.558 143.766 205.135 143.743 204.712C143.721 204.278 143.595 203.855 143.376 203.478C143.21 203.189 142.999 202.929 142.751 202.706C142.485 202.463 142.175 202.273 141.837 202.147C141.466 202.012 141.07 201.961 140.677 202L140.713 200.07C141.282 200.003 141.859 200.086 142.385 200.312C142.938 200.538 143.446 200.858 143.888 201.26C144.324 201.659 144.695 202.125 144.986 202.639C145.346 203.255 145.553 203.948 145.591 204.66C145.626 205.345 145.527 206.03 145.3 206.677C145.072 207.326 144.732 207.93 144.295 208.463C143.871 208.985 143.352 209.423 142.766 209.754Z' fill='white'/%3E%3Cpath d='M141.263 193.886C141.487 194.573 141.553 195.302 141.455 196.018C141.358 196.69 141.127 197.336 140.776 197.918C140.425 198.499 139.972 199.012 139.437 199.431C138.91 199.851 138.308 200.168 137.664 200.367C137.004 200.572 136.311 200.646 135.623 200.583C134.945 200.528 134.283 200.352 133.668 200.062C133.052 199.768 132.5 199.355 132.046 198.845C131.572 198.314 131.221 197.685 131.017 197.003C130.795 196.316 130.735 195.588 130.842 194.875C130.944 194.2 131.183 193.554 131.545 192.975C131.902 192.402 132.357 191.896 132.889 191.48C133.692 190.851 134.655 190.458 135.669 190.346C136.684 190.234 137.709 190.407 138.631 190.846C139.244 191.135 139.793 191.546 140.244 192.052C140.713 192.583 141.06 193.208 141.263 193.886ZM137.051 198.379C137.483 198.248 137.891 198.049 138.261 197.791C138.616 197.544 138.924 197.236 139.17 196.882C139.405 196.539 139.562 196.15 139.632 195.74C139.703 195.296 139.666 194.842 139.525 194.415C139.4 193.972 139.165 193.569 138.842 193.241C138.542 192.941 138.182 192.708 137.785 192.557C137.38 192.404 136.95 192.329 136.517 192.334C136.084 192.335 135.653 192.399 135.239 192.526C134.812 192.656 134.408 192.854 134.043 193.112C133.689 193.357 133.384 193.666 133.143 194.021C132.906 194.368 132.746 194.761 132.673 195.175C132.601 195.617 132.638 196.07 132.779 196.495C132.904 196.929 133.136 197.324 133.453 197.646C133.751 197.946 134.11 198.181 134.505 198.335C134.906 198.489 135.331 198.569 135.761 198.57C136.198 198.575 136.633 198.512 137.051 198.384L137.051 198.379Z' fill='white'/%3E%3Cpath d='M137.141 180.776L138.932 180.601L139.632 187.885L129.123 188.9L128.433 181.747L130.225 181.572L130.718 186.687L133.25 186.442L132.825 182.041L134.484 181.882L134.909 186.285L137.646 186.021L137.141 180.776Z' fill='white'/%3E%3Cpath d='M140.797 180.365L136.991 179.937L137.053 179.392C137.068 179.261 137.055 179.128 137.014 179.003C136.974 178.877 136.908 178.762 136.82 178.664C136.559 178.392 136.239 178.182 135.886 178.05C135.326 177.826 134.747 177.653 134.155 177.534C133.451 177.369 132.579 177.209 131.541 177.054L128.552 176.643L129.342 169.65L138.048 170.628L138.204 169.247L142.009 169.673L141.809 171.458L139.79 171.227L138.98 178.368L140.99 178.594L140.797 180.365ZM137.334 176.942L137.819 172.65L130.899 171.872L130.557 174.969L132.029 175.18C133.051 175.315 133.92 175.465 134.636 175.63C135.231 175.756 135.811 175.944 136.366 176.19C136.748 176.354 137.082 176.613 137.335 176.942L137.334 176.942Z' fill='white'/%3E%3Cpath d='M140.339 168.388L130.408 164.807L131.097 162.893L138.316 165.495L132.837 158.09L133.486 156.303L143.417 159.885L142.728 161.812L135.585 159.239L141.007 166.544L140.339 168.388Z' fill='white'/%3E%3Cpath d='M140.172 145.172L149.03 150.911L147.92 152.616L144.138 150.162L141.531 154.173L145.311 156.62L144.194 158.348L135.338 152.607L136.455 150.88L140.036 153.2L142.643 149.19L139.062 146.888L140.172 145.172Z' fill='white'/%3E%3Cpath d='M149.935 149.84L148.778 145.019C148.198 145.336 147.525 145.438 146.876 145.31C146.205 145.168 145.593 144.826 145.121 144.329C144.696 143.922 144.396 143.403 144.255 142.832C144.127 142.273 144.149 141.689 144.32 141.142C144.51 140.538 144.85 139.992 145.308 139.554L148.245 136.641L155.69 144.109L154.246 145.543L151.443 142.731L150.684 143.484L150.563 143.605L150.422 143.747L151.573 148.205L149.935 149.84ZM148.89 142.784L150.196 141.484L148.032 139.306L146.746 140.585C146.533 140.791 146.366 141.039 146.256 141.314C146.145 141.577 146.119 141.868 146.181 142.146C146.243 142.425 146.391 142.677 146.604 142.867C146.807 143.086 147.067 143.245 147.355 143.326C147.618 143.393 147.895 143.377 148.149 143.28C148.432 143.171 148.688 143.002 148.899 142.784L148.89 142.784Z' fill='white'/%3E%3Cpath d='M154.841 131.11C154.425 131.389 153.953 131.575 153.458 131.655C153.049 131.72 152.63 131.671 152.247 131.513C151.888 131.358 151.586 131.097 151.381 130.765L152.574 130.009C152.647 130.132 152.746 130.239 152.862 130.322C152.979 130.406 153.112 130.464 153.253 130.493C153.559 130.569 153.909 130.482 154.302 130.231C154.695 129.981 154.925 129.709 154.993 129.414C155.028 129.271 155.033 129.121 155.008 128.976C154.982 128.83 154.926 128.691 154.843 128.568L156.036 127.811C156.241 128.142 156.34 128.527 156.319 128.916C156.299 129.331 156.165 129.733 155.931 130.078C155.646 130.495 155.274 130.847 154.841 131.11ZM157.031 142.965L151.359 134.069L153.087 132.978L157.195 139.445L157.398 130.24L159.005 129.222L164.669 138.118L162.941 139.218L158.873 132.835L158.685 141.924L157.031 142.965Z' fill='white'/%3E%3Cpath d='M170.627 126.483L167.477 127.66L170.534 135.855L168.632 136.565L165.562 128.37L162.382 129.551L161.756 127.874L169.996 124.814L170.627 126.483Z' fill='white'/%3E%3Cpath d='M181.467 131.519L181.776 133.288L174.552 134.547L172.735 124.164L179.825 122.927L180.134 124.696L175.071 125.581L175.51 128.082L179.876 127.321L180.163 128.959L175.797 129.719L176.27 132.426L181.467 131.519Z' fill='white'/%3E%3Cpath d='M182.165 127.841C182.186 126.516 182.696 125.244 183.596 124.27C184.086 123.741 184.684 123.324 185.351 123.047C186.017 122.77 186.735 122.641 187.457 122.667C188.341 122.66 189.21 122.898 189.967 123.355C190.636 123.754 191.172 124.341 191.51 125.042L189.932 126.1C189.785 125.732 189.552 125.405 189.253 125.146C188.981 124.92 188.667 124.749 188.33 124.641C188.021 124.541 187.699 124.486 187.374 124.478C186.906 124.46 186.442 124.559 186.023 124.768C185.647 124.963 185.318 125.237 185.057 125.57C184.798 125.907 184.599 126.285 184.467 126.689C184.333 127.096 184.262 127.52 184.254 127.948C184.247 128.4 184.316 128.85 184.456 129.28C184.588 129.7 184.794 130.092 185.066 130.438C185.329 130.771 185.659 131.044 186.036 131.24C186.422 131.442 186.851 131.548 187.286 131.549C187.621 131.552 187.953 131.502 188.272 131.401C188.616 131.295 188.937 131.124 189.216 130.896C189.522 130.646 189.766 130.33 189.931 129.972L191.58 130.978C191.351 131.503 190.987 131.958 190.525 132.298C190.047 132.658 189.509 132.931 188.936 133.104C188.374 133.281 187.788 133.367 187.198 133.36C186.484 133.355 185.781 133.182 185.147 132.855C184.538 132.537 183.997 132.105 183.552 131.582C183.104 131.059 182.752 130.46 182.513 129.814C182.274 129.184 182.156 128.515 182.165 127.841Z' fill='white'/%3E%3Cpath d='M192.459 133.577L194.696 123.275L196.701 123.708L195.904 127.379L198.013 127.834C198.687 127.957 199.32 128.242 199.858 128.666C200.307 129.037 200.641 129.528 200.819 130.082C200.999 130.673 201.018 131.301 200.873 131.902C200.754 132.51 200.484 133.078 200.088 133.555C199.712 133.996 199.213 134.316 198.655 134.475C198.011 134.645 197.335 134.65 196.688 134.491L192.459 133.577ZM194.818 132.385L196.766 132.807C197.101 132.895 197.453 132.886 197.783 132.784C198.057 132.688 198.294 132.512 198.464 132.277C198.64 132.033 198.763 131.754 198.825 131.459C198.887 131.18 198.892 130.892 198.841 130.611C198.787 130.334 198.644 130.082 198.434 129.893C198.162 129.663 197.832 129.51 197.48 129.451L195.546 129.032L194.818 132.385Z' fill='white'/%3E%3Cpath d='M204.313 136.805L209.246 127.477L211.049 128.428L209.051 132.197L209.971 132.681L214.741 130.377L216.76 131.44L210.99 134.16L212.101 140.905L209.905 139.747L209.082 134.308L208.188 133.838L206.116 137.749L204.313 136.805Z' fill='white'/%3E%3Cpath d='M229.11 141.946L221.77 149.523L220.305 148.109L223.437 144.876L219.995 141.551L216.861 144.786L215.39 143.362L222.73 135.785L224.204 137.209L221.236 140.271L224.678 143.595L227.646 140.532L229.11 141.946Z' fill='white'/%3E%3Cpath d='M233.182 147.375L234.34 149.1L227.715 158.184L226.542 156.431L228.243 154.242L226.09 151.022L223.41 151.75L222.237 149.995L233.182 147.375ZM229.176 153.04L231.993 149.412L227.558 150.616L229.176 153.04Z' fill='white'/%3E%3Cpath d='M231.042 166.773L237.537 164.359L231.751 163.611L231.352 162.54L235.244 158.209L228.748 160.623L228.032 158.702L237.93 155.025L238.704 157.096L234.169 162.091L240.882 162.947L241.651 165.006L231.753 168.683L231.042 166.773Z' fill='white'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_143_37' x1='252.977' y1='176.092' x2='185.505' y2='240.452' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E8E7EA'/%3E%3Cstop offset='0.02' stop-color='%23DDDCDF'/%3E%3Cstop offset='0.06' stop-color='%23D7D6D8'/%3E%3Cstop offset='0.15' stop-color='%23D5D4D6'/%3E%3Cstop offset='0.28' stop-color='%23ECECED'/%3E%3Cstop offset='0.4' stop-color='%23FAFAFA'/%3E%3Cstop offset='0.51' stop-color='white'/%3E%3Cstop offset='0.63' stop-color='%23FBFBFC'/%3E%3Cstop offset='0.74' stop-color='%23F1F1F1'/%3E%3Cstop offset='0.84' stop-color='%23DFDFE0'/%3E%3Cstop offset='0.87' stop-color='%23D7D7D9'/%3E%3Cstop offset='1' stop-color='%23E0E0E2'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_143_37'%3E%3Crect width='375' height='402' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_143_37'%3E%3Crect width='113.235' height='111.348' fill='white' transform='translate(128.37 122.731) rotate(-0.0622075)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    opacity: 0;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
  }
  .header .header_content .menu.active {
    top: 20px;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .header .header_content .menu {
    margin: auto 0;
    margin-left: auto;
  }
}
.header .header_content .menu li {
  position: relative;
  margin-bottom: 45px;
}
@media (min-width: 1200px) {
  .header .header_content .menu li {
    margin-bottom: 0;
    margin-right: 70px;
  }
  .header .header_content .menu li:nth-last-child(1) {
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .header .header_content .menu li {
    margin-right: 85px;
  }
}
@media (min-width: 1680px) {
  .header .header_content .menu li {
    margin-right: 100px;
  }
}
.header .header_content .menu li a {
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 137%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (min-width: 1200px) {
  .header .header_content .menu li a {
    font-size: 18px;
    line-height: 183%;
  }
}
@media (min-width: 1400px) {
  .header .header_content .menu li a {
    font-size: 20px;
    line-height: 150%;
  }
}
@media (min-width: 1680px) {
  .header .header_content .menu li a {
    font-size: 24px;
    line-height: 137%;
  }
}
.header .header_content .menu li a:hover {
  color: var(--orange);
}
.main {
  position: relative;
}
.section {
  position: relative;
}
@media (max-width: 768px) {
  .section {
    overflow: hidden;
  }
}
.app_links {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .app_links {
    justify-content: normal;
  }
}
.app_links a {
  background-color: var(--white);
  padding: 8px 10px;
  border-radius: 8px;
  display: flex;
  margin-right: 15px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.app_links a svg {
  height: 32px;
}
.app_links a svg path:not(.orig) {
  fill: var(--black);
}
.app_links a:hover {
  background-color: var(--orange);
}
.app_links a:hover svg path:not(.orig) {
  fill: var(--white);
}
@media (min-width: 768px) {
  .app_links a {
    border-radius: 10px;
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .app_links a {
    border-radius: 12px;
    margin-right: 25px;
  }
}
@media (min-width: 1400px) {
  .app_links a {
    border-radius: 14px;
    margin-right: 30px;
  }
}
@media (min-width: 1680px) {
  .app_links a {
    border-radius: 16px;
    margin-right: 35px;
    padding: 15px 20px;
  }
  .app_links a svg {
    height: 55px;
  }
}
.app_links a:nth-last-child(1) {
  margin-right: 0;
}
.wellcome_screen {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-image: url("data:image/svg+xml,%3Csvg width='1920' height='996' viewBox='0 0 1920 996' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_75_1133)'%3E%3Cmask id='mask0_75_1133' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='-5' y='-84' width='1925' height='1080'%3E%3Cpath d='M1920 -84H-5V996H1920V-84Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_75_1133)'%3E%3Cpath d='M1920 -84H-5V996H1920V-84Z' fill='%23FF4249'/%3E%3Cmask id='mask1_75_1133' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='-5' y='-84' width='1925' height='1080'%3E%3Cpath d='M1920 -84H-5V996H1920V-84Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask1_75_1133)'%3E%3Cpath d='M1821.5 680.8C1842.01 424.2 1690.16 329.86 1492.3 216.7C1489.11 214.37 1488.78 213.11 1491.42 209.92C1551.11 144.97 1579.78 22.2299 1489.18 -29.8401C1409.9 -77.4901 1334.96 -1.95013 1358.86 76.5299C1370.41 130 1398.82 174.24 1436.86 212.86C1438.32 214.34 1441.12 215.39 1437.92 218.26C1289.86 357.82 1117.01 276.28 973.822 177.46C865.782 105.27 729.347 173.83 670.504 276.61C668.529 279.78 666.614 280.85 662.915 280.69C645.379 279.94 627.884 280.89 610.519 283.34C531.744 294.46 460.99 324.38 398.438 373.39C248.809 284.55 88.4626 367.62 -17.5527 487.32V539.72C36.6581 473.86 100.694 411.97 184.231 383.33C246.333 361.41 307.612 361.68 366.094 396.19C369.342 398.11 369.533 399.12 366.836 401.84C296.423 472.62 252.91 578.13 286.216 676.46C313.587 771.64 436.446 756.88 469.181 676.99C513.176 591.34 493.495 468.9 425.348 400.71C423.894 399.26 420.435 398.08 424.405 395.14C491.058 345.81 565.221 317.12 648.698 313.73C651.796 313.6 652.548 314.14 651.425 317.31C626.46 390.48 639.313 479.57 696.011 535.12C748.136 584.49 825.848 572.56 857.65 509.86C907.43 407.32 810.438 299.83 709.235 285.74C690.296 283.35 777.843 206.07 789.022 204.75C909.565 126.06 1012.69 260.31 1120.72 298.75C1234.42 349.01 1372.46 329.87 1461.65 241.35C1464.59 238.65 1466.29 238.45 1469.51 240.88C1477.82 247.14 1486.32 253.2 1495.09 258.81C1713.48 364.25 1835.71 517.52 1776.45 742.8C1775.59 746.12 1774.77 748.18 1770.25 747.96C1652.03 744.92 1515.25 778.76 1446.14 881.81C1359.67 1070.87 1693.72 1076.54 1796.68 788.2C1797.75 785.44 1798.4 783.55 1802.15 784.11C1848.37 790.36 1891.97 805.97 1933.05 827.3V789.91C1783.11 718.99 1807.18 799.8 1821.52 680.81M459.085 573.58C458.083 614.01 451.415 652.3 424.475 684.15C382.446 733.61 320.415 707.57 313.196 649.99C294.598 564.77 333.279 483.06 392.382 423.02C395.981 419.33 397.686 420.05 400.844 423.19C442.622 464.92 457.632 516.8 459.085 573.58ZM821.497 505.28C798.096 538.27 753.4 541.59 721.276 513.04C685.333 481.18 674.806 434.67 672.329 388.87C671.848 376.22 679.057 319.69 690.356 316.24C778.294 322.12 877.161 416.76 821.507 505.28M1464.82 190.07C1463.31 191.9 1462.4 191.37 1461.06 189.99C1413.2 149.27 1335.49 -1.04012 1440.48 -10.5301C1463.31 -9.24012 1481.7 0.889877 1495.64 18.7099C1508.89 35.6499 1513.99 55.3399 1513.75 84.0399C1512.55 120.86 1492.06 156.9 1464.82 190.07ZM1755.19 801.15C1721.64 872.56 1673.99 931.3 1601.32 966.56C1574.04 979.8 1545.14 986.76 1514.49 981.9C1466.79 974.35 1450.19 938.18 1475.73 897.17C1534.01 813.62 1644.33 785.1 1741.49 780.67C1764.27 780.33 1764.85 780.6 1755.19 801.15Z' fill='%23000B8C'/%3E%3Cpath d='M385.935 1843.81C271.709 1697.13 301.596 1536.49 497.305 1491.58C624.846 1466.18 760.468 1461.32 873.682 1390.48C1082.1 1285.77 1259.53 847.01 951.795 764.67C892.351 748.15 820.664 764.77 770.434 723.62C749.379 705.55 772.67 677.98 792.411 670.48C807.841 664.25 823.873 664.8 839.904 666.44C934.32 686.55 1041.47 619.67 995.388 515.49C981.552 474.99 936.215 412.14 993.313 386.03C1054.81 357.28 1041.57 435.93 1044.99 472.12C1044.02 575.77 1186.41 602.32 1219.31 498.82C1225.67 480.02 1229.32 458.04 1245.58 444.72C1263.18 516.69 1189.46 571.52 1130.77 595.73C1081.72 614.63 986.425 654.73 1046.99 716.22C1132.8 793.8 1228.8 690.81 1319.66 683.93C1329.85 682.37 1330.81 686.43 1324.83 693.91C1311.27 713.21 1291.72 725.3 1271.76 736.69C1159.44 782.98 1088.21 917.93 1162.36 1022.28C1198.4 1073.28 1271.14 1096.54 1279.68 1164.94C1283.05 1190.43 1283.42 1216.33 1287.04 1241.77C1294.22 1335.53 1400.44 1375.62 1480.21 1340.39C1634.8 1284.14 1755.21 1109.1 1933.04 1141.6V1107.59C1721.46 1073.56 1609.83 1286.28 1423.23 1319.07C1349.4 1327.74 1312 1261.77 1316.73 1198.09C1316.67 1138.94 1292.74 1092.01 1246.23 1055.62C1226.46 1040.15 1205.82 1025.38 1190.8 1004.72C1126.67 914.3 1192.77 805.22 1287.66 765.85C1327.68 749.28 1409.69 670.26 1329.53 651.29C1241.53 640.46 1164.15 745.46 1078.1 698.69C1006.01 654.03 1197.78 626.1 1239.36 562.84C1342.7 449.47 1233.93 323.05 1187.39 489C1175.96 547.26 1088.76 545.24 1080.45 485.32C1075.86 461.85 1077.96 438.1 1076.64 414.5C1077.01 335.1 986.134 330.38 947.644 380.46C906.477 431.34 953.389 487.73 968.067 539.19C994.536 612.15 905.886 647.22 846.943 633.68C768.619 613.79 676.32 702.51 763.686 760.51C813.757 791.1 875.417 783.63 931.101 794.48C1190.96 841.23 1068.84 1198.54 924.434 1313.17C754.332 1475.53 520.555 1400.64 365.232 1516.16C254.634 1597.31 270.776 1743.34 345.661 1843.78H385.935V1843.81Z' fill='%23000B8C'/%3E%3Cpath d='M819.391 813.92C716.855 808.77 601.224 848 542.793 935.81C516.384 981.65 536.135 1022.8 588.351 1031.73C635.574 1039.79 683.699 1023.57 730.33 1036.43C748.106 1041.74 753.249 1051.61 747.936 1069.26C724.565 1132.3 642.201 1166.8 575.488 1154.05C537.629 1146.41 504.944 1127.92 473.914 1106.48C333.499 1011.3 152.77 933.5 -17.5527 987.78V1022.98C105.116 976.65 241.059 1017.63 354.052 1072.62C446.031 1117.37 527.012 1209.23 638.441 1187C771.447 1171.73 868.418 983.07 667.466 998.58C633.699 999.59 541.479 1014.18 570.645 954.14C629.638 871.93 732.124 838.51 830.49 849.13C896.411 856.75 930.259 902.67 923.08 967.59C899.91 1103.71 777.452 1199.09 656.879 1251.41C497.094 1328.12 263.096 1302.76 135.735 1428.9C31.8155 1561.16 122.882 1740.6 228.767 1843.82H278.236C198.398 1772.52 128.086 1679.03 124.556 1566.89C107.863 1290.96 620.053 1403.23 829.989 1182.19C953.169 1086.16 1043.56 839.05 819.411 813.93' fill='%23000B8C'/%3E%3Cpath d='M1334.15 -101.7C1295.63 -30.9902 1304.07 53.4398 1271.84 126.28C1230.67 202.89 1165.93 105.33 1140.51 64.6598C1183.2 19.0998 1191.82 -41.9902 1178.27 -101.7H1143.2C1155.27 -57.3202 1155.91 -6.32019 1124.94 30.4798C1123.74 31.8098 1122.71 33.9898 1120.96 30.6598C1098.51 -12.2002 1077.55 -55.7002 1062.41 -101.69H1027.43C1043.25 -50.2502 1066.22 -1.3802 1091.56 46.0098C1102.35 63.3598 1007.44 55.8198 996.08 50.0498C861.611 17.0698 808.453 -119.95 654.804 -19.3502C514.098 79.1898 536.045 265.59 299.26 143.66C296.844 142.31 296.854 141.31 297.967 138.94C334.742 64.6798 347.435 -27.8302 304.724 -101.68H265.292C311.592 -36.8602 304.724 49.5498 269.713 120.78C268.931 122.48 268.621 124.52 265.813 122.52C198.699 70.2098 92.5834 -8.1002 94.1675 -101.7H60.2895C63.4376 11.5098 166.074 87.2498 248.649 151.04C250.213 152.11 253.211 152.57 251.165 155.9C199.862 250.82 88.603 328.83 -17.5527 272.17V309.05C101.085 359.91 220.736 279.23 278.075 175.45C280.351 171.74 281.815 171.74 285.244 173.7C306.549 185.91 328.717 196.37 352.198 203.7C520.846 254.46 548.648 142.84 637.248 38.3398C789.955 -106.51 844.527 51.2598 990.355 82.8698C1028.77 91.3998 1067.16 95.1398 1105.31 81.9298C1110.04 80.2898 1111.75 81.1698 1114.21 85.1098C1132.67 114.68 1153.08 142.75 1179.9 165.52C1233.09 214.9 1293.46 179.06 1312.02 117.26C1334.14 44.5798 1331.99 -36.3202 1372.6 -101.7H1334.14H1334.15Z' fill='%23000B8C'/%3E%3Cpath d='M1933.03 924.03C1861.94 935.71 1814.56 998.99 1758.72 1040.02C1604.4 1185.63 1208.57 1103.28 1335.31 844.83C1360.17 801.22 1399.99 778.43 1446.62 764.76C1489.79 752.1 1534.03 743.03 1575.81 725.65C1751.46 662.95 1687.53 427.13 1539.42 373.24C1446.24 323.88 1298.62 366.44 1291.08 484.02C1286.14 558.6 1370.56 632.57 1444.95 620.48C1559.13 601.6 1495.73 461.99 1409.53 464.36C1359.24 464.41 1370.4 517.95 1400.21 501.65C1442.71 479.31 1512.93 571.16 1447.48 585.9C1383.03 598.91 1308.48 534.86 1327.17 468.33C1408.15 269.91 1731.58 469.25 1632.19 642.54C1589.57 704.28 1506.51 711.17 1440.03 732C1288.46 760.84 1219.42 969.45 1337.44 1072.32C1457.05 1177.55 1644.28 1165.14 1768.43 1074.26C1824.17 1038.01 1866.25 972.98 1933.04 958.48V924.04L1933.03 924.03Z' fill='%23000B8C'/%3E%3Cpath d='M514.92 672.66C495.35 686.5 482.466 706.59 467.457 724.67C361.983 856.31 134.011 831.52 210.429 624.82C219.042 594.28 231.334 564.71 234.432 532.72C242.553 466.43 178.085 446.83 128.817 470.24C57.2616 503.51 41.9218 591.01 -17.5527 638.94V680.07C35.2344 646.57 66.7563 586.21 101.186 535.16C118.4 510.09 141.831 494.99 173.022 494.22C211.452 491.64 201.927 538.19 194.679 562C182.216 604.42 167.438 646.19 162.896 690.63C142.794 838.99 332.507 873.67 430.982 802.11C464.68 781.29 489.334 751.42 513.296 720.8C523.001 708.39 533.689 696.82 549.45 691.68C564.229 686.86 574.585 692.46 578.054 707.47C585.995 766.8 540.156 818.4 497.495 853.62C268.29 1027.02 180.231 795.52 -17.5627 846.89V880.97C101.146 839.27 195.791 948.25 311.833 950.72C448.809 955.15 604.222 858.25 612.654 714.11C613.115 660.55 553.781 639.95 514.91 672.64' fill='%23000B8C'/%3E%3Cpath d='M1933.03 301.2C1905.89 241.3 1852.99 199.66 1778.12 198.25C1732.69 193.65 1642.2 194.24 1660.22 126.09C1682.9 50.9398 1714.39 -23.2202 1688.82 -101.7H1653.31C1709.31 20.2998 1547.37 161.29 1678.06 214.76C1730.57 236.49 1790.61 222.43 1842 247C1956.8 311.38 1901.93 453.86 1933.02 560.56V301.2H1933.03Z' fill='%23000B8C'/%3E%3Cpath d='M536.527 -101.7C510.339 -65.9202 487.479 -25.9202 449.3 -1.88019C385.033 30.9698 397.786 -57.1102 406.709 -101.7H372.14C361.231 -41.5402 358.264 54.1098 442.151 36.8598C506.489 15.6598 538.983 -50.4302 577.623 -101.7H536.537H536.527Z' fill='%23000B8C'/%3E%3Cpath d='M71.7592 93.3297C53.2311 54.1497 19.0523 24.2197 -17.5527 1.69971V41.1997C44.5586 82.1197 88.9338 175.81 -17.5527 181.8V215.7C48.9801 215.52 103.853 159.2 71.7592 93.3197' fill='%23000B8C'/%3E%3Cpath d='M1933.03 50.7298C1874.22 25.6698 1837.09 -39.3902 1828.26 -101.7H1794.37C1804.59 -21.4702 1854.73 60.1898 1933.03 86.5798V50.7298Z' fill='%23000B8C'/%3E%3Cpath d='M952.196 -101.7C950.422 -80.9802 945.93 -52.1002 923.02 -64.7102C905.044 -73.7302 890.797 -86.9102 878.004 -101.7H832.957C887.598 -33.6702 973.04 21.9598 985.934 -101.7H952.196Z' fill='%23000B8C'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_75_1133'%3E%3Crect width='1920' height='996' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.wellcome_screen .wellcome_screen_container {
  position: relative;
  background-color: var(--blue);
  height: 100%;
  overflow: hidden;
  width: calc(100% - 30px);
  padding: 156px 15px 60px 15px;
}
@media (min-width: 1200px) {
  .wellcome_screen .wellcome_screen_container {
    padding: 173px 20px 30px 20px;
  }
}
@media (min-width: 1400px) {
  .wellcome_screen .wellcome_screen_container {
    padding: 225px 40px 75px 40px;
  }
}
@media (min-width: 1680px) {
  .wellcome_screen .wellcome_screen_container {
    padding: 277px 60px 100px 60px;
  }
}
.wellcome_screen .wellcome_screen_container .svg_1 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
@media (min-width: 1680px) {
  .wellcome_screen .wellcome_screen_container .svg_1 {
    margin-bottom: 32px;
  }
}
.wellcome_screen .wellcome_screen_container .img_1 {
  position: absolute;
  z-index: 2;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  width: 152px;
  height: 189px;
}
@media (min-width: 1200px) {
  .wellcome_screen .wellcome_screen_container .img_1 {
    width: 243px;
    height: 303px;
  }
}
@media (min-width: 1620px) {
  .wellcome_screen .wellcome_screen_container .img_1 {
    width: 390px;
    height: 486px;
  }
}
.wellcome_screen .wellcome_screen_container .svg_2 {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  margin-bottom: 126px;
}
@media (min-width: 1200px) {
  .wellcome_screen .wellcome_screen_container .svg_2 {
    margin-bottom: 70px;
  }
}
@media (min-width: 1680px) {
  .wellcome_screen .wellcome_screen_container .svg_2 {
    margin-bottom: 112px;
  }
}
.wellcome_screen .wellcome_screen_container .svg_3 {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  .wellcome_screen .wellcome_screen_container .svg_3 {
    margin-bottom: 0;
    width: 380px;
    height: 169px;
  }
}
@media (min-width: 1400px) {
  .wellcome_screen .wellcome_screen_container .svg_3 {
    width: 500px;
    height: 223px;
  }
}
@media (min-width: 1680px) {
  .wellcome_screen .wellcome_screen_container .svg_3 {
    width: 619px;
    height: 276px;
  }
}
@media (min-width: 960px) {
  .wellcome_screen .wellcome_screen_container .app_links {
    position: absolute;
    bottom: 15px;
    right: 25px;
  }
}
@media (min-width: 1200px) {
  .wellcome_screen .wellcome_screen_container .app_links {
    bottom: 40px;
    right: 30px;
  }
}
@media (min-width: 1400px) {
  .wellcome_screen .wellcome_screen_container .app_links {
    bottom: 85px;
    right: 45px;
  }
}
@media (min-width: 1680px) {
  .wellcome_screen .wellcome_screen_container .app_links {
    bottom: 115px;
    right: 60px;
  }
}
.block_line {
  position: relative;
  overflow: hidden;
  max-height: 110px;
  border-bottom: 2px solid var(--blue);
  padding: 16px;
}
@media (min-width: 1200px) {
  .block_line {
    border-bottom: 3px solid var(--blue);
    padding: 20px;
  }
}
@media (min-width: 1400px) {
  .block_line {
    border-bottom: 3.5px solid var(--blue);
    padding: 25px;
  }
}
@media (min-width: 1680px) {
  .block_line {
    border-bottom: 4px solid var(--blue);
    padding: 30px;
  }
}
.block_line .item {
  display: inline-flex;
  margin-right: 20px;
}
.block_line .item span {
  display: block;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  text-wrap: nowrap;
  margin: auto 0;
  margin-right: 20px;
}
@media (min-width: 1200px) {
  .block_line .item span {
    font-size: 26px;
    line-height: 127%;
  }
}
@media (min-width: 1400px) {
  .block_line .item span {
    font-size: 34px;
    line-height: 105%;
  }
}
@media (min-width: 1680px) {
  .block_line .item span {
    font-size: 40px;
    line-height: 82%;
  }
}
.block_line .item:after {
  display: block;
  content: '';
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 0L31.7523 18.2477L50 25L31.7523 31.7523L25 50L18.2477 31.7523L0 25L18.2477 18.2477L25 0Z' fill='%23FF4249'/%3E%3C/svg%3E%0A");
}
.block_2 {
  position: relative;
  margin: 60px 0;
}
@media (min-width: 1200px) {
  .block_2 {
    margin: 120px 0;
  }
}
@media (min-width: 1400px) {
  .block_2 {
    margin: 150px 0;
  }
}
@media (min-width: 1680px) {
  .block_2 {
    margin: 170px 0;
  }
}
.block_2 .text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 30px;
  line-height: 127%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--black);
}
@media (min-width: 410px) {
  .block_2 .text {
    font-size: 36px;
    line-height: 120%;
  }
}
@media (min-width: 1200px) {
  .block_2 .text {
    font-size: 76px;
    line-height: 111%;
  }
}
@media (min-width: 1400px) {
  .block_2 .text {
    font-size: 82px;
    line-height: 115%;
  }
}
@media (min-width: 1680px) {
  .block_2 .text {
    font-size: 112px;
    line-height: 118%;
  }
}
.block_2 .text.text_1 {
  position: relative;
}
.block_2 .text.text_2 {
  position: relative;
  margin-left: 30%;
}
.block_2 .text.text_3 {
  position: relative;
}
.block_2 .img_1,
.block_2 .img_2 {
  position: absolute;
  z-index: 2;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.block_2 .img_1 {
  transform: rotate(-22deg);
  width: 68px;
  top: 42%;
  left: 7%;
}
@media (min-width: 1200px) {
  .block_2 .img_1 {
    top: 20%;
    left: 7%;
    width: 145px;
  }
}
@media (min-width: 1400px) {
  .block_2 .img_1 {
    width: 162px;
  }
}
@media (min-width: 1680px) {
  .block_2 .img_1 {
    width: 232px;
  }
}
@keyframes stepHeart {
  0% {
    opacity: 0.75;
  }
  60% {
    opacity: 1;
  }
}
.block_2 .img_2 {
  transform: rotate(6deg);
  width: 79px;
  top: 0;
  right: 5%;
}
@media (min-width: 1200px) {
  .block_2 .img_2 {
    top: auto;
    bottom: -10%;
    right: 2%;
    width: 176px;
  }
}
@media (min-width: 1400px) {
  .block_2 .img_2 {
    width: 229px;
  }
}
@media (min-width: 1680px) {
  .block_2 .img_2 {
    width: 282px;
  }
}
.block_3 {
  position: relative;
  margin-bottom: 60px;
  background: var(--blue);
  padding: 40px 0;
}
@media (min-width: 1200px) {
  .block_3 {
    margin-bottom: 120px;
  }
}
@media (min-width: 1400px) {
  .block_3 {
    margin-bottom: 145px;
  }
}
@media (min-width: 1680px) {
  .block_3 {
    margin-bottom: 170px;
  }
}
@media (min-width: 1200px) {
  .block_3 {
    border-radius: 30px;
    padding: 60px 0;
  }
}
@media (min-width: 1400px) {
  .block_3 {
    border-radius: 40px;
    padding: 80px 0;
  }
}
@media (min-width: 1680px) {
  .block_3 {
    border-radius: 50px;
    padding: 100px 0;
  }
}
.block_3 .title {
  position: relative;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 113%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .block_3 .title {
    font-size: 76px;
    line-height: 108%;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .block_3 .title {
    font-size: 112px;
    line-height: 118%;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
  }
}
@media (min-width: 1680px) {
  .block_3 .title {
    border-radius: 50px;
    margin-bottom: 50px;
  }
}
.block_3 .section_1 {
  position: relative;
  margin-bottom: 110px;
}
@media (min-width: 1680px) {
  .block_3 .section_1 {
    margin-bottom: 120px;
  }
}
.block_3 .section_1 .title {
  text-align: right;
}
.block_3 .section_1 .list {
  position: relative;
}
.block_3 .section_1 .list .item {
  display: flex;
  padding: 12px;
  border: 1px solid var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
}
@media (min-width: 960px) {
  .block_3 .section_1 .list .item {
    border: 2px solid var(--white);
  }
}
@media (min-width: 1200px) {
  .block_3 .section_1 .list .item {
    border: 3px solid var(--white);
    border-radius: 15px;
    padding: 30px 46px 30px 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .block_3 .section_1 .list .item {
    margin-bottom: 45px;
  }
}
@media (min-width: 1680px) {
  .block_3 .section_1 .list .item {
    max-width: 1230px;
    border: 4px solid var(--white);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 55px;
  }
}
.block_3 .section_1 .list .item .text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--white);
}
@media (min-width: 960px) {
  .block_3 .section_1 .list .item .text {
    font-size: 22px;
    line-height: 145%;
  }
}
@media (min-width: 1200px) {
  .block_3 .section_1 .list .item .text {
    font-size: 26px;
    line-height: 145%;
  }
}
@media (min-width: 1400px) {
  .block_3 .section_1 .list .item .text {
    font-size: 30px;
    line-height: 143%;
  }
}
@media (min-width: 1680px) {
  .block_3 .section_1 .list .item .text {
    font-size: 34px;
    line-height: 141%;
  }
}
.block_3 .section_1 .list .item .ico {
  position: relative;
}
.block_3 .section_1 .list .item:nth-child(1) {
  position: relative;
}
.block_3 .section_1 .list .item:nth-child(1) .ico svg {
  width: 72px;
  height: 72px;
}
@media (min-width: 1200px) {
  .block_3 .section_1 .list .item:nth-child(1) {
    max-width: 865px;
  }
  .block_3 .section_1 .list .item:nth-child(1) .ico svg {
    width: 118px;
    height: 118px;
  }
}
@media (min-width: 1400px) {
  .block_3 .section_1 .list .item:nth-child(1) .ico svg {
    width: 153px;
    height: 153px;
  }
}
@media (min-width: 1680px) {
  .block_3 .section_1 .list .item:nth-child(1) {
    max-width: 1230px;
    position: relative;
  }
  .block_3 .section_1 .list .item:nth-child(1) .text {
    margin: auto 0;
    max-width: 930px;
  }
  .block_3 .section_1 .list .item:nth-child(1) .ico {
    margin: auto;
  }
  .block_3 .section_1 .list .item:nth-child(1) .ico svg {
    width: 188px;
    height: 188px;
  }
}
.block_3 .section_1 .list .item:nth-child(2) {
  background-color: var(--orange);
  background-image: url(../images/section_1_item_2.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  border: none;
}
@media (min-width: 960px) {
  .block_3 .section_1 .list .item:nth-child(2) {
    margin-left: auto;
    background-size: auto 90%;
  }
}
@media (min-width: 1200px) {
  .block_3 .section_1 .list .item:nth-child(2) {
    max-width: 760px;
  }
  .block_3 .section_1 .list .item:nth-child(2) .text {
    margin: auto 0 auto 20%;
    max-width: 550px;
  }
}
@media (min-width: 1400px) {
  .block_3 .section_1 .list .item:nth-child(2) {
    margin-left: auto;
    max-width: 865px;
  }
}
@media (min-width: 1680px) {
  .block_3 .section_1 .list .item:nth-child(2) {
    max-width: 1230px;
    min-height: 230px;
  }
  .block_3 .section_1 .list .item:nth-child(2) .text {
    margin: auto 100px auto auto;
    max-width: 720px;
  }
}
.block_3 .section_1 .list .item:nth-child(3) {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 0;
}
.block_3 .section_1 .list .item:nth-child(3) .text {
  font-weight: 700;
  font-size: 16px;
  line-height: 137%;
  text-transform: uppercase;
  color: var(--white);
}
@media (min-width: 960px) {
  .block_3 .section_1 .list .item:nth-child(3) {
    padding-bottom: 30px;
    position: relative;
    max-width: 720px;
  }
  .block_3 .section_1 .list .item:nth-child(3) .text {
    max-width: 450px;
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .block_3 .section_1 .list .item:nth-child(3) {
    position: relative;
    max-width: 720px;
  }
  .block_3 .section_1 .list .item:nth-child(3) .text {
    max-width: 450px;
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .block_3 .section_1 .list .item:nth-child(3) {
    position: relative;
    max-width: 865px;
  }
  .block_3 .section_1 .list .item:nth-child(3) .text {
    max-width: 450px;
    font-size: 36px;
  }
}
@media (min-width: 1680px) {
  .block_3 .section_1 .list .item:nth-child(3) {
    position: relative;
    padding-bottom: 50px;
    max-width: 1230px;
  }
  .block_3 .section_1 .list .item:nth-child(3) .text {
    margin: auto 0;
    max-width: 660px;
    font-weight: 800;
    font-size: 40px;
    line-height: 162%;
  }
}
.block_3 .section_1 .list .item:nth-last-child(1) {
  margin-bottom: 0;
}
.block_3 .section_1 .list .el1 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  transform: translateY(50%) translateX(25%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (min-width: 430px) {
  .block_3 .section_1 .list .el1 {
    transform: translateY(50%) translateX(45%);
  }
}
.block_3 .section_1 .list .el1 svg {
  width: 125px;
}
@media (min-width: 1200px) {
  .block_3 .section_1 .list .el1 {
    bottom: auto;
    left: auto;
    top: 0;
    right: 0;
  }
  .block_3 .section_1 .list .el1 svg {
    width: 230px;
  }
}
@media (min-width: 1400px) {
  .block_3 .section_1 .list .el1 svg {
    width: 300px;
  }
}
@media (min-width: 1680px) {
  .block_3 .section_1 .list .el1 {
    top: 0;
    right: 0;
    transform: translateY(25%);
  }
  .block_3 .section_1 .list .el1 svg {
    width: 370px;
  }
}
.block_3 .section_1 .list .el2 {
  position: absolute;
  z-index: 1;
  display: flex;
  bottom: 0;
  right: 0;
  transform: rotate(12deg) translateY(75%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.block_3 .section_1 .list .el2 img {
  width: 200px;
  border-radius: 8px;
}
@media (min-width: 390px) {
  .block_3 .section_1 .list .el2 {
    transform: rotate(12deg) translateY(75%) translateX(-25%);
  }
}
@media (min-width: 430px) {
  .block_3 .section_1 .list .el2 {
    transform: rotate(12deg) translateY(75%) translateX(-10%);
  }
}
@media (min-width: 960px) {
  .block_3 .section_1 .list .el2 {
    bottom: 0;
    right: 0;
    transform: rotate(12deg) translateY(35%) translateX(-25%);
  }
  .block_3 .section_1 .list .el2 img {
    border-radius: 18px;
    width: 230px;
  }
}
@media (min-width: 1200px) {
  .block_3 .section_1 .list .el2 {
    transform: rotate(12deg) translateY(50%) translateX(-70%);
  }
  .block_3 .section_1 .list .el2 img {
    border-radius: 20px;
    width: 340px;
  }
}
@media (min-width: 1400px) {
  .block_3 .section_1 .list .el2 {
    transform: rotate(12deg) translateY(35%) translateX(-25%);
  }
  .block_3 .section_1 .list .el2 img {
    border-radius: 22px;
    width: 370px;
  }
}
@media (min-width: 1680px) {
  .block_3 .section_1 .list .el2 {
    bottom: 0;
    right: 0;
    transform: rotate(12deg) translateY(35%) translateX(-25%);
  }
  .block_3 .section_1 .list .el2 img {
    border-radius: 24px;
    width: 640px;
  }
}
.block_3 .section_2 {
  position: relative;
}
.block_3 .section_2 .list {
  position: relative;
}
.block_3 .section_2 .list .item {
  --currentColor: var(var(--white));
  cursor: pointer;
  padding: 12px;
  border: 1px solid var(--currentColor);
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.block_3 .section_2 .list .item .content {
  position: relative;
}
.block_3 .section_2 .list .item .item_title {
  position: relative;
  display: flex;
}
.block_3 .section_2 .list .item .item_title:before {
  content: '';
  width: 50px;
  height: 23px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 50 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M49.0607 12.5607C49.6464 11.9749 49.6464 11.0251 49.0607 10.4393L39.5147 0.893402C38.9289 0.307615 37.9792 0.307615 37.3934 0.893402C36.8076 1.47919 36.8076 2.42894 37.3934 3.01472L45.8787 11.5L37.3934 19.9853C36.8076 20.5711 36.8076 21.5208 37.3934 22.1066C37.9792 22.6924 38.9289 22.6924 39.5147 22.1066L49.0607 12.5607ZM-1.31134e-07 13L48 13L48 10L1.31134e-07 10L-1.31134e-07 13Z' fill='%23FFF' /%3E%3C/svg%3E");
}
.block_3 .section_2 .list .item .item_title:before {
  margin: auto 20px auto 0;
}
.block_3 .section_2 .list .item .text {
  position: relative;
  display: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 129%;
  max-width: 75%;
}
.block_3 .section_2 .list .item img {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-32.5%) translateX(-10%);
}
.block_3 .section_2 .list .item:nth-child(even) .content {
  margin-left: auto;
}
.block_3 .section_2 .list .item:nth-child(even) img {
  right: auto;
  left: 0;
  top: 0;
  transform: translateY(-17.5%) translateX(10%);
}
@media (max-width: 767px) {
  .block_3 .section_2 .list .item {
    --currentColor: var(var(--black));
    background: var(--white);
  }
  .block_3 .section_2 .list .item .content {
    max-width: 75%;
  }
  .block_3 .section_2 .list .item .item_title {
    font-weight: 800;
    font-size: 16px;
    line-height: 125%;
    text-transform: uppercase;
    color: var(--currentColor);
    margin-bottom: 12px;
  }
  .block_3 .section_2 .list .item .item_title:before {
    width: 20px;
    height: 15px;
    margin: auto 12px auto 0;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 50 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M49.0607 12.5607C49.6464 11.9749 49.6464 11.0251 49.0607 10.4393L39.5147 0.893402C38.9289 0.307615 37.9792 0.307615 37.3934 0.893402C36.8076 1.47919 36.8076 2.42894 37.3934 3.01472L45.8787 11.5L37.3934 19.9853C36.8076 20.5711 36.8076 21.5208 37.3934 22.1066C37.9792 22.6924 38.9289 22.6924 39.5147 22.1066L49.0607 12.5607ZM-1.31134e-07 13L48 13L48 10L1.31134e-07 10L-1.31134e-07 13Z' fill='%232D2A26' /%3E%3C/svg%3E");
  }
  .block_3 .section_2 .list .item .item_title span {
    max-width: calc(100% - 40px);
  }
  .block_3 .section_2 .list .item .text {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    max-width: unset;
  }
  .block_3 .section_2 .list .item img {
    display: block;
    width: 35%;
  }
  .block_3 .section_2 .list .item:nth-child(even) .content {
    position: relative;
  }
  .block_3 .section_2 .list .item:nth-child(even) img {
    width: 30%;
  }
  .block_3 .section_2 .list .item:nth-child(2) img {
    transform: translateY(-2.5%) translateX(-5%);
  }
  .block_3 .section_2 .list .item:nth-child(3) .content {
    max-width: 70%;
  }
  .block_3 .section_2 .list .item:nth-child(3) img {
    transform: translateY(-15.5%) translateX(6%);
  }
  .block_3 .section_2 .list .item:nth-child(4) .content {
    max-width: 70%;
  }
  .block_3 .section_2 .list .item:nth-child(4) img {
    transform: translateY(-20%) translateX(-20%);
    width: 50%;
  }
  .block_3 .section_2 .list .item:nth-child(5) .content {
    max-width: 70%;
  }
  .block_3 .section_2 .list .item:nth-child(5) img {
    width: 40%;
    transform: translateY(-30%) translateX(10%);
  }
}
@media (min-width: 768px) {
  .block_3 .section_2 .list .item.active,
  .block_3 .section_2 .list .item:hover {
    --currentColor: var(var(--black));
    background: var(--white);
    position: relative;
    min-height: 230px;
  }
  .block_3 .section_2 .list .item.active .item_title,
  .block_3 .section_2 .list .item:hover .item_title {
    position: relative;
  }
  .block_3 .section_2 .list .item.active .item_title:before,
  .block_3 .section_2 .list .item:hover .item_title:before,
  .block_3 .section_2 .list .item.active .item_title:after,
  .block_3 .section_2 .list .item:hover .item_title:after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 50 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M49.0607 12.5607C49.6464 11.9749 49.6464 11.0251 49.0607 10.4393L39.5147 0.893402C38.9289 0.307615 37.9792 0.307615 37.3934 0.893402C36.8076 1.47919 36.8076 2.42894 37.3934 3.01472L45.8787 11.5L37.3934 19.9853C36.8076 20.5711 36.8076 21.5208 37.3934 22.1066C37.9792 22.6924 38.9289 22.6924 39.5147 22.1066L49.0607 12.5607ZM-1.31134e-07 13L48 13L48 10L1.31134e-07 10L-1.31134e-07 13Z' fill='%232D2A26' /%3E%3C/svg%3E");
  }
  .block_3 .section_2 .list .item.active .text,
  .block_3 .section_2 .list .item:hover .text {
    position: relative;
    display: block;
  }
  .block_3 .section_2 .list .item.active img,
  .block_3 .section_2 .list .item:hover img {
    display: block;
  }
}
@media (min-width: 1200px) {
  .block_3 .section_2 .list .item .item_title {
    position: relative;
  }
  .block_3 .section_2 .list .item .text {
    position: relative;
  }
  .block_3 .section_2 .list .item.active {
    position: relative;
  }
  .block_3 .section_2 .list .item.active .item_title {
    position: relative;
  }
  .block_3 .section_2 .list .item.active .text {
    position: relative;
  }
}
@media (min-width: 1400px) {
  .block_3 .section_2 .list .item .item_title {
    position: relative;
  }
  .block_3 .section_2 .list .item .text {
    position: relative;
  }
  .block_3 .section_2 .list .item.active {
    position: relative;
  }
  .block_3 .section_2 .list .item.active .item_title {
    position: relative;
  }
  .block_3 .section_2 .list .item.active .text {
    position: relative;
    display: block;
  }
}
@media (min-width: 1680px) {
  .block_3 .section_2 .list .item {
    border: 4px solid var(--white);
    border-radius: 24px;
    padding: 50px 60px;
    margin-bottom: 50px;
  }
  .block_3 .section_2 .list .item .item_title {
    font-weight: 800;
    font-size: 40px;
    line-height: 162%;
    text-transform: uppercase;
    color: var(--white);
  }
  .block_3 .section_2 .list .item .text {
    position: relative;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 34px;
    line-height: 135%;
    color: var(--black);
  }
  .block_3 .section_2 .list .item.active,
  .block_3 .section_2 .list .item:hover {
    position: relative;
    height: 230px;
  }
  .block_3 .section_2 .list .item.active .item_title,
  .block_3 .section_2 .list .item:hover .item_title {
    color: var(--black);
    margin-bottom: 28px;
  }
  .block_3 .section_2 .list .item.active .text,
  .block_3 .section_2 .list .item:hover .text {
    position: relative;
  }
}
.block_3 .section_2 .list .item:nth-last-child(1) {
  margin-bottom: 0;
}
.block_4 {
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 1200px) {
  .block_4 {
    margin-bottom: 120px;
  }
}
@media (min-width: 1400px) {
  .block_4 {
    margin-bottom: 145px;
  }
}
@media (min-width: 1680px) {
  .block_4 {
    margin-bottom: 170px;
  }
}
.block_4 .title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 113%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .block_4 .title {
    font-size: 76px;
    line-height: 108%;
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .block_4 .title {
    font-size: 94px;
    line-height: 116%;
    margin-bottom: 40px;
  }
}
@media (min-width: 1680px) {
  .block_4 .title {
    font-size: 112px;
    line-height: 118%;
    margin-bottom: 50px;
  }
}
.block_4 .block_step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block_4 .item_img {
  position: relative;
  display: flex;
  margin-bottom: 24px;
}
.block_4 .item_img img,
.block_4 .item_img video {
  border-radius: 24px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: auto;
}
@media (min-width: 768px) {
  .block_4 .item_img {
    margin-bottom: 24px;
  }
}
@media (min-width: 960px) {
  .block_4 .item_img {
    margin-bottom: 0;
    margin-right: 26px;
  }
}
@media (min-width: 1200px) {
  .block_4 .item_img {
    margin-right: 28px;
  }
}
@media (min-width: 1400px) {
  .block_4 .item_img {
    margin-right: 32px;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_img {
    margin-right: 36px;
  }
}
.block_4 .item_1,
.block_4 .item_2 {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--white);
  padding: 20px 10px 20px 0;
}
.block_4 .item_1 .block_text,
.block_4 .item_2 .block_text {
  position: relative;
  display: flex;
  font-family: var(--font-family);
}
.block_4 .item_1 .block_text:before,
.block_4 .item_2 .block_text:before {
  content: attr(data-num);
  font-weight: 800;
  font-size: 94px;
  line-height: 79%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--blue);
  transform: translateX(-25%);
}
@media (min-width: 1200px) {
  .block_4 .item_1 .block_text:before,
  .block_4 .item_2 .block_text:before {
    font-size: 138px;
    line-height: 59%;
  }
}
@media (min-width: 1400px) {
  .block_4 .item_1 .block_text:before,
  .block_4 .item_2 .block_text:before {
    font-size: 180px;
    line-height: 59%;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_1 .block_text:before,
  .block_4 .item_2 .block_text:before {
    font-size: 220px;
    line-height: 60%;
  }
}
.block_4 .item_1 .block_text .text,
.block_4 .item_2 .block_text .text {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 129%;
  color: var(--black);
  margin: auto 0;
}
@media (min-width: 390px) {
  .block_4 .item_1 .block_text .text,
  .block_4 .item_2 .block_text .text {
    font-size: 16px;
    line-height: 130%;
  }
}
@media (min-width: 410px) {
  .block_4 .item_1 .block_text .text,
  .block_4 .item_2 .block_text .text {
    font-size: 18px;
    line-height: 132%;
  }
}
@media (min-width: 768px) {
  .block_4 .item_1 .block_text .text,
  .block_4 .item_2 .block_text .text {
    font-size: 20px;
    line-height: 134%;
  }
}
@media (min-width: 960px) {
  .block_4 .item_1 .block_text .text,
  .block_4 .item_2 .block_text .text {
    font-size: 21px;
    line-height: 135%;
  }
}
@media (min-width: 1200px) {
  .block_4 .item_1 .block_text .text,
  .block_4 .item_2 .block_text .text {
    max-width: 750px;
    font-size: 22px;
    line-height: 136%;
  }
}
@media (min-width: 1400px) {
  .block_4 .item_1 .block_text .text,
  .block_4 .item_2 .block_text .text {
    font-size: 28px;
    line-height: 139%;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_1 .block_text .text,
  .block_4 .item_2 .block_text .text {
    font-size: 34px;
    line-height: 141%;
  }
}
@media (min-width: 1200px) {
  .block_4 .item_1,
  .block_4 .item_2 {
    margin-bottom: 0;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_1,
  .block_4 .item_2 {
    padding: 85px 50px 85px 0;
    border-radius: 24px;
  }
}
.block_4 .item_3 {
  position: relative;
}
@media (min-width: 768px) {
  .block_4 .item_3 {
    margin-top: 24px;
  }
}
@media (min-width: 960px) {
  .block_4 .item_3 {
    margin-top: 26px;
  }
}
@media (min-width: 1200px) {
  .block_4 .item_3 {
    margin-top: 28px;
  }
}
@media (min-width: 1400px) {
  .block_4 .item_3 {
    margin-top: 32px;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_3 {
    margin-top: 36px;
  }
}
.block_4 .item_3 .content {
  position: relative;
  border-radius: 12px;
  background: var(--blue);
  padding: 20px 10px 10px 0;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='867' height='425' viewBox='0 0 867 425' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_75_1463)'%3E%3Cg opacity='0.2'%3E%3Cpath d='M917 0H0V603.074H917V0Z' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M815.102 603.074V0' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M713.219 603.074V0' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M611.328 603.074V0' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M509.445 603.074V0' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M407.555 603.074V0' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M305.664 603.074V0' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M203.781 603.074V0' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M101.898 603.074V0' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M0 100.517H917' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M0 201.02H917' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M0 301.537H917' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3Cpath d='M0 402.054H917' stroke='white' stroke-width='2' stroke-miterlimit='10' /%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_75_1463'%3E%3Cpath d='M0 0H843C856.255 0 867 10.7452 867 24V401C867 414.255 856.255 425 843 425H0V0Z' fill='white' /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media (min-width: 768px) {
  .block_4 .item_3 .content {
    border-radius: 16px;
  }
}
@media (min-width: 1200px) {
  .block_4 .item_3 .content {
    border-radius: 18px;
    padding: 50px 0 30px 0 ;
  }
}
@media (min-width: 1400px) {
  .block_4 .item_3 .content {
    border-radius: 20px;
    padding: 65px 0 35px 0 ;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_3 .content {
    border-radius: 24px;
    padding: 84px 0 45px 0 ;
    background-position: right;
  }
}
.block_4 .item_3 .content .block_text {
  position: relative;
  display: flex;
  font-family: var(--font-family);
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .block_4 .item_3 .content .block_text {
    margin-bottom: 40px;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_3 .content .block_text {
    margin-bottom: 70px;
  }
}
.block_4 .item_3 .content .block_text:before {
  content: attr(data-num);
  font-weight: 800;
  font-size: 94px;
  line-height: 79%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--body_color);
  transform: translateX(-25%);
}
@media (min-width: 1200px) {
  .block_4 .item_3 .content .block_text:before {
    font-size: 138px;
    line-height: 59%;
  }
}
@media (min-width: 1400px) {
  .block_4 .item_3 .content .block_text:before {
    font-size: 180px;
    line-height: 59%;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_3 .content .block_text:before {
    font-size: 220px;
    line-height: 60%;
  }
}
.block_4 .item_3 .content .block_text .text {
  margin: auto 0;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 129%;
  color: var(--white);
}
@media (max-width: 768px) {
  .block_4 .item_3 .content .block_text .text br {
    display: none;
  }
}
@media (min-width: 390px) {
  .block_4 .item_3 .content .block_text .text {
    font-size: 16px;
    line-height: 130%;
  }
}
@media (min-width: 410px) {
  .block_4 .item_3 .content .block_text .text {
    font-size: 18px;
    line-height: 132%;
  }
}
@media (min-width: 768px) {
  .block_4 .item_3 .content .block_text .text {
    font-size: 20px;
    line-height: 134%;
  }
}
@media (min-width: 960px) {
  .block_4 .item_3 .content .block_text .text {
    font-size: 21px;
    line-height: 135%;
  }
}
@media (min-width: 1200px) {
  .block_4 .item_3 .content .block_text .text {
    max-width: 595px;
    font-size: 22px;
    line-height: 136%;
  }
}
@media (min-width: 1400px) {
  .block_4 .item_3 .content .block_text .text {
    max-width: 775px;
    font-size: 28px;
    line-height: 139%;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_3 .content .block_text .text {
    max-width: 955px;
    font-size: 34px;
    line-height: 141%;
  }
}
@media (min-width: 960px) {
  .block_4 .item_3 .content .app_links {
    position: relative;
  }
}
@media (min-width: 1200px) {
  .block_4 .item_3 .content .app_links {
    margin-left: 232px;
  }
}
@media (min-width: 1400px) {
  .block_4 .item_3 .content .app_links {
    margin-left: 232px;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_3 .content .app_links {
    margin-left: 232px;
  }
}
.block_4 .item_3 .el1 {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  display: none;
}
@media (min-width: 768px) {
  .block_4 .item_3 .el1 {
    display: block;
  }
}
@media (min-width: 1200px) {
  .block_4 .item_3 .el1 {
    width: auto;
  }
}
@media (min-width: 1400px) {
  .block_4 .item_3 .el1 {
    width: auto;
  }
}
@media (min-width: 1680px) {
  .block_4 .item_3 .el1 {
    width: auto;
    transform: translateX(15%) translateY(-9%);
  }
}
.footer {
  position: relative;
  background-color: var(--blue);
  min-height: 300px;
  border-radius: 18px 18px 0 0;
  padding: 30px 0;
}
@media (min-width: 1200px) {
  .footer {
    border-radius: 25px 25px 0 0;
    padding: 40px 0;
  }
}
@media (min-width: 1400px) {
  .footer {
    border-radius: 30px 30px 0 0;
    padding: 50px 0;
  }
}
@media (min-width: 1680px) {
  .footer {
    border-radius: 40px 40px 0 0;
    padding: 60px 0;
  }
}
.footer .logo {
  position: relative;
  display: flex;
}
.footer .logo svg {
  width: 100%;
  height: auto;
  fill: var(--white);
}
.footer .logo:hover svg {
  fill: var(--orange);
}
.footer .contacts {
  position: relative;
  display: flex;
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .footer .contacts {
    margin: 40px 0;
  }
}
@media (min-width: 1400px) {
  .footer .contacts {
    margin: 50px 0;
  }
}
@media (min-width: 1680px) {
  .footer .contacts {
    margin: 60px 0;
  }
}
.footer .contacts:before,
.footer .contacts:after {
  content: '';
  width: auto;
  flex: 1 1 auto;
  background-size: cover;
}
.footer .contacts:before {
  background-image: url("data:image/svg+xml,%3Csvg width='67' height='544' viewBox='0 0 67 544' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_133_1538)'%3E%3Crect width='360' height='544' transform='matrix(-1 0 0 1 67 0)' fill='%23FF4249'/%3E%3Cpath d='M128.241 157.223C133.156 95.5001 96.7298 72.8089 49.2603 45.6079C48.4918 45.0416 48.4109 44.7382 49.0379 43.9697C63.3576 28.3569 70.2343 -1.16988 48.4918 -13.6884C29.4797 -25.1553 11.4992 -6.97406 17.2231 11.8948C19.994 24.7571 26.81 35.3949 35.9317 44.6776C36.2756 45.0417 36.943 45.2843 36.1744 45.9719C0.658325 79.5434 -40.8244 59.9264 -75.1675 36.1634C-101.097 18.7911 -133.822 35.2937 -147.939 60.0072C-148.404 60.7757 -148.87 61.0185 -149.759 60.978C-153.966 60.796 -158.153 61.0184 -162.319 61.6251C-181.21 64.2946 -198.2 71.4944 -213.207 83.2849C-249.107 61.9083 -287.576 81.9096 -313 110.688V123.288C-299.995 107.452 -284.624 92.5676 -264.6 85.6713C-249.694 80.3928 -234.99 80.4738 -220.974 88.7656C-220.185 89.2307 -220.144 89.4734 -220.792 90.1205C-237.68 107.149 -248.117 132.53 -240.127 156.171C-233.554 179.065 -204.085 175.505 -196.238 156.293C-185.68 135.685 -190.413 106.239 -206.755 89.8374C-207.099 89.4936 -207.928 89.2105 -206.978 88.5026C-190.979 76.6313 -173.201 69.7349 -153.177 68.926C-152.429 68.8855 -152.247 69.0271 -152.53 69.7754C-158.517 87.3701 -155.443 108.807 -141.831 122.155C-129.331 134.027 -110.684 131.155 -103.059 116.068C-91.1053 91.4149 -114.385 65.5486 -138.656 62.1712C-143.206 61.6049 -122.192 42.999 -119.522 42.6956C-90.5997 23.7661 -65.8636 56.0636 -39.9344 65.3058C-12.6501 77.3997 20.459 72.7888 41.8577 51.4931C42.5656 50.8459 42.9702 50.8055 43.7388 51.3717C45.7411 52.8683 47.7635 54.3243 49.8669 55.6793C102.271 81.04 131.599 117.908 117.36 172.088C117.157 172.897 116.955 173.382 115.883 173.321C87.527 172.593 54.701 180.723 38.116 205.518C17.3646 250.981 97.5185 252.356 122.214 183.009C122.477 182.341 122.639 181.896 123.529 182.018C134.612 183.514 145.069 187.276 154.939 192.413V183.413C118.958 166.364 124.742 185.799 128.181 157.183M-198.624 131.438C-198.867 141.165 -200.465 150.367 -206.917 158.032C-216.989 169.924 -231.875 163.675 -233.615 149.821C-238.084 129.314 -228.801 109.677 -214.623 95.2372C-213.753 94.3474 -213.349 94.5293 -212.6 95.2776C-202.568 105.309 -198.968 117.787 -198.624 131.458M-111.675 115.016C-117.297 122.944 -128.017 123.753 -135.723 116.877C-144.339 109.212 -146.867 98.0281 -147.474 87.0061C-147.595 83.9725 -145.856 70.3619 -143.146 69.5327C-122.05 70.9483 -98.3259 93.7001 -111.675 114.996M42.6668 39.1969C42.3027 39.6419 42.0803 39.5003 41.7567 39.1969C30.2686 29.4086 11.6407 -6.75168 36.8215 -9.03697C42.3027 -8.73361 46.7119 -6.28644 50.0492 -1.99899C53.2246 2.066 54.4584 6.81851 54.3977 13.7148C54.1145 22.5729 49.1996 31.249 42.6465 39.2172M112.324 186.163C104.274 203.334 92.8463 217.47 75.4119 225.944C68.8588 229.119 61.9215 230.797 54.5797 229.624C43.132 227.804 39.1476 219.108 45.2759 209.239C59.2518 189.136 85.7269 182.28 109.047 181.209C114.508 181.128 114.649 181.209 112.324 186.143' fill='%23000B8C'/%3E%3Cpath d='M-216.18 436.939C-243.586 401.669 -236.406 363.021 -189.462 352.222C-158.861 346.114 -126.318 344.941 -99.155 327.913C-49.1573 302.734 -6.58246 197.206 -80.4058 177.387C-94.6649 173.423 -111.857 177.407 -123.911 167.517C-128.967 163.169 -123.365 156.536 -118.632 154.736C-114.931 153.239 -111.088 153.361 -107.245 153.765C-84.5926 158.599 -58.886 142.521 -69.9494 117.463C-73.2664 107.716 -84.1477 92.6084 -70.455 86.3187C-55.7106 79.4022 -58.886 98.3115 -58.0567 107.028C-58.2792 131.964 -24.1181 138.334 -16.2301 113.459C-14.7132 108.929 -13.8233 103.651 -9.91974 100.455C-5.69258 117.767 -23.39 130.953 -37.467 136.777C-49.2383 141.328 -72.0933 150.974 -57.5713 165.758C-36.9817 184.425 -13.9446 159.65 7.83839 157.992C10.2857 157.628 10.5081 158.599 9.07211 160.399C5.8158 165.03 1.12337 167.942 -3.67009 170.693C-30.6106 181.836 -47.7011 214.275 -29.9229 239.373C-21.2865 251.649 -3.83177 257.23 -1.76877 273.693C-0.959747 279.82 -0.878845 286.049 -0.00915527 292.177C1.71002 314.727 27.1941 324.373 46.3275 315.9C83.4212 302.37 112.304 260.264 154.979 268.091V259.92C104.213 251.729 77.4344 302.896 32.6752 310.783C14.9576 312.866 5.99767 296.99 7.13029 281.681C7.13029 267.443 1.36603 256.159 -9.77826 247.422C-14.511 243.701 -19.4662 240.141 -23.0866 235.186C-38.4783 213.446 -22.6214 187.215 0.152573 177.73C9.75972 173.746 29.4391 154.736 10.2046 150.186C-10.9109 147.577 -29.4779 172.836 -50.108 161.592C-67.4008 150.853 -21.3876 144.139 -11.4164 128.91C13.3802 101.648 -12.7312 71.2318 -23.8957 111.154C-26.6464 125.169 -47.5595 124.683 -49.5416 110.264C-50.654 104.621 -50.1485 98.9182 -50.4519 93.2353C-50.371 74.144 -72.174 73.0115 -81.3969 85.0446C-91.2669 97.2801 -80.0217 110.85 -76.5024 123.227C-70.1516 140.782 -91.4289 149.215 -105.567 145.959C-124.356 141.166 -146.503 162.522 -125.549 176.456C-113.535 183.818 -98.7506 182.018 -85.3815 184.627C-23.0462 195.871 -52.3327 281.802 -86.9791 309.388C-127.794 348.44 -183.88 330.42 -221.136 358.208C-247.672 377.724 -243.788 412.853 -225.828 437H-216.16L-216.18 436.939Z' fill='%23000B8C'/%3E%3Cpath d='M11.3166 -30.9798C2.07349 -13.9715 4.09601 6.33318 -3.63016 23.847C-13.5002 42.2709 -29.0334 18.8114 -35.1415 9.02304C-24.9074 -1.93828 -22.8242 -16.6209 -26.0805 -31H-34.4944C-31.6021 -20.3218 -31.4404 -8.06611 -38.8835 0.791925C-39.1666 1.11551 -39.4092 1.64124 -39.834 0.832289C-45.214 -9.48186 -50.2501 -19.9376 -53.8907 -31H-62.2843C-58.4819 -18.623 -52.9806 -6.87296 -46.8927 4.53328C-44.3038 8.69939 -67.0777 6.89943 -69.7879 5.50399C-102.048 -2.42375 -114.81 -35.3886 -151.661 -11.1807C-185.418 12.5217 -180.159 57.3579 -236.952 28.0334C-237.539 27.7098 -237.539 27.4671 -237.256 26.9008C-228.437 9.04319 -225.383 -13.203 -235.638 -30.9798H-245.103C-234 -15.3872 -235.638 5.40296 -244.052 22.5325C-244.234 22.937 -244.314 23.4425 -244.982 22.9572C-261.081 10.3779 -286.545 -8.45039 -286.161 -30.9595H-294.292C-293.543 -3.73824 -268.909 14.4834 -249.108 29.8333C-248.724 30.0962 -248.016 30.1974 -248.501 31.0063C-260.818 53.839 -287.496 72.6067 -312.98 58.9758V67.8541C-284.523 80.0895 -255.803 60.6746 -242.049 35.7184C-241.503 34.8285 -241.159 34.8286 -240.33 35.2938C-235.213 38.2262 -229.894 40.7542 -224.271 42.5137C-183.8 54.7289 -177.145 27.8716 -155.888 2.73333C-119.26 -32.1123 -106.154 5.84788 -71.1634 13.4318C-61.9405 15.4946 -52.7379 16.3844 -43.5757 13.2093C-42.443 12.8048 -42.0384 13.0273 -41.4519 13.9778C-37.0225 21.0966 -32.1281 27.8311 -25.6963 33.3118C-12.934 45.1831 1.54761 36.5678 5.99725 21.7033C11.2964 4.2299 10.7906 -15.2254 20.5393 -30.9595H11.3166V-30.9798Z' fill='%23000B8C'/%3E%3Cpath d='M155 215.731C137.95 218.542 126.583 233.75 113.173 243.62C76.1404 278.647 -18.8187 258.828 11.6006 196.68C17.5671 186.184 27.1135 180.703 38.2983 177.427C48.6538 174.373 59.2723 172.209 69.284 168.023C111.434 152.936 96.0827 96.2282 60.5464 83.2647C38.1971 71.3933 2.78222 81.6266 0.961916 109.9C-0.211167 127.838 20.0346 145.635 37.8736 142.723C65.259 138.193 50.0493 104.601 29.3787 105.167C17.3243 105.167 19.9941 118.05 27.1337 114.126C37.3274 108.747 54.1753 130.851 38.4802 134.391C23.0076 137.525 5.12845 122.115 9.61852 106.118C29.0351 58.3893 106.64 106.34 82.7945 148.021C72.5604 162.866 52.6384 164.524 36.7006 169.54C0.335012 176.476 -16.2298 226.652 12.086 251.385C40.7861 276.685 85.7071 273.712 115.479 251.851C128.848 243.134 138.941 227.501 154.98 224.002V215.711L155 215.731Z' fill='%23000B8C'/%3E%3Cpath d='M154.999 65.9132C148.486 51.5138 135.805 41.4827 117.824 41.1591C106.923 40.0468 85.2209 40.1885 89.5289 23.8072C94.9696 5.72706 102.534 -12.1104 96.3852 -30.9792H87.8703C101.3 -1.63447 62.4468 32.2809 93.8167 45.1433C106.417 50.361 120.818 46.9837 133.155 52.889C160.703 68.3805 147.536 102.64 154.999 128.304V65.9132Z' fill='%23000B8C'/%3E%3Cpath d='M119.241 503.777C124.156 565.5 87.7298 588.191 40.2603 615.392C39.4918 615.958 39.4109 616.262 40.0379 617.03C54.3576 632.643 61.2343 662.17 39.4918 674.688C20.4797 686.155 2.49924 667.974 8.22308 649.105C10.994 636.243 17.81 625.605 26.9317 616.322C27.2756 615.958 27.943 615.716 27.1744 615.028C-8.34167 581.457 -49.8244 601.074 -84.1675 624.837C-110.097 642.209 -142.822 625.706 -156.939 600.993C-157.404 600.224 -157.87 599.981 -158.759 600.022C-162.966 600.204 -167.153 599.982 -171.319 599.375C-190.21 596.705 -207.2 589.506 -222.207 577.715C-258.107 599.092 -296.576 579.09 -322 550.312V537.712C-308.995 553.548 -293.624 568.432 -273.6 575.329C-258.694 580.607 -243.99 580.526 -229.974 572.234C-229.185 571.769 -229.144 571.527 -229.792 570.879C-246.68 553.851 -257.117 528.47 -249.127 504.828C-242.554 481.935 -213.085 485.494 -205.238 504.707C-194.68 525.315 -199.413 554.761 -215.755 571.163C-216.099 571.506 -216.928 571.789 -215.978 572.497C-199.979 584.369 -182.201 591.265 -162.177 592.074C-161.429 592.114 -161.247 591.973 -161.53 591.225C-167.517 573.63 -164.443 552.193 -150.831 538.845C-138.331 526.973 -119.684 529.845 -112.059 544.932C-100.105 569.585 -123.385 595.451 -147.656 598.829C-152.206 599.395 -131.192 618.001 -128.522 618.304C-99.5997 637.234 -74.8636 604.936 -48.9344 595.694C-21.6501 583.6 11.459 588.211 32.8577 609.507C33.5656 610.154 33.9702 610.194 34.7388 609.628C36.7411 608.132 38.7635 606.676 40.8669 605.321C93.2714 579.96 122.599 543.092 108.36 488.912C108.157 488.103 107.955 487.618 106.883 487.679C78.527 488.407 45.701 480.277 29.116 455.482C8.36456 410.019 88.5185 408.644 113.214 477.991C113.477 478.659 113.639 479.104 114.529 478.982C125.612 477.486 136.069 473.724 145.939 468.587V477.587C109.958 494.636 115.742 475.201 119.181 503.817M-207.624 529.562C-207.867 519.834 -209.465 510.633 -215.917 502.968C-225.989 491.076 -240.875 497.325 -242.615 511.179C-247.084 531.686 -237.801 551.323 -223.623 565.763C-222.753 566.653 -222.349 566.471 -221.6 565.722C-211.568 555.691 -207.968 543.213 -207.624 529.542M-120.675 545.984C-126.297 538.056 -137.017 537.247 -144.723 544.123C-153.339 551.788 -155.867 562.972 -156.474 573.994C-156.595 577.027 -154.856 590.638 -152.146 591.467C-131.05 590.052 -107.326 567.3 -120.675 546.004M33.6668 621.803C33.3027 621.358 33.0803 621.5 32.7567 621.803C21.2686 631.591 2.64072 667.752 27.8215 670.037C33.3027 669.734 37.7119 667.286 41.0492 662.999C44.2246 658.934 45.4584 654.181 45.3977 647.285C45.1145 638.427 40.1996 629.751 33.6465 621.783M103.324 474.836C95.2738 457.666 83.8463 443.53 66.4119 435.056C59.8588 431.881 52.9215 430.202 45.5797 431.375C34.132 433.196 30.1476 441.892 36.2759 451.761C50.2518 471.863 76.7269 478.719 100.047 479.791C105.508 479.872 105.649 479.791 103.324 474.857' fill='%23000B8C'/%3E%3Cpath d='M-225.18 224.061C-252.586 259.331 -245.406 297.979 -198.462 308.778C-167.861 314.886 -135.318 316.059 -108.155 333.087C-58.1573 358.266 -15.5825 463.794 -89.4058 483.613C-103.665 487.577 -120.857 483.593 -132.911 493.483C-137.967 497.831 -132.365 504.464 -127.632 506.264C-123.931 507.761 -120.088 507.639 -116.245 507.235C-93.5926 502.401 -67.886 518.479 -78.9494 543.537C-82.2664 553.284 -93.1477 568.392 -79.455 574.681C-64.7106 581.598 -67.886 562.689 -67.0567 553.972C-67.2792 529.036 -33.1181 522.666 -25.2301 547.541C-23.7132 552.071 -22.8233 557.35 -18.9197 560.545C-14.6926 543.233 -32.39 530.047 -46.467 524.223C-58.2383 519.672 -81.0933 510.026 -66.5713 495.242C-45.9817 476.575 -22.9446 501.35 -1.16161 503.008C1.28568 503.372 1.50813 502.401 0.072113 500.601C-3.1842 495.97 -7.87663 493.058 -12.6701 490.307C-39.6106 479.164 -56.7011 446.725 -38.9229 421.627C-30.2865 409.352 -12.8318 403.77 -10.7688 387.307C-9.95975 381.18 -9.87885 374.951 -9.00916 368.823C-7.28998 346.273 18.1941 336.627 37.3275 345.1C74.4212 358.63 103.304 400.736 145.979 392.91V401.08C95.2133 409.271 68.4344 358.104 23.6752 350.217C5.95761 348.134 -3.00233 364.01 -1.86971 379.319C-1.86971 393.557 -7.63397 404.842 -18.7783 413.578C-23.511 417.299 -28.4662 420.859 -32.0866 425.814C-47.4783 447.554 -31.6214 473.785 -8.84743 483.27C0.75972 487.254 20.4391 506.264 1.20462 510.814C-19.9109 513.423 -38.4779 488.164 -59.108 499.408C-76.4008 510.147 -30.3876 516.861 -20.4164 532.09C4.38016 559.352 -21.7312 589.768 -32.8957 549.846C-35.6464 535.831 -56.5595 536.317 -58.5416 550.736C-59.654 556.379 -59.1485 562.082 -59.4519 567.765C-59.371 586.856 -81.174 587.989 -90.3969 575.955C-100.267 563.72 -89.0217 550.15 -85.5024 537.773C-79.1516 520.219 -100.429 511.785 -114.567 515.041C-133.356 519.834 -155.503 498.478 -134.549 484.544C-122.535 477.182 -107.751 478.982 -94.3815 476.373C-32.0462 465.129 -61.3327 379.198 -95.9791 351.613C-136.794 312.56 -192.88 330.58 -230.136 302.792C-256.672 283.276 -252.788 248.147 -234.828 224H-225.16L-225.18 224.061Z' fill='%23000B8C'/%3E%3Cpath d='M146 445.269C128.95 442.458 117.583 427.25 104.173 417.38C67.1404 382.353 -27.8187 402.172 2.60059 464.32C8.56714 474.816 18.1135 480.297 29.2983 483.573C39.6538 486.627 50.2723 488.791 60.284 492.977C102.434 508.064 87.0827 564.772 51.5464 577.735C29.1971 589.607 -6.21778 579.373 -8.03808 551.1C-9.21117 533.162 11.0346 515.365 28.8736 518.277C56.259 522.807 41.0493 556.399 20.3787 555.833C8.32426 555.833 10.9941 542.95 18.1337 546.874C28.3274 552.253 45.1753 530.149 29.4802 526.609C14.0076 523.475 -3.87155 538.885 0.618524 554.882C20.0351 602.611 97.6405 554.66 73.7945 512.979C63.5604 498.134 43.6384 496.476 27.7006 491.46C-8.66499 484.524 -25.2298 434.348 3.08599 409.615C31.7861 384.315 76.7071 387.288 106.479 409.149C119.848 417.866 129.941 433.499 145.98 436.998V445.289L146 445.269Z' fill='%23000B8C'/%3E%3Cpath d='M145.999 595.087C139.486 609.486 126.805 619.517 108.824 619.841C97.9229 620.953 76.2209 620.812 80.5289 637.193C85.9696 655.273 93.5337 673.11 87.3852 691.979H78.8703C92.3001 662.634 53.4468 628.719 84.8167 615.857C97.4173 610.639 111.818 614.016 124.155 608.111C151.703 592.62 138.536 558.36 145.999 532.696V595.087Z' fill='%23000B8C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_133_1538'%3E%3Crect width='67' height='544' fill='white' transform='matrix(-1 0 0 1 67 0)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.footer .contacts:after {
  background-image: url("data:image/svg+xml,%3Csvg width='67' height='544' viewBox='0 0 67 544' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_133_1496)'%3E%3Crect width='360' height='544' fill='%23FF4249'/%3E%3Cpath d='M-61.2411 157.223C-66.1559 95.5001 -29.7298 72.8089 17.7397 45.6079C18.5082 45.0416 18.5891 44.7382 17.9621 43.9697C3.64243 28.3569 -3.23425 -1.16988 18.5082 -13.6884C37.5203 -25.1553 55.5008 -6.97406 49.7769 11.8948C47.006 24.7571 40.19 35.3949 31.0683 44.6776C30.7244 45.0417 30.057 45.2843 30.8256 45.9719C66.3417 79.5434 107.824 59.9264 142.167 36.1634C168.097 18.7911 200.822 35.2937 214.939 60.0072C215.404 60.7757 215.87 61.0185 216.759 60.978C220.966 60.796 225.153 61.0184 229.319 61.6251C248.21 64.2946 265.2 71.4944 280.207 83.2849C316.107 61.9083 354.576 81.9096 380 110.688V123.288C366.995 107.452 351.624 92.5676 331.6 85.6713C316.694 80.3928 301.99 80.4738 287.974 88.7656C287.185 89.2307 287.144 89.4734 287.792 90.1205C304.68 107.149 315.117 132.53 307.127 156.171C300.554 179.065 271.085 175.505 263.238 156.293C252.68 135.685 257.413 106.239 273.755 89.8374C274.099 89.4936 274.928 89.2105 273.978 88.5026C257.979 76.6313 240.201 69.7349 220.177 68.926C219.429 68.8855 219.247 69.0271 219.53 69.7754C225.517 87.3701 222.443 108.807 208.831 122.155C196.331 134.027 177.684 131.155 170.059 116.068C158.105 91.4149 181.385 65.5486 205.656 62.1712C210.206 61.6049 189.192 42.999 186.522 42.6956C157.6 23.7661 132.864 56.0636 106.934 65.3058C79.6501 77.3997 46.541 72.7888 25.1423 51.4931C24.4344 50.8459 24.0298 50.8055 23.2612 51.3717C21.2589 52.8683 19.2365 54.3243 17.1331 55.6793C-35.2714 81.04 -64.5985 117.908 -50.3597 172.088C-50.1574 172.897 -49.9552 173.382 -48.8833 173.321C-20.527 172.593 12.299 180.723 28.884 205.518C49.6354 250.981 -30.5185 252.356 -55.2139 183.009C-55.4768 182.341 -55.6387 181.896 -56.5286 182.018C-67.6122 183.514 -78.0689 187.276 -87.939 192.413V183.413C-51.9577 166.364 -57.7422 185.799 -61.1806 157.183M265.624 131.438C265.867 141.165 267.465 150.367 273.917 158.032C283.989 169.924 298.875 163.675 300.615 149.821C305.084 129.314 295.801 109.677 281.623 95.2372C280.753 94.3474 280.349 94.5293 279.6 95.2776C269.568 105.309 265.968 117.787 265.624 131.458M178.675 115.016C184.297 122.944 195.017 123.753 202.723 116.877C211.339 109.212 213.867 98.0281 214.474 87.0061C214.595 83.9725 212.856 70.3619 210.146 69.5327C189.05 70.9483 165.326 93.7001 178.675 114.996M24.3332 39.1969C24.6973 39.6419 24.9197 39.5003 25.2433 39.1969C36.7314 29.4086 55.3593 -6.75168 30.1785 -9.03697C24.6973 -8.73361 20.2881 -6.28644 16.9508 -1.99899C13.7754 2.066 12.5416 6.81851 12.6023 13.7148C12.8855 22.5729 17.8004 31.249 24.3535 39.2172M-45.3235 186.163C-37.2738 203.334 -25.8463 217.47 -8.41187 225.944C-1.85876 229.119 5.07846 230.797 12.4203 229.624C23.868 227.804 27.8524 219.108 21.7241 209.239C7.74817 189.136 -18.7269 182.28 -42.047 181.209C-47.5079 181.128 -47.6495 181.209 -45.3235 186.143' fill='%23000B8C'/%3E%3Cpath d='M283.18 436.939C310.586 401.669 303.406 363.021 256.462 352.222C225.861 346.114 193.318 344.941 166.155 327.913C116.157 302.734 73.5825 197.206 147.406 177.387C161.665 173.423 178.857 177.407 190.911 167.517C195.967 163.169 190.365 156.536 185.632 154.736C181.931 153.239 178.088 153.361 174.245 153.765C151.593 158.599 125.886 142.521 136.949 117.463C140.266 107.716 151.148 92.6084 137.455 86.3187C122.711 79.4022 125.886 98.3115 125.057 107.028C125.279 131.964 91.1181 138.334 83.2301 113.459C81.7132 108.929 80.8233 103.651 76.9198 100.455C72.6926 117.767 90.39 130.953 104.467 136.777C116.238 141.328 139.093 150.974 124.571 165.758C103.982 184.425 80.9446 159.65 59.1616 157.992C56.7144 157.628 56.4919 158.599 57.9279 160.399C61.1842 165.03 65.8767 167.942 70.6701 170.693C97.6106 181.836 114.701 214.275 96.9229 239.373C88.2866 251.649 70.8318 257.23 68.7688 273.693C67.9598 279.82 67.8789 286.049 67.0092 292.177C65.29 314.727 39.8059 324.373 20.6725 315.9C-16.4212 302.37 -45.3035 260.264 -87.9795 268.091V259.92C-37.2133 251.729 -10.4344 302.896 34.3248 310.783C52.0424 312.866 61.0024 296.99 59.8697 281.681C59.8697 267.443 65.634 256.159 76.7783 247.422C81.5111 243.701 86.4663 240.141 90.0866 235.186C105.478 213.446 89.6215 187.215 66.8475 177.73C57.2403 173.746 37.5609 154.736 56.7954 150.186C77.9109 147.577 96.4779 172.836 117.108 161.592C134.401 150.853 88.3876 144.139 78.4164 128.91C53.6199 101.648 79.7312 71.2318 90.8957 111.154C93.6464 125.169 114.559 124.683 116.542 110.264C117.654 104.621 117.149 98.9182 117.452 93.2353C117.371 74.144 139.174 73.0115 148.397 85.0446C158.267 97.2801 147.022 110.85 143.502 123.227C137.152 140.782 158.429 149.215 172.567 145.959C191.356 141.166 213.503 162.522 192.549 176.456C180.535 183.818 165.751 182.018 152.382 184.627C90.0463 195.871 119.333 281.802 153.979 309.388C194.794 348.44 250.88 330.42 288.136 358.208C314.672 377.724 310.788 412.853 292.828 437H283.16L283.18 436.939Z' fill='%23000B8C'/%3E%3Cpath d='M55.6834 -30.9798C64.9265 -13.9715 62.904 6.33318 70.6301 23.847C80.5002 42.2709 96.0334 18.8114 102.141 9.02304C91.9073 -1.93828 89.8241 -16.6209 93.0804 -31H101.494C98.6021 -20.3218 98.4404 -8.06611 105.883 0.791925C106.167 1.11551 106.409 1.64124 106.834 0.832289C112.214 -9.48186 117.25 -19.9376 120.891 -31H129.284C125.482 -18.623 119.981 -6.87296 113.893 4.53328C111.304 8.69939 134.078 6.89943 136.788 5.50399C169.048 -2.42375 181.81 -35.3886 218.661 -11.1807C252.417 12.5217 247.159 57.3579 303.952 28.0334C304.539 27.7098 304.539 27.4671 304.256 26.9008C295.437 9.04319 292.383 -13.203 302.638 -30.9798H312.103C300.999 -15.3872 302.638 5.40296 311.052 22.5325C311.234 22.937 311.314 23.4425 311.982 22.9572C328.081 10.3779 353.545 -8.45039 353.161 -30.9595H361.292C360.543 -3.73824 335.909 14.4834 316.108 29.8333C315.724 30.0962 315.016 30.1974 315.501 31.0063C327.818 53.839 354.496 72.6067 379.98 58.9758V67.8541C351.523 80.0895 322.803 60.6746 309.049 35.7184C308.503 34.8285 308.159 34.8286 307.33 35.2938C302.213 38.2262 296.894 40.7542 291.271 42.5137C250.799 54.7289 244.145 27.8716 222.888 2.73333C186.26 -32.1123 173.154 5.84788 138.163 13.4318C128.94 15.4946 119.738 16.3844 110.576 13.2093C109.443 12.8048 109.038 13.0273 108.452 13.9778C104.022 21.0966 99.128 27.8311 92.6963 33.3118C79.934 45.1831 65.4524 36.5678 61.0027 21.7033C55.7036 4.2299 56.2094 -15.2254 46.4607 -30.9595H55.6834V-30.9798Z' fill='%23000B8C'/%3E%3Cpath d='M-88 215.731C-70.9498 218.542 -59.5829 233.75 -46.1734 243.62C-9.14036 278.647 85.8187 258.828 55.3994 196.68C49.4329 186.184 39.8865 180.703 28.7017 177.427C18.3462 174.373 7.72768 172.209 -2.28398 168.023C-44.4341 152.936 -29.0827 96.2282 6.45361 83.2647C28.8029 71.3933 64.2178 81.6266 66.0381 109.9C67.2112 127.838 46.9654 145.635 29.1264 142.723C1.74097 138.193 16.9507 104.601 37.6213 105.167C49.6757 105.167 47.0059 118.05 39.8663 114.126C29.6726 108.747 12.8247 130.851 28.5198 134.391C43.9924 137.525 61.8716 122.115 57.3815 106.118C37.9649 58.3893 -39.6405 106.34 -15.7945 148.021C-5.56039 162.866 14.3616 164.524 30.2994 169.54C66.665 176.476 83.2298 226.652 54.914 251.385C26.2139 276.685 -18.7071 273.712 -48.4791 251.851C-61.8483 243.134 -71.9409 227.501 -87.9798 224.002V215.711L-88 215.731Z' fill='%23000B8C'/%3E%3Cpath d='M-87.9991 65.9132C-81.4865 51.5138 -68.805 41.4827 -50.8245 41.1591C-39.9229 40.0468 -18.2209 40.1885 -22.5289 23.8072C-27.9696 5.72706 -35.5337 -12.1104 -29.3852 -30.9792H-20.8703C-34.3001 -1.63447 4.55315 32.2809 -26.8167 45.1433C-39.4173 50.361 -53.8178 46.9837 -66.1554 52.889C-93.7026 68.3805 -80.5359 102.64 -87.9991 128.304V65.9132Z' fill='%23000B8C'/%3E%3Cpath d='M-52.2411 503.777C-57.1559 565.5 -20.7298 588.191 26.7397 615.392C27.5082 615.958 27.5891 616.262 26.9621 617.03C12.6424 632.643 5.76575 662.17 27.5082 674.688C46.5203 686.155 64.5008 667.974 58.7769 649.105C56.006 636.243 49.19 625.605 40.0683 616.322C39.7244 615.958 39.057 615.716 39.8256 615.028C75.3417 581.457 116.824 601.074 151.167 624.837C177.097 642.209 209.822 625.706 223.939 600.993C224.404 600.224 224.87 599.981 225.759 600.022C229.966 600.204 234.153 599.982 238.319 599.375C257.21 596.705 274.2 589.506 289.207 577.715C325.107 599.092 363.576 579.09 389 550.312V537.712C375.995 553.548 360.624 568.432 340.6 575.329C325.694 580.607 310.99 580.526 296.974 572.234C296.185 571.769 296.144 571.527 296.792 570.879C313.68 553.851 324.117 528.47 316.127 504.828C309.554 481.935 280.085 485.494 272.238 504.707C261.68 525.315 266.413 554.761 282.755 571.163C283.099 571.506 283.928 571.789 282.978 572.497C266.979 584.369 249.201 591.265 229.177 592.074C228.429 592.114 228.247 591.973 228.53 591.225C234.517 573.63 231.443 552.193 217.831 538.845C205.331 526.973 186.684 529.845 179.059 544.932C167.105 569.585 190.385 595.451 214.656 598.829C219.206 599.395 198.192 618.001 195.522 618.304C166.6 637.234 141.864 604.936 115.934 595.694C88.6501 583.6 55.541 588.211 34.1423 609.507C33.4344 610.154 33.0298 610.194 32.2612 609.628C30.2589 608.132 28.2365 606.676 26.1331 605.321C-26.2714 579.96 -55.5985 543.092 -41.3597 488.912C-41.1574 488.103 -40.9552 487.618 -39.8833 487.679C-11.527 488.407 21.299 480.277 37.884 455.482C58.6354 410.019 -21.5185 408.644 -46.2139 477.991C-46.4768 478.659 -46.6387 479.104 -47.5286 478.982C-58.6122 477.486 -69.0689 473.724 -78.939 468.587V477.587C-42.9577 494.636 -48.7422 475.201 -52.1806 503.817M274.624 529.562C274.867 519.834 276.465 510.633 282.917 502.968C292.989 491.076 307.875 497.325 309.615 511.179C314.084 531.686 304.801 551.323 290.623 565.763C289.753 566.653 289.349 566.471 288.6 565.722C278.568 555.691 274.968 543.213 274.624 529.542M187.675 545.984C193.297 538.056 204.017 537.247 211.723 544.123C220.339 551.788 222.867 562.972 223.474 573.994C223.595 577.027 221.856 590.638 219.146 591.467C198.05 590.052 174.326 567.3 187.675 546.004M33.3332 621.803C33.6973 621.358 33.9197 621.5 34.2433 621.803C45.7314 631.591 64.3593 667.752 39.1785 670.037C33.6973 669.734 29.2881 667.286 25.9508 662.999C22.7754 658.934 21.5416 654.181 21.6023 647.285C21.8855 638.427 26.8004 629.751 33.3535 621.783M-36.3235 474.836C-28.2738 457.666 -16.8463 443.53 0.588135 435.056C7.14124 431.881 14.0785 430.202 21.4203 431.375C32.868 433.196 36.8524 441.892 30.7241 451.761C16.7482 471.863 -9.72693 478.719 -33.047 479.791C-38.5079 479.872 -38.6495 479.791 -36.3235 474.857' fill='%23000B8C'/%3E%3Cpath d='M292.18 224.061C319.586 259.331 312.406 297.979 265.462 308.778C234.861 314.886 202.318 316.059 175.155 333.087C125.157 358.266 82.5825 463.794 156.406 483.613C170.665 487.577 187.857 483.593 199.911 493.483C204.967 497.831 199.365 504.464 194.632 506.264C190.931 507.761 187.088 507.639 183.245 507.235C160.593 502.401 134.886 518.479 145.949 543.537C149.266 553.284 160.148 568.392 146.455 574.681C131.711 581.598 134.886 562.689 134.057 553.972C134.279 529.036 100.118 522.666 92.2301 547.541C90.7132 552.071 89.8233 557.35 85.9198 560.545C81.6926 543.233 99.39 530.047 113.467 524.223C125.238 519.672 148.093 510.026 133.571 495.242C112.982 476.575 89.9446 501.35 68.1616 503.008C65.7144 503.372 65.4919 502.401 66.9279 500.601C70.1842 495.97 74.8767 493.058 79.6701 490.307C106.611 479.164 123.701 446.725 105.923 421.627C97.2866 409.352 79.8318 403.77 77.7688 387.307C76.9598 381.18 76.8789 374.951 76.0092 368.823C74.29 346.273 48.8059 336.627 29.6725 345.1C-7.42117 358.63 -36.3035 400.736 -78.9795 392.91V401.08C-28.2133 409.271 -1.43439 358.104 43.3248 350.217C61.0424 348.134 70.0024 364.01 68.8697 379.319C68.8697 393.557 74.634 404.842 85.7783 413.578C90.5111 417.299 95.4663 420.859 99.0866 425.814C114.478 447.554 98.6215 473.785 75.8475 483.27C66.2403 487.254 46.5609 506.264 65.7954 510.814C86.9109 513.423 105.478 488.164 126.108 499.408C143.401 510.147 97.3876 516.861 87.4164 532.09C62.6199 559.352 88.7312 589.768 99.8957 549.846C102.646 535.831 123.559 536.317 125.542 550.736C126.654 556.379 126.149 562.082 126.452 567.765C126.371 586.856 148.174 587.989 157.397 575.955C167.267 563.72 156.022 550.15 152.502 537.773C146.152 520.219 167.429 511.785 181.567 515.041C200.356 519.834 222.503 498.478 201.549 484.544C189.535 477.182 174.751 478.982 161.382 476.373C99.0463 465.129 128.333 379.198 162.979 351.613C203.794 312.56 259.88 330.58 297.136 302.792C323.672 283.276 319.788 248.147 301.828 224H292.16L292.18 224.061Z' fill='%23000B8C'/%3E%3Cpath d='M-79 445.269C-61.9498 442.458 -50.5829 427.25 -37.1734 417.38C-0.140358 382.353 94.8187 402.172 64.3994 464.32C58.4329 474.816 48.8865 480.297 37.7017 483.573C27.3462 486.627 16.7277 488.791 6.71602 492.977C-35.4341 508.064 -20.0827 564.772 15.4536 577.735C37.8029 589.607 73.2178 579.373 75.0381 551.1C76.2112 533.162 55.9654 515.365 38.1264 518.277C10.741 522.807 25.9507 556.399 46.6213 555.833C58.6757 555.833 56.0059 542.95 48.8663 546.874C38.6726 552.253 21.8247 530.149 37.5198 526.609C52.9924 523.475 70.8716 538.885 66.3815 554.882C46.9649 602.611 -30.6405 554.66 -6.79453 512.979C3.43961 498.134 23.3616 496.476 39.2994 491.46C75.665 484.524 92.2298 434.348 63.914 409.615C35.2139 384.315 -9.70708 387.288 -39.4791 409.149C-52.8483 417.866 -62.9409 433.499 -78.9798 436.998V445.289L-79 445.269Z' fill='%23000B8C'/%3E%3Cpath d='M-78.9991 595.087C-72.4865 609.486 -59.805 619.517 -41.8245 619.841C-30.9229 620.953 -9.22086 620.812 -13.5289 637.193C-18.9696 655.273 -26.5337 673.11 -20.3852 691.979H-11.8703C-25.3001 662.634 13.5532 628.719 -17.8167 615.857C-30.4173 610.639 -44.8178 614.016 -57.1554 608.111C-84.7026 592.62 -71.5359 558.36 -78.9991 532.696V595.087Z' fill='%23000B8C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_133_1496'%3E%3Crect width='67' height='544' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
@media (min-width: 768px) {
  .footer .contacts:before {
    background-image: url("data:image/svg+xml,%3Csvg width='360' height='246' viewBox='0 0 360 246' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2041_887)'%3E%3Crect width='360' height='246' fill='%23FF4249'/%3E%3Cpath d='M399.241 67.2232C404.156 5.50011 367.73 -17.191 320.26 -44.3921C319.492 -44.9583 319.411 -45.2617 320.038 -46.0302C334.358 -61.643 341.234 -91.1698 319.492 -103.688C300.48 -115.155 282.499 -96.974 288.223 -78.1052C290.994 -65.2428 297.81 -54.605 306.932 -45.3223C307.276 -44.9583 307.943 -44.7157 307.174 -44.0281C271.658 -10.4565 230.176 -30.0736 195.833 -53.8366C169.903 -71.2088 137.178 -54.7062 123.061 -29.9927C122.596 -29.2242 122.13 -28.9814 121.241 -29.0219C117.034 -29.2039 112.847 -28.9816 108.681 -28.3748C89.7899 -25.7053 72.8003 -18.5056 57.7929 -6.71508C21.8925 -28.0917 -16.5764 -8.09032 -42 20.6882V33.2877C-28.995 17.4525 -13.6236 2.56765 6.39967 -4.32868C21.3059 -9.6071 36.0101 -9.52615 50.0264 -1.23438C50.8152 -0.769226 50.8556 -0.526573 50.2084 0.12059C33.32 17.1491 22.8835 42.5299 30.8726 66.1716C37.4459 89.0649 66.9147 85.5055 74.7622 66.2929C85.32 45.6848 80.5871 16.239 64.2448 -0.162575C63.9009 -0.506378 63.0717 -0.789459 64.0223 -1.49729C80.0208 -13.3687 97.7992 -20.265 117.823 -21.0739C118.571 -21.1144 118.753 -20.9729 118.47 -20.2246C112.483 -2.62985 115.557 18.8075 129.169 32.1552C141.669 44.0266 160.316 41.1548 167.941 26.0678C179.895 1.41495 156.615 -24.4514 132.344 -27.8288C127.794 -28.395 148.808 -47.001 151.478 -47.3043C180.4 -66.2338 205.136 -33.9364 231.066 -24.6941C258.35 -12.6002 291.459 -17.2112 312.858 -38.5069C313.566 -39.154 313.97 -39.1945 314.739 -38.6282C316.741 -37.1317 318.763 -35.6757 320.867 -34.3207C373.271 -8.95997 402.599 27.9082 388.36 82.0878C388.157 82.8968 387.955 83.3821 386.883 83.3215C358.527 82.5934 325.701 90.7233 309.116 115.518C288.365 160.981 368.518 162.356 393.214 93.0086C393.477 92.3412 393.639 91.8963 394.529 92.0177C405.612 93.5142 416.069 97.2759 425.939 102.413V93.4131C389.958 76.3644 395.742 95.7995 399.181 67.1828M72.3755 41.4379C72.1328 51.1655 70.535 60.3674 64.0831 68.0322C54.0107 79.9239 39.1248 73.6747 37.3854 59.8214C32.9156 39.3144 42.1991 19.6771 56.3773 5.23727C57.2469 4.34743 57.6515 4.52936 58.3998 5.27764C68.4317 15.3087 72.0317 27.7868 72.3755 41.4581M159.325 25.0161C153.703 32.9439 142.983 33.7528 135.277 26.8767C126.661 19.2118 124.133 8.02815 123.526 -2.99384C123.405 -6.02741 125.144 -19.6381 127.854 -20.4673C148.95 -19.0516 172.674 3.70018 159.325 24.9959M313.667 -50.803C313.303 -50.3581 313.08 -50.4996 312.757 -50.803C301.269 -60.5913 282.641 -96.7516 307.822 -99.0369C313.303 -98.7336 317.712 -96.2864 321.049 -91.9989C324.225 -87.9339 325.458 -83.1814 325.398 -76.2851C325.115 -67.4271 320.2 -58.7509 313.647 -50.7828M383.324 96.1635C375.274 113.334 363.846 127.47 346.412 135.944C339.859 139.119 332.922 140.798 325.58 139.625C314.132 137.804 310.148 129.108 316.276 119.239C330.252 99.1365 356.727 92.2805 380.047 91.2087C385.508 91.1278 385.649 91.2087 383.324 96.1433' fill='%23000B8C'/%3E%3Cpath d='M54.8198 346.939C27.4142 311.669 34.5942 273.021 81.5377 262.222C112.139 256.114 144.682 254.941 171.845 237.913C221.843 212.734 264.418 107.206 190.594 87.3867C176.335 83.4228 159.143 87.4069 147.089 77.5174C142.033 73.1693 147.635 66.5359 152.368 64.7359C156.069 63.2394 159.912 63.3606 163.755 63.7651C186.407 68.5986 212.114 52.5208 201.051 27.4634C197.734 17.7155 186.852 2.60829 200.545 -3.68132C215.289 -10.5979 212.114 8.3114 212.943 17.0279C212.721 41.9638 246.882 48.3343 254.77 23.459C256.287 18.9289 257.177 13.6505 261.08 10.4551C265.307 27.7667 247.61 40.9527 233.533 46.7772C221.762 51.3275 198.907 60.9743 213.429 75.7579C234.018 94.4245 257.055 69.6503 278.838 67.9919C281.286 67.6279 281.508 68.5987 280.072 70.3986C276.816 75.0298 272.123 77.9421 267.33 80.6926C240.389 91.8359 223.299 124.275 241.077 149.373C249.713 161.648 267.168 167.23 269.231 183.693C270.04 189.82 270.121 196.049 270.991 202.177C272.71 224.727 298.194 234.373 317.327 225.9C354.421 212.37 383.303 170.264 425.979 178.09V169.92C375.213 161.729 348.434 212.896 303.675 220.783C285.958 222.866 276.998 206.99 278.13 191.681C278.13 177.443 272.366 166.158 261.222 157.422C256.489 153.701 251.534 150.141 247.913 145.186C232.522 123.446 248.379 97.2154 271.153 87.7304C280.76 83.7463 300.439 64.7359 281.205 60.1856C260.089 57.5767 241.522 82.8363 220.892 71.5918C203.599 60.853 249.612 54.1386 259.584 38.9101C284.38 11.6483 258.269 -18.7682 247.104 21.1536C244.354 35.1687 223.441 34.6833 221.458 20.2638C220.346 14.6213 220.851 8.91809 220.548 3.2352C220.629 -15.8561 198.826 -16.9886 189.603 -4.95543C179.733 7.27999 190.978 20.8502 194.498 33.2272C200.848 50.7815 179.571 59.2148 165.433 55.9587C146.644 51.1657 124.497 72.5221 145.451 86.4563C157.465 93.8178 172.249 92.0178 185.618 94.6267C247.954 105.871 218.667 191.802 184.021 219.387C143.206 258.44 87.1199 240.42 49.8644 268.208C23.3284 287.724 27.2119 322.853 45.1722 347H54.8401L54.8198 346.939Z' fill='%23000B8C'/%3E%3Cpath d='M158.82 99.2375C134.225 98.0039 106.476 107.428 92.4596 128.562C86.129 139.584 90.8618 149.494 103.381 151.637C114.708 153.579 126.257 149.676 137.441 152.77C141.709 154.044 142.943 156.43 141.668 160.657C136.066 175.825 116.306 184.117 100.287 181.043C91.2056 179.203 83.358 174.753 75.915 169.596C42.2192 146.703 -1.12411 127.996 -42 141.04V149.514C-12.5718 138.371 20.052 148.22 47.1543 161.446C69.2204 172.205 88.6571 194.31 115.375 188.95C147.291 185.27 170.551 139.908 122.333 143.629C114.222 143.872 92.0956 147.37 99.1139 132.93C113.272 113.151 137.846 105.123 161.449 107.671C177.265 109.511 185.376 120.553 183.657 136.166C178.095 168.909 148.727 191.842 119.784 204.422C81.4569 222.866 25.3106 216.778 -5.25028 247.114C-30.1884 278.926 -8.32449 322.084 17.0788 346.919H28.9512C9.79762 329.769 -7.07048 307.28 -7.91995 280.322C-11.9246 213.947 110.966 240.966 161.328 187.798C190.877 164.702 212.559 105.264 158.779 99.2173' fill='%23000B8C'/%3E%3Cpath d='M426 125.731C408.95 128.542 397.583 143.75 384.173 153.619C347.14 188.647 252.181 168.828 282.601 106.68C288.567 96.1837 298.114 90.703 309.298 87.4267C319.654 84.3729 330.272 82.209 340.284 78.0227C382.434 62.9357 367.083 6.22804 331.546 -6.73543C309.197 -18.6068 273.782 -8.37347 271.962 19.8994C270.789 37.838 291.035 55.6349 308.874 52.7227C336.259 48.1925 321.049 14.6007 300.379 15.167C288.324 15.167 290.994 28.0496 298.134 24.1262C308.327 18.7466 325.175 40.8513 309.48 44.3905C294.008 47.5252 276.128 32.1145 280.619 16.1175C300.035 -31.6108 377.64 16.34 353.795 58.0213C343.56 72.8656 323.638 74.524 307.701 79.5395C271.335 86.4763 254.77 136.652 283.086 161.385C311.786 186.685 356.707 183.712 386.479 161.85C399.848 153.134 409.941 137.501 425.98 134.002V125.71L426 125.731Z' fill='%23000B8C'/%3E%3Cpath d='M85.7648 65.2618C81.0725 68.5987 77.978 73.4322 74.3778 77.7601C49.0756 109.431 -5.61433 103.465 12.71 53.7342C14.773 46.3929 17.7262 39.2741 18.4745 31.5891C20.4162 15.6527 4.96378 10.9406 -6.86818 16.5628C-24.0397 24.5714 -27.7207 45.6042 -41.9798 57.1318V67.0213C-29.3185 58.9722 -21.7543 44.4514 -13.5022 32.1755C-9.37621 26.1488 -3.75346 22.5085 3.73 22.3265C12.9529 21.6996 10.6673 32.9036 8.92786 38.6269C5.93448 48.8197 2.39497 58.8711 1.30278 69.5695C-3.53113 105.244 41.9967 113.597 65.6202 96.3862C73.7104 91.3707 79.6163 84.1912 85.3604 76.8298C87.6863 73.8569 90.2551 71.0659 94.0372 69.8323C97.5767 68.6795 100.064 70.0143 100.894 73.6344C102.795 87.9124 91.8123 100.31 81.558 108.783C26.5646 150.485 5.4492 94.8088 -42 107.166V115.356C-13.5224 105.325 9.19083 131.535 37.0212 132.122C69.8878 133.194 107.164 109.876 109.186 75.2119C109.287 62.3293 95.0686 57.3745 85.7446 65.2416' fill='%23000B8C'/%3E%3Cpath d='M28.3239 165.046C1.7475 156.451 -25.6986 168.484 -41.9802 189.922V206.262C-30.5325 179.486 1.7675 161.851 29.8608 174.248C37.5668 177.545 41.2277 183.329 40.2973 190.367C39.6501 195.362 36.5151 198.921 32.9149 202.117C27.4742 206.95 21.2044 210.651 14.7929 213.947C-36.4183 239.854 -56.6438 295.793 -29.8246 346.919H-20.8648C-47.3199 299.535 -31.6856 247.762 16.512 222.158C24.9258 217.669 33.3196 213.058 40.1963 206.242C56.1947 191.681 46.9719 169.415 28.3239 165.026' fill='%23000B8C'/%3E%3Cpath d='M425.999 -24.0868C419.486 -38.4862 406.805 -48.5173 388.824 -48.8409C377.923 -49.9532 356.221 -49.8115 360.529 -66.1928C365.97 -84.2729 373.534 -102.11 367.385 -120.979H358.87C372.3 -91.6345 333.447 -57.7191 364.817 -44.8567C377.417 -39.639 391.818 -43.0163 404.155 -37.111C431.703 -21.6195 418.536 12.6396 425.999 38.3036V-24.0868Z' fill='%23000B8C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2041_887'%3E%3Crect width='360' height='246' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  }
  .footer .contacts:after {
    background-image: url("data:image/svg+xml,%3Csvg width='360' height='246' viewBox='0 0 360 246' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2041_865)'%3E%3Crect width='360' height='246' fill='%23FF4249'/%3E%3Cpath d='M-53.2411 55.2232C-58.1559 -6.49989 -21.7298 -29.191 25.7397 -56.3921C26.5082 -56.9583 26.5891 -57.2617 25.9621 -58.0302C11.6424 -73.643 4.76575 -103.17 26.5082 -115.688C45.5203 -127.155 63.5008 -108.974 57.7769 -90.1052C55.006 -77.2428 48.19 -66.605 39.0683 -57.3223C38.7244 -56.9583 38.057 -56.7157 38.8256 -56.0281C74.3417 -22.4565 115.824 -42.0736 150.167 -65.8366C176.097 -83.2088 208.822 -66.7062 222.939 -41.9927C223.404 -41.2242 223.87 -40.9814 224.759 -41.0219C228.966 -41.2039 233.153 -40.9816 237.319 -40.3748C256.21 -37.7053 273.2 -30.5056 288.207 -18.7151C324.107 -40.0917 362.576 -20.0903 388 8.68819V21.2877C374.995 5.45246 359.624 -9.43235 339.6 -16.3287C324.694 -21.6071 309.99 -21.5261 295.974 -13.2344C295.185 -12.7692 295.144 -12.5266 295.792 -11.8794C312.68 5.14906 323.117 30.5299 315.127 54.1716C308.554 77.0649 279.085 73.5055 271.238 54.2929C260.68 33.6848 265.413 4.23895 281.755 -12.1626C282.099 -12.5064 282.928 -12.7895 281.978 -13.4973C265.979 -25.3687 248.201 -32.265 228.177 -33.0739C227.429 -33.1144 227.247 -32.9729 227.53 -32.2246C233.517 -14.6299 230.443 6.80746 216.831 20.1552C204.331 32.0266 185.684 29.1548 178.059 14.0678C166.105 -10.5851 189.385 -36.4514 213.656 -39.8288C218.206 -40.395 197.192 -59.001 194.522 -59.3043C165.6 -78.2338 140.864 -45.9364 114.934 -36.6941C87.6501 -24.6002 54.541 -29.2112 33.1423 -50.5069C32.4344 -51.154 32.0298 -51.1945 31.2612 -50.6282C29.2589 -49.1317 27.2365 -47.6757 25.1331 -46.3207C-27.2714 -20.96 -56.5985 15.9082 -42.3597 70.0878C-42.1574 70.8968 -41.9552 71.3821 -40.8833 71.3215C-12.527 70.5934 20.299 78.7233 36.884 103.518C57.6354 148.981 -22.5185 150.356 -47.2139 81.0086C-47.4768 80.3412 -47.6387 79.8963 -48.5286 80.0177C-59.6122 81.5142 -70.0689 85.2759 -79.939 90.4128V81.4131C-43.9577 64.3644 -49.7422 83.7995 -53.1806 55.1828M273.624 29.4379C273.867 39.1655 275.465 48.3674 281.917 56.0322C291.989 67.9239 306.875 61.6747 308.615 47.8214C313.084 27.3144 303.801 7.67709 289.623 -6.76273C288.753 -7.65257 288.349 -7.47064 287.6 -6.72236C277.568 3.30866 273.968 15.7868 273.624 29.4581M186.675 13.0161C192.297 20.9439 203.017 21.7528 210.723 14.8767C219.339 7.21185 221.867 -3.97185 222.474 -14.9938C222.595 -18.0274 220.856 -31.6381 218.146 -32.4673C197.05 -31.0516 173.326 -8.29982 186.675 12.9959M32.3332 -62.803C32.6973 -62.3581 32.9197 -62.4996 33.2433 -62.803C44.7314 -72.5913 63.3593 -108.752 38.1785 -111.037C32.6973 -110.734 28.2881 -108.286 24.9508 -103.999C21.7754 -99.9339 20.5416 -95.1814 20.6023 -88.2851C20.8855 -79.4271 25.8004 -70.7509 32.3535 -62.7828M-37.3235 84.1635C-29.2738 101.334 -17.8463 115.47 -0.411865 123.944C6.14124 127.119 13.0785 128.798 20.4203 127.625C31.868 125.804 35.8524 117.108 29.7241 107.239C15.7482 87.1365 -10.7269 80.2805 -34.047 79.2087C-39.5079 79.1278 -39.6495 79.2087 -37.3235 84.1433' fill='%23000B8C'/%3E%3Cpath d='M291.18 334.939C318.586 299.669 311.406 261.021 264.462 250.222C233.861 244.114 201.318 242.941 174.155 225.913C124.157 200.734 81.5825 95.206 155.406 75.3867C169.665 71.4228 186.857 75.4069 198.911 65.5174C203.967 61.1693 198.365 54.5359 193.632 52.7359C189.931 51.2394 186.088 51.3606 182.245 51.7651C159.593 56.5986 133.886 40.5208 144.949 15.4634C148.266 5.71555 159.148 -9.39171 145.455 -15.6813C130.711 -22.5979 133.886 -3.6886 133.057 5.02787C133.279 29.9638 99.1181 36.3343 91.2301 11.459C89.7132 6.92889 88.8233 1.65049 84.9198 -1.54488C80.6926 15.7667 98.39 28.9527 112.467 34.7772C124.238 39.3275 147.093 48.9743 132.571 63.7579C111.982 82.4245 88.9446 57.6503 67.1616 55.9919C64.7144 55.6279 64.4919 56.5987 65.9279 58.3986C69.1842 63.0298 73.8767 65.9421 78.6701 68.6926C105.611 79.8359 122.701 112.275 104.923 137.373C96.2866 149.648 78.8318 155.23 76.7688 171.693C75.9598 177.82 75.8789 184.049 75.0092 190.177C73.29 212.727 47.8059 222.373 28.6725 213.9C-8.42117 200.37 -37.3035 158.264 -79.9795 166.09V157.92C-29.2133 149.729 -2.43439 200.896 42.3248 208.783C60.0424 210.866 69.0024 194.99 67.8697 179.681C67.8697 165.443 73.634 154.158 84.7783 145.422C89.5111 141.701 94.4663 138.141 98.0866 133.186C113.478 111.446 97.6215 85.2154 74.8475 75.7304C65.2403 71.7463 45.5609 52.7359 64.7954 48.1856C85.9109 45.5767 104.478 70.8363 125.108 59.5918C142.401 48.853 96.3876 42.1386 86.4164 26.9101C61.6199 -0.351656 87.7312 -30.7682 98.8957 9.15361C101.646 23.1687 122.559 22.6833 124.542 8.26376C125.654 2.62131 125.149 -3.08191 125.452 -8.7648C125.371 -27.8561 147.174 -28.9886 156.397 -16.9554C166.267 -4.72001 155.022 8.85019 151.502 21.2272C145.152 38.7815 166.429 47.2148 180.567 43.9587C199.356 39.1657 221.503 60.5221 200.549 74.4563C188.535 81.8178 173.751 80.0178 160.382 82.6267C98.0463 93.8711 127.333 179.802 161.979 207.387C202.794 246.44 258.88 228.42 296.136 256.208C322.672 275.724 318.788 310.853 300.828 335H291.16L291.18 334.939Z' fill='%23000B8C'/%3E%3Cpath d='M187.18 87.2375C211.775 86.0039 239.524 95.4282 253.54 116.562C259.871 127.584 255.138 137.494 242.619 139.637C231.292 141.579 219.743 137.676 208.559 140.77C204.291 142.044 203.057 144.43 204.332 148.657C209.934 163.825 229.694 172.117 245.713 169.043C254.794 167.203 262.642 162.753 270.085 157.596C303.781 134.703 347.124 115.996 388 129.04V137.514C358.572 126.371 325.948 136.22 298.846 149.446C276.78 160.205 257.343 182.31 230.625 176.95C198.709 173.27 175.449 127.908 223.667 131.629C231.778 131.872 253.904 135.37 246.886 120.93C232.728 101.151 208.154 93.1226 184.551 95.6708C168.735 97.5112 160.624 108.553 162.343 124.166C167.905 156.909 197.273 179.842 226.216 192.422C264.543 210.866 320.689 204.778 351.25 235.114C376.188 266.926 354.324 310.084 328.921 334.919H317.049C336.202 317.769 353.07 295.28 353.92 268.322C357.925 201.947 235.034 228.966 184.672 175.798C155.123 152.702 133.441 93.2642 187.221 87.2173' fill='%23000B8C'/%3E%3Cpath d='M-80 113.731C-62.9498 116.542 -51.5829 131.75 -38.1734 141.619C-1.14036 176.647 93.8187 156.828 63.3994 94.6799C57.4329 84.1837 47.8865 78.703 36.7017 75.4267C26.3462 72.3729 15.7277 70.209 5.71602 66.0227C-36.4341 50.9357 -21.0827 -5.77196 14.4536 -18.7354C36.8029 -30.6068 72.2178 -20.3735 74.0381 7.89944C75.2112 25.838 54.9654 43.6349 37.1264 40.7227C9.74097 36.1925 24.9507 2.60074 45.6213 3.16701C57.6757 3.16701 55.0059 16.0496 47.8663 12.1262C37.6726 6.74661 20.8247 28.8513 36.5198 32.3905C51.9924 35.5252 69.8716 20.1145 65.3815 4.11747C45.9649 -43.6108 -31.6405 4.34 -7.79453 46.0213C2.43961 60.8656 22.3616 62.524 38.2994 67.5395C74.665 74.4763 91.2298 124.652 62.914 149.385C34.2139 174.685 -10.7071 171.712 -40.4791 149.85C-53.8483 141.134 -63.9409 125.501 -79.9798 122.002V113.71L-80 113.731Z' fill='%23000B8C'/%3E%3Cpath d='M260.235 53.2618C264.928 56.5987 268.022 61.4322 271.622 65.7601C296.924 97.4306 351.614 91.4646 333.29 41.7342C331.227 34.3929 328.274 27.2741 327.525 19.5891C325.584 3.65269 341.036 -1.05945 352.868 4.56278C370.04 12.5714 373.721 33.6042 387.98 45.1318V55.0213C375.319 46.9722 367.754 32.4514 359.502 20.1755C355.376 14.1488 349.753 10.5085 342.27 10.3265C333.047 9.69958 335.333 20.9036 337.072 26.6269C340.066 36.8197 343.605 46.8711 344.697 57.5695C349.531 93.2443 304.003 101.597 280.38 84.3862C272.29 79.3707 266.384 72.1912 260.64 64.8298C258.314 61.8569 255.745 59.0659 251.963 57.8323C248.423 56.6795 245.936 58.0143 245.106 61.6344C243.205 75.9124 254.188 88.3096 264.442 96.7834C319.435 138.485 340.551 82.8088 388 95.1655V103.356C359.522 93.3251 336.809 119.535 308.979 120.122C276.112 121.194 238.836 97.8755 236.814 63.2119C236.713 50.3293 250.931 45.3745 260.255 53.2416' fill='%23000B8C'/%3E%3Cpath d='M317.676 153.046C344.253 144.451 371.699 156.484 387.98 177.922V194.262C376.533 167.486 344.233 149.851 316.139 162.248C308.433 165.545 304.772 171.329 305.703 178.367C306.35 183.362 309.485 186.921 313.085 190.117C318.526 194.95 324.796 198.651 331.207 201.947C382.418 227.854 402.644 283.793 375.825 334.919H366.865C393.32 287.535 377.686 235.762 329.488 210.158C321.074 205.669 312.68 201.058 305.804 194.242C289.805 179.681 299.028 157.415 317.676 153.026' fill='%23000B8C'/%3E%3Cpath d='M-79.9991 -36.0868C-73.4865 -50.4862 -60.805 -60.5173 -42.8245 -60.8409C-31.9229 -61.9532 -10.2209 -61.8115 -14.5289 -78.1928C-19.9696 -96.2729 -27.5337 -114.11 -21.3852 -132.979H-12.8703C-26.3001 -103.634 12.5532 -69.7191 -18.8167 -56.8567C-31.4173 -51.639 -45.8178 -55.0163 -58.1554 -49.111C-85.7026 -33.6195 -72.5359 0.639618 -79.9991 26.3036V-36.0868Z' fill='%23000B8C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2041_865'%3E%3Crect width='360' height='246' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  }
}
.footer .contacts .contacts-container {
  position: relative;
  border-top: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  width: 100%;
  margin: auto;
  max-width: calc(100% - 135px);
}
@media (min-width: 768px) {
  .footer .contacts .contacts-container {
    display: flex;
    max-width: 750px;
  }
}
.footer .contacts .contacts-container .item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  min-height: 150px;
}
@media (min-width: 768px) {
  .footer .contacts .contacts-container .item {
    max-width: 300px;
    margin: 20px 0;
    padding: 0 50px;
  }
  .footer .contacts .contacts-container .item:nth-child(2) {
    border: none;
    border-left: 1px solid var(--white);
  }
}
.footer .contacts .contacts-container .item .logo {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  margin-bottom: 20px;
}
.footer .contacts .contacts-container .item .logo svg {
  margin: auto;
  height: 72px;
  fill: var(--white);
}
.footer .contacts .contacts-container .item .logo:hover svg {
  fill: var(--orange);
}
.footer .contacts .contacts-container .item .phone,
.footer .contacts .contacts-container .item .geo {
  font-family: var(--font-family);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  outline: none;
}
.footer .contacts .contacts-container .item .phone:hover,
.footer .contacts .contacts-container .item .geo:hover {
  color: var(--orange);
}
.footer .contacts .contacts-container .item .phone {
  font-weight: 600;
  font-size: 18px;
  line-height: 111%;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .footer .contacts .contacts-container .item .phone {
    font-size: 26px;
    line-height: 115%;
    margin-top: auto;
  }
}
.footer .contacts .contacts-container .item .geo {
  font-weight: 500;
  font-size: 14px;
  line-height: 136%;
}
@media (min-width: 768px) {
  .footer .contacts .contacts-container .item .geo {
    font-size: 22px;
  }
}
.footer .app_links {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer .app_links {
    margin-top: 0;
    justify-content: center;
  }
}
@media (min-width: 960px) {
  .footer .app_links {
    position: relative;
  }
}
@media (min-width: 1200px) {
  .footer .app_links {
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .footer .app_links {
    margin-bottom: 80px;
  }
}
@media (min-width: 1680px) {
  .footer .app_links {
    margin-bottom: 100px;
  }
}
.footer .copyright {
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 144%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer .copyright {
    font-size: 18px;
  }
}
.footer .copyright .year {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer .copyright .year {
    margin: auto 0;
  }
}
@media (min-width: 1200px) {
  .footer .copyright .year {
    width: 350px;
  }
}
.footer .copyright .info {
  position: relative;
}
@media (min-width: 768px) {
  .footer .copyright .info {
    margin: 0 auto;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .footer .copyright .info {
    max-width: 290px;
  }
}
@media (min-width: 1400px) {
  .footer .copyright .info {
    max-width: 365px;
  }
}
@media (min-width: 1680px) {
  .footer .copyright .info {
    max-width: 440px;
  }
}
.footer .copyright_designe {
  display: flex;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  color: var(--white);
}
.footer .copyright_designe span {
  font-weight: 400;
  font-size: 15px;
  margin: auto 15px auto 0;
}
.footer .copyright_designe a {
  display: flex;
  margin: auto 0;
}
.footer .doc_list {
  position: relative;
  border-top: 2px solid var(--white);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer .doc_list {
    margin: 0;
  }
}
.footer .doc_list .doc_list_link {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .footer .doc_list .doc_list_link {
    display: flex;
    justify-content: space-between;
  }
}
.footer .doc_list .doc_list_link a {
  display: block;
  text-decoration: none;
  color: var(--white);
  margin-bottom: 12px;
}
.footer .doc_list .doc_list_link a:hover {
  color: var(--orange);
}
