/* Секция контактов */

.contacts-section {
    background-color: var(--bg-color);
    /* border-top-left-radius: 50px;
    border-top-right-radius: 50px; */
    border-radius: 50px;
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
}

@supports (aspect-ratio: 1) {
    body {
        --framer-aspect-ratio-supported: auto;
    }
}

.contacts-section svg:not(:root) {
    overflow-clip-margin: content-box;
    overflow: hidden;
}

.contacts-section * {
    color: var(--text-color);
}

.contacts-section .contact-form {
    
}

.contacts-copyright {
    overflow: hidden;
}

.contacts-section h1 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -1px;
    margin: 0 0 40px 0;
}

.contacts-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Левая колонка - информация */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item .label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color-muted);
    margin-bottom: 8px;
}

.contact-item .value {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 0;
}

.contact-item .value-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-item .value-link svg {
    width: 1em;
    height: 1em;
    transition: transform 0.3s ease;
}

.contact-item .value-link:hover svg {
    transform: translate(3px, -3px);
}

/* Правая колонка - форма */
.contact-form .label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color-muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 14px;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: var(--text-color-muted);
    opacity: 0.7;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 2px;
}

.form-group-checkbox label {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-color-muted);
}

.form-group-checkbox a {
    text-decoration: underline;
    text-decoration-color: var(--text-color-muted);
    text-underline-offset: 3px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background-color: var(--text-color);
    color: var(--bg-color);
    border: none;
    border-radius: 58px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

.submit-button:hover {
    opacity: 0.9;
}

/* Футер */
.contacts-footer {
    border-top: 1px dashed #ffffff;
    margin-top: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo img {
    height: 44px;
}




.footer-tg-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
}
.footer-tg-link i {
    font-size: 21px;
}

.footer-tg-link:hover {
    color: var(--text-color-hover);
    background-color: #fff;
}
.footer-tg-link:hover i {
    color: var(--text-color-hover);
}


.footer-policy-link {
    font-size: 14px;
    color: var(--text-color-muted);
}
.footer-policy-link:hover {
    color: var(--text-color);
}

/* Адаптация для десктопа (например, от 992px) */
@media (min-width: 992px) {
    .contacts-section .contact-form {
        padding-left: 10%;
    }
    /* .container {
        padding: 0 40px;
    } */

    .contacts-section {
        padding: 80px 0 20px;
    }

    .contacts-section h1 {
        font-size: 5em;
        letter-spacing: -3px;
        margin-bottom: 80px;
    }

    .contacts-grid {
        flex-direction: row;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .contact-info {
        gap: 40px;
    }

    .contact-item .label {
        font-size: 16px;
    }

    .contact-item .value {
        font-size: 45px;
        letter-spacing: -3px;
    }

    .form-input {
        padding: 18px;
        font-size: 16px;
    }

    .submit-button {
        font-size: 16px;
        padding: 20px;
        margin-top: 30px;
    }

    .contacts-footer {
        margin-top: 40px;
        padding-top: 20px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}



.framer-99f3d9 {
    flex: none;
    height: auto;
    position: relative;
    white-space: pre;
    width: 100%;
}

.framer-5phbfo {
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: 230px;
    justify-content: flex-start;
    max-width: 1600px;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
}

p.framer-text {
    font-size: calc(var(--framer-blockquote-font-size, var(--framer-font-size, 16px)) * var(--framer-font-size-scale, 1));
}

.contacts-copyright {
    position: relative;
    z-index: 1;
}
.contacts-copyright::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6657' height='359' viewBox='0 0 6657 359'%3E%3Cpath fill='%23374FE5' d='M255.082873,342.823204 C261.731123,342.823204 267.417127,340.63628 272.140884,336.262431 C276.864641,331.888582 279.576427,325.327808 280.276243,316.58011 C276.777164,287.887661 270.653775,259.895028 261.906077,232.60221 L261.906077,232.60221 L268.20442,232.60221 C276.252302,230.85267 282.200737,227.790976 286.049724,223.417127 C289.898711,219.043278 291.823204,214.406998 291.823204,209.508287 C291.823204,204.609576 290.073665,200.060773 286.574586,195.861878 C283.075506,191.662983 277.651934,188.338858 270.303867,185.889503 C266.45488,185.889503 262.255985,185.97698 257.707182,186.151934 C253.158379,186.326888 248.959484,186.414365 245.110497,186.414365 C241.961326,178.366483 238.637201,170.231123 235.138122,162.008287 C231.639042,153.785451 228.314917,146.349908 225.165746,139.701657 C220.267035,129.554328 215.018416,118.882136 209.41989,107.685083 C203.821363,96.4880295 197.785451,85.378453 191.312155,74.3563536 C184.838858,63.3342541 177.8407,52.6620626 170.31768,42.339779 C162.794659,32.0174954 154.6593,22.6574586 145.911602,14.2596685 C138.563536,7.61141805 130.165746,5.86187845 120.718232,9.01104972 L120.718232,9.01104972 L121.243094,9.01104972 C111.79558,11.1104972 105.672192,15.8342541 102.872928,23.1823204 L102.872928,23.1823204 L103.39779,22.6574586 C78.9042357,69.1952118 58.6095764,116.257827 42.5138122,163.845304 C26.4180479,211.432781 12.771639,260.244936 1.57458564,310.281768 C-0.524861878,319.729282 1.13720074,327.339779 6.56077348,333.11326 C11.9843462,338.88674 18.3701657,341.773481 25.718232,341.773481 C30.9668508,341.773481 35.8655617,340.023941 40.4143646,336.524862 C44.9631676,333.025783 48.6372007,327.427256 51.4364641,319.729282 C54.5856354,304.333333 57.9972376,289.899632 61.6712707,276.428177 C65.3453039,262.956722 69.281768,248.872928 73.480663,234.176796 L73.480663,234.176796 L74.5303867,234.176796 C96.9244936,234.176796 119.143646,234.001842 141.187845,233.651934 C163.232044,233.302026 185.276243,233.127072 207.320442,233.127072 C212.918969,248.872928 217.555249,264.268877 221.229282,279.314917 C224.903315,294.360958 227.615101,309.756906 229.364641,325.502762 C232.163904,331.451197 235.925414,335.825046 240.649171,338.624309 C245.372928,341.423573 250.184162,342.823204 255.082873,342.823204 Z M88.7016575,187.464088 C95.6998158,167.519337 102.785451,148.361878 109.958564,129.991713 C117.131676,111.621547 124.917127,93.5138122 133.314917,75.6685083 C137.513812,81.6169429 141.800184,88.4401473 146.174033,96.1381215 C150.547882,103.836096 154.834254,111.53407 159.033149,119.232044 L159.033149,119.232044 L164.281768,128.679558 C168.830571,138.826888 173.379374,148.449355 177.928177,157.546961 C182.47698,166.644567 186.850829,176.267035 191.049724,186.414365 C173.20442,186.414365 156.146409,186.589319 139.875691,186.939227 C123.604972,187.289134 106.546961,187.464088 88.7016575,187.464088 Z M439.171271,339.149171 C452.81768,339.149171 466.551565,338.449355 480.372928,337.049724 C494.194291,335.650092 507.228361,333.025783 519.475138,329.176796 C529.27256,325.677716 538.54512,320.779006 547.292818,314.480663 C556.040516,308.18232 563.651013,301.009208 570.124309,292.961326 C576.597606,284.913444 581.671271,276.165746 585.345304,266.718232 C589.019337,257.270718 590.856354,247.823204 590.856354,238.375691 C590.856354,224.029466 586.744936,210.208103 578.522099,196.911602 C570.299263,183.615101 557.790055,172.418048 540.994475,163.320442 C552.191529,154.222836 561.289134,143.463168 568.287293,131.041436 C575.285451,118.619705 578.78453,106.285451 578.78453,94.038674 C578.78453,84.5911602 576.335175,74.7937385 571.436464,64.6464088 C566.537753,54.4990792 559.452118,45.2265193 550.179558,36.8287293 C540.906998,28.4309392 529.709945,21.6077348 516.588398,16.359116 C503.466851,11.1104972 488.683241,8.48618785 472.237569,8.48618785 C463.139963,8.48618785 452.030387,9.9732965 438.90884,12.9475138 C425.787293,15.9217311 413.103131,19.9456722 400.856354,25.019337 C388.609576,30.0930018 378.199816,36.1289134 369.627072,43.1270718 C361.054328,50.1252302 356.767956,57.4732965 356.767956,65.1712707 C356.767956,71.1197053 359.042357,76.1058932 363.59116,80.1298343 C368.139963,84.1537753 374.088398,86.1657459 381.436464,86.1657459 C382.486188,86.1657459 383.273481,86.2532228 383.798343,86.4281768 C384.323204,86.6031308 385.110497,86.5156538 386.160221,86.1657459 L386.160221,86.1657459 L386.160221,306.607735 L386.685083,305.558011 C384.935543,309.406998 384.060773,312.731123 384.060773,315.530387 C384.060773,320.779006 386.160221,325.765193 390.359116,330.48895 C394.558011,335.212707 401.206262,337.924494 410.303867,338.624309 L410.303867,338.624309 L410.828729,338.624309 C415.72744,338.974217 420.451197,339.149171 425,339.149171 L425,339.149171 L439.171271,339.149171 Z M465.939227,144.425414 C461.040516,144.075506 456.316759,143.813076 451.767956,143.638122 C447.219153,143.463168 442.495396,143.375691 437.596685,143.375691 L437.596685,143.375691 L437.596685,60.9723757 C447.744015,57.4732965 458.416206,55.7237569 469.61326,55.7237569 C476.26151,55.7237569 482.909761,56.5985267 489.558011,58.3480663 C496.206262,60.0976059 502.32965,62.6344383 507.928177,65.9585635 C513.526703,69.2826888 518.075506,73.5690608 521.574586,78.8176796 C525.073665,84.0662983 526.823204,90.3646409 526.823204,97.7127072 C526.823204,105.060773 524.548803,111.53407 520,117.132597 C515.451197,122.731123 509.940147,127.45488 503.466851,131.303867 C496.993554,135.152855 490.257827,138.214549 483.259669,140.48895 C476.26151,142.763352 470.488029,144.075506 465.939227,144.425414 Z M437.596685,292.961326 L437.596685,193.762431 C443.195212,193.762431 448.618785,193.5 453.867403,192.975138 C459.116022,192.450276 464.189687,191.837937 469.088398,191.138122 C478.88582,192.187845 488.158379,194.024862 496.906077,196.649171 C505.653775,199.273481 513.876611,203.034991 521.574586,207.933702 C527.52302,211.782689 531.896869,216.593923 534.696133,222.367403 C537.495396,228.140884 538.895028,234.526703 538.895028,241.524862 C538.895028,253.421731 535.046041,262.781768 527.348066,269.604972 C519.650092,276.428177 510.465009,281.589319 499.792818,285.088398 C489.120626,288.587477 478.01105,290.774401 466.464088,291.649171 C454.917127,292.523941 445.294659,292.961326 437.596685,292.961326 L437.596685,292.961326 Z M793.314917,346.497238 C799.61326,346.497238 805.474217,344.39779 810.89779,340.198895 C816.321363,336 819.208103,329.35175 819.558011,320.254144 C819.558011,278.615101 819.470534,236.888582 819.29558,195.074586 L819.225956,177.159657 C819.097418,141.340512 819.033149,105.585635 819.033149,69.8950276 L819.033149,69.8950276 L896.187845,69.3701657 C904.235727,67.6206262 910.271639,64.7338858 914.29558,60.7099448 C918.319521,56.6860037 920.506446,52.0497238 920.856354,46.801105 C921.206262,42.252302 919.544199,37.7034991 915.870166,33.1546961 C912.196133,28.6058932 906.860037,25.106814 899.861878,22.6574586 L899.861878,22.6574586 L881.332049,22.6574586 C873.146334,22.6641852 861.47764,22.7515376 846.325967,22.9198895 C831.123071,23.0888106 811.679674,23.1761835 787.995776,23.1820084 L693.066298,23.1823204 C683.268877,23.1823204 676.095764,25.4567219 671.546961,30.0055249 C666.998158,34.5543278 664.548803,39.6279926 664.198895,45.2265193 C663.848987,50.825046 665.686004,55.8987109 669.709945,60.4475138 C673.733886,64.9963168 680.119705,68.145488 688.867403,69.8950276 L688.867403,69.8950276 L767.071823,69.8950276 L767.596685,322.353591 C768.646409,330.401473 771.708103,336.437385 776.781768,340.461326 C781.855433,344.485267 787.366483,346.497238 793.314917,346.497238 Z M1128.03867,349.121547 C1138.88582,349.121547 1149.47053,347.721915 1159.79282,344.922652 C1170.1151,342.123389 1180.69982,338.624309 1191.54696,334.425414 C1204.14365,329.176796 1215.69061,321.478821 1226.18785,311.331492 C1236.68508,301.184162 1245.95764,289.899632 1254.00552,277.477901 C1262.05341,265.056169 1268.96409,252.109576 1274.73757,238.638122 C1280.51105,225.166667 1284.97238,212.307551 1288.12155,200.060773 C1289.52118,192.012891 1290.5709,183.965009 1291.27072,175.917127 C1291.97053,167.869245 1292.32044,159.821363 1292.32044,151.773481 C1292.32044,139.526703 1291.00829,127.104972 1288.38398,114.508287 C1285.75967,101.911602 1281.4733,90.014733 1275.52486,78.8176796 C1262.92818,56.7734807 1245.95764,39.8029466 1224.61326,27.9060773 C1203.26888,16.0092081 1180.52486,10.0607735 1156.38122,10.0607735 C1141.33517,10.0607735 1126.72652,12.160221 1112.55525,16.359116 C1098.38398,20.558011 1085.17495,26.6813996 1072.92818,34.7292818 C1063.48066,41.3775322 1054.47053,49.9502762 1045.89779,60.4475138 C1037.32505,70.9447514 1029.62707,82.3167587 1022.80387,94.5635359 C1015.98066,106.810313 1010.20718,119.319521 1005.48343,132.09116 C1000.75967,144.862799 997.52302,156.672192 995.773481,167.519337 C995.073665,172.418048 994.548803,177.491713 994.198895,182.740331 C993.848987,187.98895 993.674033,193.062615 993.674033,197.961326 C993.674033,211.957643 995.073665,225.953959 997.872928,239.950276 C1000.67219,253.946593 1005.13352,267.155617 1011.25691,279.577348 C1017.38029,291.999079 1025.42818,303.196133 1035.40055,313.168508 C1045.37293,323.140884 1057.70718,330.751381 1072.40331,336 C1081.85083,339.149171 1091.21087,342.123389 1100.48343,344.922652 C1109.75599,347.721915 1118.94107,349.121547 1128.03867,349.121547 Z M1132.76243,302.933702 C1117.36648,302.933702 1104.15746,300.134438 1093.13536,294.535912 C1082.11326,288.937385 1072.92818,281.414365 1065.58011,271.966851 C1058.23204,262.519337 1052.80847,251.584715 1049.30939,239.162983 C1045.81031,226.741252 1044.06077,213.707182 1044.06077,200.060773 C1044.06077,189.213628 1045.37293,177.754144 1047.99724,165.68232 C1050.62155,153.610497 1054.38306,141.801105 1059.28177,130.254144 C1064.18048,118.707182 1070.21639,107.77256 1077.3895,97.4502762 C1084.56262,87.1279926 1092.69797,78.4677716 1101.79558,71.4696133 C1109.49355,66.2209945 1117.54144,62.1095764 1125.93923,59.1353591 C1134.33702,56.1611418 1143.08471,54.6740331 1152.18232,54.6740331 C1167.92818,54.6740331 1182.88674,58.5230203 1197.05801,66.2209945 C1211.22928,73.9189687 1222.33886,85.1160221 1230.38674,99.8121547 C1234.23573,107.860037 1237.03499,116.345304 1238.78453,125.267956 C1240.53407,134.190608 1241.40884,143.200737 1241.40884,152.298343 C1241.40884,164.895028 1240.00921,178.104052 1237.20994,191.925414 C1234.41068,205.746777 1230.03683,219.043278 1224.0884,231.814917 C1218.13996,244.586556 1210.61694,256.395948 1201.51934,267.243094 C1192.42173,278.090239 1181.57459,286.837937 1168.9779,293.486188 C1163.72928,296.285451 1157.86832,298.559853 1151.39503,300.309392 C1144.92173,302.058932 1138.71087,302.933702 1132.76243,302.933702 Z M1484.28177,341.248619 C1496.17864,341.248619 1507.28821,338.799263 1517.6105,333.900552 C1527.93278,329.001842 1536.24309,321.478821 1542.54144,311.331492 C1546.39042,304.683241 1550.06446,297.860037 1553.56354,290.861878 C1557.06262,283.86372 1560.03683,277.21547 1562.48619,270.917127 C1564.58564,277.565378 1567.12247,284.126151 1570.09669,290.599448 C1573.0709,297.072744 1576.65746,303.633517 1580.85635,310.281768 C1587.5046,319.729282 1596.16483,327.077348 1606.83702,332.325967 C1617.50921,337.574586 1628.44383,340.198895 1639.64088,340.198895 C1651.53775,340.198895 1662.73481,337.574586 1673.23204,332.325967 C1683.72928,327.077348 1692.12707,319.379374 1698.42541,309.232044 C1710.32228,288.587477 1718.72007,267.330571 1723.61878,245.461326 C1728.5175,223.592081 1732.36648,201.285451 1735.16575,178.541436 C1737.96501,155.447514 1739.8895,132.528545 1740.93923,109.78453 C1741.98895,87.0405157 1742.86372,64.121547 1743.56354,41.0276243 C1741.46409,34.7292818 1737.87753,29.9180479 1732.80387,26.5939227 C1727.7302,23.2697974 1722.74401,21.6077348 1717.8453,21.6077348 C1711.89687,21.6077348 1706.56077,23.3572744 1701.83702,26.8563536 C1697.11326,30.3554328 1694.05157,35.6040516 1692.65193,42.6022099 C1691.95212,70.5948435 1690.90239,98.412523 1689.50276,126.055249 C1688.10313,153.697974 1685.12891,181.165746 1680.58011,208.458564 C1677.78085,223.854512 1674.01934,239.162983 1669.29558,254.383978 C1664.57182,269.604972 1657.13628,282.464088 1646.98895,292.961326 C1644.8895,293.661142 1643.22744,294.098527 1642.00276,294.273481 C1640.77808,294.448435 1637.89134,293.836096 1633.34254,292.436464 L1633.34254,292.436464 L1622.8453,282.98895 C1609.5488,257.79558 1600.88858,230.85267 1596.86464,202.160221 C1592.8407,173.467772 1590.82873,144.775322 1590.82873,116.082873 C1590.82873,105.235727 1590.91621,94.4760589 1591.09116,83.8038674 C1591.26611,73.1316759 1591.52855,62.5469613 1591.87845,52.0497238 C1589.77901,45.7513812 1586.19245,40.9401473 1581.11878,37.6160221 C1576.04512,34.2918969 1570.88398,32.6298343 1565.63536,32.6298343 C1560.03683,32.6298343 1554.87569,34.3793738 1550.15193,37.878453 C1545.42818,41.3775322 1542.36648,46.4511971 1540.96685,53.0994475 C1540.61694,56.9484346 1540.35451,60.7099448 1540.17956,64.3839779 C1540.0046,68.058011 1539.91713,71.8195212 1539.91713,75.6685083 C1539.21731,93.5138122 1538.43002,111.53407 1537.55525,129.729282 C1536.68048,147.924494 1534.93094,165.944751 1532.30663,183.790055 C1529.68232,201.635359 1526.00829,219.043278 1521.28453,236.013812 C1516.56077,252.984346 1510,269.167587 1501.60221,284.563536 L1501.60221,284.563536 L1491.10497,294.01105 L1485.33149,296.110497 L1476.9337,293.486188 C1475.53407,292.436464 1473.87201,290.861878 1471.94751,288.762431 C1470.02302,286.662983 1468.36096,284.913444 1466.96133,283.513812 C1454.36464,259.020258 1445.96685,232.164825 1441.76796,202.947514 C1437.56906,173.730203 1435.46961,144.600368 1435.46961,115.558011 C1435.46961,105.760589 1435.55709,96.2255985 1435.73204,86.9530387 C1435.907,77.6804788 1436.16943,68.4953959 1436.51934,59.3977901 C1436.51934,56.5985267 1436.60681,53.6243094 1436.78177,50.4751381 C1436.95672,47.3259669 1437.0442,44.3517495 1437.0442,41.5524862 C1434.94475,35.2541436 1431.3582,30.4429098 1426.28453,27.1187845 C1421.21087,23.7946593 1416.04972,22.1325967 1410.8011,22.1325967 C1405.20258,22.1325967 1400.04144,23.8821363 1395.31768,27.3812155 C1390.59392,30.8802947 1387.53223,36.1289134 1386.1326,43.1270718 L1386.1326,43.1270718 L1386.1326,43.6519337 C1385.78269,54.4990792 1385.52026,65.6086556 1385.3453,76.980663 C1385.17035,88.3526703 1385.08287,99.9871087 1385.08287,111.883978 C1385.08287,129.029466 1385.52026,146.349908 1386.39503,163.845304 C1387.2698,181.3407 1389.19429,198.573665 1392.16851,215.544199 C1395.14273,232.514733 1399.25414,249.047882 1404.50276,265.143646 C1409.75138,281.239411 1416.57459,296.285451 1424.97238,310.281768 C1431.62063,320.429098 1440.19337,328.127072 1450.69061,333.375691 C1461.18785,338.624309 1472.3849,341.248619 1484.28177,341.248619 Z M1852.07182,339.149171 C1858.02026,339.149171 1863.70626,337.049724 1869.12983,332.850829 C1874.55341,328.651934 1877.44015,322.178637 1877.79006,313.430939 C1877.44015,305.383057 1877.17772,296.372928 1877.00276,286.400552 C1876.82781,276.428177 1876.65285,266.368324 1876.4779,256.220994 C1876.30295,246.073665 1876.12799,236.101289 1875.95304,226.303867 C1875.77808,216.506446 1875.69061,207.583794 1875.69061,199.535912 C1879.53959,198.13628 1882.68877,197.086556 1885.13812,196.38674 C1887.58748,195.686924 1890.21179,194.812155 1893.01105,193.762431 C1893.55401,194.413984 1894.19807,195.166639 1894.94324,196.020398 L1895.455,196.604549 C1897.0352,198.401935 1899.01981,200.603734 1901.40884,203.209945 C1905.25783,207.40884 1909.98158,212.395028 1915.58011,218.168508 C1921.17864,223.941989 1927.21455,230.327808 1933.68785,237.325967 C1940.16114,244.324125 1946.89687,251.497238 1953.89503,258.845304 C1960.89319,266.19337 1967.80387,273.453959 1974.62707,280.627072 C1981.45028,287.800184 1987.66114,294.360958 1993.25967,300.309392 C1998.8582,306.257827 2003.75691,311.506446 2007.9558,316.055249 C2012.1547,320.604052 2015.12891,323.928177 2016.87845,326.027624 C2020.02762,329.526703 2023.5267,331.888582 2027.37569,333.11326 C2031.22468,334.337937 2035.07366,334.950276 2038.92265,334.950276 C2045.92081,334.950276 2051.69429,332.938306 2056.24309,328.914365 C2060.7919,324.890424 2063.0663,319.729282 2063.0663,313.430939 C2063.0663,307.832413 2059.91713,301.009208 2053.61878,292.961326 C2038.22284,276.165746 2023.1768,259.982505 2008.48066,244.411602 C1993.78453,228.8407 1978.73849,212.832413 1963.34254,196.38674 L1963.34254,196.38674 L1937.09945,168.044199 C1951.44567,157.546961 1964.04236,146 1974.8895,133.403315 C1985.73665,120.80663 1997.28361,107.160221 2009.53039,92.4640884 C2013.72928,86.5156538 2018.45304,80.5672192 2023.70166,74.6187845 C2028.95028,68.6703499 2034.37385,62.3720074 2039.97238,55.7237569 C2041.72192,50.4751381 2042.59669,46.626151 2042.59669,44.1767956 C2042.59669,37.878453 2040.23481,32.6298343 2035.51105,28.4309392 C2030.78729,24.2320442 2024.92634,22.1325967 2017.92818,22.1325967 C2010.2302,22.1325967 2002.88214,25.106814 1995.88398,31.0552486 C1990.28545,37.0036832 1985.21179,42.9521179 1980.66298,48.9005525 C1976.11418,54.8489871 1971.91529,60.6224678 1968.0663,66.2209945 C1955.81952,81.267035 1942.17311,96.5755064 1927.12707,112.146409 C1912.08103,127.717311 1895.1105,140.226519 1876.21547,149.674033 C1876.21547,139.526703 1876.30295,130.604052 1876.4779,122.906077 C1876.65285,115.208103 1876.74033,106.635359 1876.74033,97.1878453 L1876.74033,97.1878453 L1876.74033,40.5027624 C1874.99079,33.5046041 1871.57919,28.2559853 1866.50552,24.7569061 C1861.43186,21.2578269 1856.27072,19.5082873 1851.0221,19.5082873 C1844.72376,19.5082873 1839.21271,21.3453039 1834.48895,25.019337 C1829.76519,28.6933702 1826.52855,34.2044199 1824.77901,41.5524862 C1824.77901,65.6961326 1824.86648,89.3149171 1825.04144,112.40884 C1825.21639,135.502762 1825.30387,158.246777 1825.30387,180.640884 C1825.30387,203.384899 1825.21639,225.866483 1825.04144,248.085635 C1824.86648,270.304788 1824.77901,292.611418 1824.77901,315.005525 C1825.82873,323.053407 1829.06538,329.089319 1834.48895,333.11326 C1839.91252,337.137201 1845.77348,339.149171 1852.07182,339.149171 Z M2278.64641,349.121547 C2289.49355,349.121547 2300.07827,347.721915 2310.40055,344.922652 C2320.72284,342.123389 2331.30755,338.624309 2342.1547,334.425414 C2354.75138,329.176796 2366.29834,321.478821 2376.79558,311.331492 C2387.29282,301.184162 2396.56538,289.899632 2404.61326,277.477901 C2412.66114,265.056169 2419.57182,252.109576 2425.3453,238.638122 C2431.11878,225.166667 2435.58011,212.307551 2438.72928,200.060773 C2440.12891,192.012891 2441.17864,183.965009 2441.87845,175.917127 C2442.57827,167.869245 2442.92818,159.821363 2442.92818,151.773481 C2442.92818,139.526703 2441.61602,127.104972 2438.99171,114.508287 C2436.3674,101.911602 2432.08103,90.014733 2426.1326,78.8176796 C2413.53591,56.7734807 2396.56538,39.8029466 2375.22099,27.9060773 C2353.87661,16.0092081 2331.1326,10.0607735 2306.98895,10.0607735 C2291.94291,10.0607735 2277.33425,12.160221 2263.16298,16.359116 C2248.99171,20.558011 2235.78269,26.6813996 2223.53591,34.7292818 C2214.0884,41.3775322 2205.07827,49.9502762 2196.50552,60.4475138 C2187.93278,70.9447514 2180.23481,82.3167587 2173.4116,94.5635359 C2166.5884,106.810313 2160.81492,119.319521 2156.09116,132.09116 C2151.3674,144.862799 2148.13076,156.672192 2146.38122,167.519337 C2145.6814,172.418048 2145.15654,177.491713 2144.80663,182.740331 C2144.45672,187.98895 2144.28177,193.062615 2144.28177,197.961326 C2144.28177,211.957643 2145.6814,225.953959 2148.48066,239.950276 C2151.27993,253.946593 2155.74125,267.155617 2161.86464,279.577348 C2167.98803,291.999079 2176.03591,303.196133 2186.00829,313.168508 C2195.98066,323.140884 2208.31492,330.751381 2223.01105,336 C2232.45856,339.149171 2241.8186,342.123389 2251.09116,344.922652 C2260.36372,347.721915 2269.5488,349.121547 2278.64641,349.121547 Z M2283.37017,302.933702 C2267.97422,302.933702 2254.76519,300.134438 2243.74309,294.535912 C2232.72099,288.937385 2223.53591,281.414365 2216.18785,271.966851 C2208.83978,262.519337 2203.41621,251.584715 2199.91713,239.162983 C2196.41805,226.741252 2194.66851,213.707182 2194.66851,200.060773 C2194.66851,189.213628 2195.98066,177.754144 2198.60497,165.68232 C2201.22928,153.610497 2204.99079,141.801105 2209.8895,130.254144 C2214.78821,118.707182 2220.82413,107.77256 2227.99724,97.4502762 C2235.17035,87.1279926 2243.30571,78.4677716 2252.40331,71.4696133 C2260.10129,66.2209945 2268.14917,62.1095764 2276.54696,59.1353591 C2284.94475,56.1611418 2293.69245,54.6740331 2302.79006,54.6740331 C2318.53591,54.6740331 2333.49448,58.5230203 2347.66575,66.2209945 C2361.83702,73.9189687 2372.94659,85.1160221 2380.99448,99.8121547 C2384.84346,107.860037 2387.64273,116.345304 2389.39227,125.267956 C2391.1418,134.190608 2392.01657,143.200737 2392.01657,152.298343 C2392.01657,164.895028 2390.61694,178.104052 2387.81768,191.925414 C2385.01842,205.746777 2380.64457,219.043278 2374.69613,231.814917 C2368.7477,244.586556 2361.22468,256.395948 2352.12707,267.243094 C2343.02947,278.090239 2332.18232,286.837937 2319.58564,293.486188 C2314.33702,296.285451 2308.47606,298.559853 2302.00276,300.309392 C2295.52947,302.058932 2289.3186,302.933702 2283.37017,302.933702 Z M2625.96685,343.872928 C2634.71455,343.872928 2643.02486,341.161142 2650.89779,335.737569 C2658.77072,330.313996 2665.50645,322.003683 2671.10497,310.80663 C2679.15285,292.26151 2684.40147,272.666667 2686.85083,252.022099 C2689.30018,231.377532 2690.52486,211.082873 2690.52486,191.138122 L2690.52486,191.138122 L2690.52486,147.049724 C2690.52486,135.85267 2690.34991,124.918048 2690,114.245856 C2689.65009,103.573665 2689.47514,92.6390424 2689.47514,81.441989 C2705.5709,80.7421731 2721.05433,79.7799263 2735.92541,78.5552486 C2750.7965,77.3305709 2766.10497,76.1933702 2781.85083,75.1436464 L2781.85083,75.1436464 L2781.85083,194.812155 C2781.85083,215.106814 2781.93831,235.313996 2782.11326,255.433702 C2782.28821,275.553407 2782.37569,295.760589 2782.37569,316.055249 C2783.07551,324.103131 2786.04972,330.051565 2791.29834,333.900552 C2796.54696,337.74954 2802.14549,339.674033 2808.09392,339.674033 C2814.04236,339.674033 2819.55341,337.574586 2824.62707,333.375691 C2829.70074,329.176796 2832.58748,322.878453 2833.28729,314.480663 C2833.28729,292.436464 2833.19982,270.304788 2833.02486,248.085635 C2832.84991,225.866483 2832.76243,203.559853 2832.76243,181.165746 L2832.76243,181.165746 L2832.76243,47.3259669 C2830.31308,40.3278085 2826.72652,35.3416206 2822.00276,32.3674033 C2817.27901,29.393186 2810.89319,28.0810313 2802.8453,28.4309392 C2791.29834,29.8305709 2779.83886,30.7928177 2768.46685,31.3176796 C2757.09484,31.8425414 2745.63536,32.4548803 2734.0884,33.1546961 C2720.7919,33.854512 2707.67035,34.4668508 2694.72376,34.9917127 C2681.77716,35.5165746 2669.35543,36.6537753 2657.45856,38.4033149 C2651.51013,40.1528545 2647.13628,42.6022099 2644.33702,45.7513812 C2641.53775,48.9005525 2639.61326,53.2744015 2638.56354,58.8729282 L2638.56354,58.8729282 L2638.56354,69.3701657 C2638.91344,82.6666667 2639.17587,95.6132597 2639.35083,108.209945 C2639.52578,120.80663 2639.61326,134.278085 2639.61326,148.624309 C2639.61326,161.92081 2639.70074,174.95488 2639.87569,187.726519 C2640.05064,200.498158 2639.78821,213.094843 2639.0884,225.516575 C2638.38858,237.938306 2636.814,250.097606 2634.36464,261.994475 C2631.91529,273.891344 2627.89134,285.438306 2622.29282,296.635359 C2618.44383,295.235727 2614.24494,291.824125 2609.69613,286.400552 C2605.14733,280.97698 2600.77348,274.941068 2596.57459,268.292818 C2592.37569,261.644567 2588.61418,255.083794 2585.29006,248.610497 C2581.96593,242.137201 2579.4291,236.976059 2577.67956,233.127072 C2574.88029,227.528545 2571.03131,223.679558 2566.1326,221.58011 C2561.23389,219.480663 2556.68508,218.430939 2552.48619,218.430939 C2544.43831,218.430939 2537.87753,221.930018 2532.80387,228.928177 C2527.7302,235.926335 2527.64273,244.324125 2532.54144,254.121547 C2537.09024,263.219153 2541.63904,271.616943 2546.18785,279.314917 C2550.73665,287.012891 2555.98527,295.060773 2561.9337,303.458564 C2569.98158,314.655617 2579.69153,324.190608 2591.06354,332.063536 C2602.43554,339.936464 2614.06998,343.872928 2625.96685,343.872928 Z M3171.68508,342.823204 C3178.33333,342.823204 3184.01934,340.63628 3188.74309,336.262431 C3193.46685,331.888582 3196.17864,325.327808 3196.87845,316.58011 C3193.37937,287.887661 3187.25599,259.895028 3178.50829,232.60221 L3178.50829,232.60221 L3184.80663,232.60221 C3192.85451,230.85267 3198.80295,227.790976 3202.65193,223.417127 C3206.50092,219.043278 3208.42541,214.406998 3208.42541,209.508287 C3208.42541,204.609576 3206.67587,200.060773 3203.1768,195.861878 C3199.67772,191.662983 3194.25414,188.338858 3186.90608,185.889503 C3183.05709,185.889503 3178.8582,185.97698 3174.30939,186.151934 C3169.76059,186.326888 3165.56169,186.414365 3161.71271,186.414365 C3158.56354,178.366483 3155.23941,170.231123 3151.74033,162.008287 C3148.24125,153.785451 3144.91713,146.349908 3141.76796,139.701657 C3136.86924,129.554328 3131.62063,118.882136 3126.0221,107.685083 C3120.42357,96.4880295 3114.38766,85.378453 3107.91436,74.3563536 C3101.44107,63.3342541 3094.44291,52.6620626 3086.91989,42.339779 C3079.39687,32.0174954 3071.26151,22.6574586 3062.51381,14.2596685 C3055.16575,7.61141805 3046.76796,5.86187845 3037.32044,9.01104972 L3037.32044,9.01104972 L3037.8453,9.01104972 C3028.39779,11.1104972 3022.2744,15.8342541 3019.47514,23.1823204 L3019.47514,23.1823204 L3020,22.6574586 C2995.50645,69.1952118 2975.21179,116.257827 2959.11602,163.845304 C2943.02026,211.432781 2929.37385,260.244936 2918.1768,310.281768 C2916.07735,319.729282 2917.73941,327.339779 2923.16298,333.11326 C2928.58656,338.88674 2934.97238,341.773481 2942.32044,341.773481 C2947.56906,341.773481 2952.46777,340.023941 2957.01657,336.524862 C2961.56538,333.025783 2965.23941,327.427256 2968.03867,319.729282 C2971.18785,304.333333 2974.59945,289.899632 2978.27348,276.428177 C2981.94751,262.956722 2985.88398,248.872928 2990.08287,234.176796 L2990.08287,234.176796 L2991.1326,234.176796 C3013.5267,234.176796 3035.74586,234.001842 3057.79006,233.651934 C3079.83425,233.302026 3101.87845,233.127072 3123.92265,233.127072 C3129.52118,248.872928 3134.15746,264.268877 3137.83149,279.314917 C3141.50552,294.360958 3144.21731,309.756906 3145.96685,325.502762 C3148.76611,331.451197 3152.52762,335.825046 3157.25138,338.624309 C3161.97514,341.423573 3166.78637,342.823204 3171.68508,342.823204 Z M3005.30387,187.464088 C3012.30203,167.519337 3019.38766,148.361878 3026.56077,129.991713 C3033.73389,111.621547 3041.51934,93.5138122 3049.91713,75.6685083 C3054.11602,81.6169429 3058.40239,88.4401473 3062.77624,96.1381215 C3067.15009,103.836096 3071.43646,111.53407 3075.63536,119.232044 L3075.63536,119.232044 L3080.88398,128.679558 C3085.43278,138.826888 3089.98158,148.449355 3094.53039,157.546961 C3099.07919,166.644567 3103.45304,176.267035 3107.65193,186.414365 C3089.80663,186.414365 3072.74862,186.589319 3056.4779,186.939227 C3040.20718,187.289134 3023.14917,187.464088 3005.30387,187.464088 Z M3523.0663,346.497238 C3527.96501,346.497238 3532.77624,344.835175 3537.5,341.51105 C3542.22376,338.186924 3545.98527,333.025783 3548.78453,326.027624 L3548.78453,326.027624 L3558.75691,219.480663 C3560.15654,203.384899 3561.55617,187.551565 3562.9558,171.980663 C3564.35543,156.409761 3565.75506,141.101289 3567.1547,126.055249 L3567.1547,126.055249 L3662.1547,312.381215 C3669.85267,319.029466 3677.02578,322.353591 3683.67403,322.353591 C3692.42173,322.353591 3699.94475,318.854512 3706.24309,311.856354 C3713.59116,294.710866 3720.76427,276.690608 3727.76243,257.79558 C3734.76059,238.900552 3741.75875,220.005525 3748.75691,201.110497 C3754.35543,186.414365 3759.69153,172.155617 3764.76519,158.334254 C3769.83886,144.512891 3775.17495,130.953959 3780.77348,117.657459 C3784.97238,133.053407 3788.90884,149.411602 3792.58287,166.732044 C3796.25691,184.052486 3799.49355,201.547882 3802.29282,219.218232 C3805.09208,236.888582 3807.62891,254.296501 3809.90331,271.441989 C3812.17772,288.587477 3814.18969,304.683241 3815.93923,319.729282 C3816.63904,328.127072 3819.61326,334.337937 3824.86188,338.361878 C3830.1105,342.38582 3835.70902,344.39779 3841.65746,344.39779 C3847.9558,344.39779 3853.81676,342.298343 3859.24033,338.099448 C3864.6639,333.900552 3867.55064,327.252302 3867.90055,318.154696 C3865.8011,295.760589 3862.91436,272.491713 3859.24033,248.348066 C3855.5663,224.20442 3851.19245,200.060773 3846.11878,175.917127 C3841.04512,151.773481 3835.62155,127.979742 3829.84807,104.535912 C3824.07459,81.092081 3818.03867,58.6979742 3811.74033,37.3535912 C3809.64088,30.7053407 3806.22928,25.7191529 3801.50552,22.3950276 C3796.78177,19.0709024 3791.79558,17.4088398 3786.54696,17.4088398 C3776.04972,17.4088398 3768.00184,22.1325967 3762.40331,31.5801105 C3754.00552,51.174954 3745.69521,71.6445672 3737.47238,92.9889503 C3729.24954,114.333333 3721.11418,135.85267 3713.0663,157.546961 C3707.46777,172.243094 3702.0442,186.589319 3696.79558,200.585635 C3691.54696,214.581952 3686.29834,228.228361 3681.04972,241.524862 C3671.95212,225.07919 3663.46685,209.070902 3655.59392,193.5 C3647.72099,177.929098 3639.23573,161.046041 3630.13812,142.850829 C3620.3407,123.605893 3610.71823,104.623389 3601.27072,85.9033149 C3591.8232,67.1832413 3582.20074,49.2504604 3572.40331,32.1049724 C3566.45488,23.7071823 3558.93186,19.5082873 3549.83425,19.5082873 C3543.53591,19.5082873 3537.93738,21.3453039 3533.03867,25.019337 C3528.13996,28.6933702 3525.16575,33.854512 3524.11602,40.5027624 L3524.11602,40.5027624 L3497.34807,321.828729 C3498.04788,329.876611 3500.93462,336 3506.00829,340.198895 C3511.08195,344.39779 3516.76796,346.497238 3523.0663,346.497238 Z M4064.58564,334.425414 C4071.23389,334.425414 4077.70718,334.25046 4084.00552,333.900552 C4092.40331,332.151013 4098.61418,329.001842 4102.63812,324.453039 C4106.66206,319.904236 4108.67403,315.180479 4108.67403,310.281768 C4108.67403,304.333333 4105.96225,298.909761 4100.53867,294.01105 C4095.1151,289.112339 4087.32965,287.012891 4077.18232,287.712707 L4077.18232,287.712707 L4075.08287,287.712707 C4071.23389,288.062615 4067.90976,288.325046 4065.1105,288.5 C4062.31123,288.674954 4058.98711,288.762431 4055.13812,288.762431 L4055.13812,288.762431 L4055.13812,66.2209945 L4082.9558,66.2209945 C4091.00368,64.4714549 4097.03959,61.4097606 4101.06354,57.0359116 C4105.08748,52.6620626 4107.09945,48.0257827 4107.09945,43.1270718 C4107.09945,38.5782689 4105.26243,34.1169429 4101.5884,29.7430939 C4097.91436,25.3692449 4092.40331,21.9576427 4085.05525,19.5082873 L4085.05525,19.5082873 L3976.40884,19.5082873 C3967.31123,20.2081031 3960.48803,22.7449355 3955.93923,27.1187845 C3951.39042,31.4926335 3949.11602,36.4788214 3949.11602,42.0773481 C3949.11602,47.6758748 3951.21547,52.7495396 3955.41436,57.2983425 C3959.61326,61.8471455 3966.08656,64.8213628 3974.83425,66.2209945 L3974.83425,66.2209945 L4003.1768,66.2209945 L4003.1768,287.712707 C3998.27808,287.362799 3993.99171,287.275322 3990.31768,287.450276 C3986.64365,287.62523 3982.18232,287.712707 3976.9337,287.712707 C3967.8361,288.412523 3961.01289,290.949355 3956.46409,295.323204 C3951.91529,299.697053 3949.64088,304.858195 3949.64088,310.80663 C3949.64088,316.055249 3951.74033,320.953959 3955.93923,325.502762 C3960.13812,330.051565 3966.61142,333.025783 3975.35912,334.425414 L3975.35912,334.425414 L4064.58564,334.425414 Z M4323.72928,346.497238 C4330.02762,346.497238 4335.88858,344.39779 4341.31215,340.198895 C4346.73573,336 4349.62247,329.35175 4349.97238,320.254144 C4349.97238,278.615101 4349.8849,236.888582 4349.70994,195.074586 C4349.53499,153.260589 4349.44751,111.53407 4349.44751,69.8950276 L4349.44751,69.8950276 L4426.60221,69.3701657 C4434.65009,67.6206262 4440.686,64.7338858 4444.70994,60.7099448 C4448.73389,56.6860037 4450.92081,52.0497238 4451.27072,46.801105 C4451.62063,42.252302 4449.95856,37.7034991 4446.28453,33.1546961 C4442.6105,28.6058932 4437.2744,25.106814 4430.27624,22.6574586 L4430.27624,22.6574586 L4411.74641,22.6574586 C4403.5607,22.6641852 4391.892,22.7515376 4376.74033,22.9198895 C4361.53744,23.0888106 4342.09404,23.1761835 4318.41014,23.1820084 L4223.48066,23.1823204 C4213.68324,23.1823204 4206.51013,25.4567219 4201.96133,30.0055249 C4197.41252,34.5543278 4194.96317,39.6279926 4194.61326,45.2265193 C4194.26335,50.825046 4196.10037,55.8987109 4200.12431,60.4475138 C4204.14825,64.9963168 4210.53407,68.145488 4219.28177,69.8950276 L4219.28177,69.8950276 L4297.48619,69.8950276 L4298.01105,322.353591 C4299.06077,330.401473 4302.12247,336.437385 4307.19613,340.461326 C4312.2698,344.485267 4317.78085,346.497238 4323.72928,346.497238 Z M4758.70166,342.823204 C4765.34991,342.823204 4771.03591,340.63628 4775.75967,336.262431 C4780.48343,331.888582 4783.19521,325.327808 4783.89503,316.58011 C4780.39595,287.887661 4774.27256,259.895028 4765.52486,232.60221 L4765.52486,232.60221 L4771.8232,232.60221 C4779.87109,230.85267 4785.81952,227.790976 4789.66851,223.417127 C4793.5175,219.043278 4795.44199,214.406998 4795.44199,209.508287 C4795.44199,204.609576 4793.69245,200.060773 4790.19337,195.861878 C4786.69429,191.662983 4781.27072,188.338858 4773.92265,185.889503 C4770.07366,185.889503 4765.87477,185.97698 4761.32597,186.151934 C4756.77716,186.326888 4752.57827,186.414365 4748.72928,186.414365 C4745.58011,178.366483 4742.25599,170.231123 4738.75691,162.008287 C4735.25783,153.785451 4731.9337,146.349908 4728.78453,139.701657 C4723.88582,129.554328 4718.6372,118.882136 4713.03867,107.685083 C4707.44015,96.4880295 4701.40424,85.378453 4694.93094,74.3563536 C4688.45764,63.3342541 4681.45948,52.6620626 4673.93646,42.339779 C4666.41344,32.0174954 4658.27808,22.6574586 4649.53039,14.2596685 C4642.18232,7.61141805 4633.78453,5.86187845 4624.33702,9.01104972 L4624.33702,9.01104972 L4624.86188,9.01104972 C4615.41436,11.1104972 4609.29098,15.8342541 4606.49171,23.1823204 L4606.49171,23.1823204 L4607.01657,22.6574586 C4582.52302,69.1952118 4562.22836,116.257827 4546.1326,163.845304 C4530.03683,211.432781 4516.39042,260.244936 4505.19337,310.281768 C4503.09392,319.729282 4504.75599,327.339779 4510.17956,333.11326 C4515.60313,338.88674 4521.98895,341.773481 4529.33702,341.773481 C4534.58564,341.773481 4539.48435,340.023941 4544.03315,336.524862 C4548.58195,333.025783 4552.25599,327.427256 4555.05525,319.729282 C4558.20442,304.333333 4561.61602,289.899632 4565.29006,276.428177 C4568.96409,262.956722 4572.90055,248.872928 4577.09945,234.176796 L4577.09945,234.176796 L4578.14917,234.176796 C4600.54328,234.176796 4622.76243,234.001842 4644.80663,233.651934 C4666.85083,233.302026 4688.89503,233.127072 4710.93923,233.127072 C4716.53775,248.872928 4721.17403,264.268877 4724.84807,279.314917 C4728.5221,294.360958 4731.23389,309.756906 4732.98343,325.502762 C4735.78269,331.451197 4739.5442,335.825046 4744.26796,338.624309 C4748.99171,341.423573 4753.80295,342.823204 4758.70166,342.823204 Z M4592.32044,187.464088 C4599.3186,167.519337 4606.40424,148.361878 4613.57735,129.991713 C4620.75046,111.621547 4628.53591,93.5138122 4636.9337,75.6685083 C4641.1326,81.6169429 4645.41897,88.4401473 4649.79282,96.1381215 C4654.16667,103.836096 4658.45304,111.53407 4662.65193,119.232044 L4662.65193,119.232044 L4667.90055,128.679558 C4672.44936,138.826888 4676.99816,148.449355 4681.54696,157.546961 C4686.09576,166.644567 4690.46961,176.267035 4694.66851,186.414365 C4676.8232,186.414365 4659.76519,186.589319 4643.49448,186.939227 L4640.91887,186.993021 C4625.426,187.307066 4609.22652,187.464088 4592.32044,187.464088 Z M5129.47514,358.044199 C5152.91897,358.044199 5175.75046,353.67035 5197.96961,344.922652 C5220.18877,336.174954 5239.87109,324.015654 5257.01657,308.444751 C5274.16206,292.873849 5287.89595,274.59116 5298.21823,253.596685 C5308.54052,232.60221 5313.70166,209.858195 5313.70166,185.364641 C5313.70166,159.821363 5309.06538,135.85267 5299.79282,113.458564 C5290.52026,91.0644567 5277.57366,71.4696133 5260.95304,54.6740331 C5244.33241,37.878453 5224.73757,24.6694291 5202.16851,15.0469613 C5179.59945,5.42449355 5155.19337,0.613259669 5128.95028,0.613259669 C5104.80663,0.613259669 5081.80018,4.89963168 5059.93094,13.4723757 C5038.06169,22.0451197 5018.72928,35.2541436 5001.9337,53.0994475 C4984.43831,71.9944751 4971.9291,91.2394107 4964.40608,110.834254 C4956.88306,130.429098 4952.24678,152.823204 4950.49724,178.016575 C4950.49724,187.11418 4951.19705,196.561694 4952.59669,206.359116 C4953.99632,216.156538 4956.09576,225.779006 4958.89503,235.226519 C4965.54328,251.672192 4974.64088,267.330571 4986.18785,282.201657 C4997.73481,297.072744 5011.03131,310.106814 5026.07735,321.303867 C5041.12339,332.500921 5057.48158,341.423573 5075.15193,348.071823 C5092.82228,354.720074 5110.93002,358.044199 5129.47514,358.044199 Z M5130,312.381215 C5114.25414,312.381215 5098.59576,309.144567 5083.02486,302.671271 C5067.45396,296.197974 5053.02026,286.313076 5039.72376,273.016575 C5026.42726,260.069982 5016.62983,245.373849 5010.33149,228.928177 C5004.03315,212.482505 5001.23389,195.162063 5001.9337,176.966851 C5002.63352,153.872928 5008.93186,131.741252 5020.82873,110.571823 C5032.7256,89.4023941 5049.52118,73.2191529 5071.21547,62.0220994 C5091.86004,52.2246777 5111.97974,47.3259669 5131.57459,47.3259669 C5148.37017,47.3259669 5164.55341,50.4751381 5180.12431,56.7734807 C5195.69521,63.0718232 5209.51657,71.9069982 5221.5884,83.2790055 C5233.66022,94.6510129 5243.37017,108.209945 5250.71823,123.955801 C5258.0663,139.701657 5261.74033,157.197053 5261.74033,176.441989 C5261.74033,196.736648 5258.0663,215.281768 5250.71823,232.077348 C5243.37017,248.872928 5233.48527,263.219153 5221.06354,275.116022 C5208.6418,287.012891 5194.55801,296.197974 5178.81215,302.671271 C5163.0663,309.144567 5146.79558,312.381215 5130,312.381215 Z M5083.28729,290.861878 C5092.03499,290.861878 5099.47053,287.887661 5105.59392,281.939227 C5111.71731,275.990792 5114.77901,269.167587 5114.77901,261.469613 L5114.77901,261.469613 L5114.77901,225.779006 L5167.79006,273.016575 C5172.68877,277.565378 5178.81215,279.839779 5186.16022,279.839779 C5193.50829,279.839779 5199.80663,277.390424 5205.05525,272.491713 C5210.30387,267.593002 5212.92818,261.819521 5212.92818,255.171271 C5212.92818,248.872928 5209.51657,242.487109 5202.69337,236.013812 C5195.87017,229.540516 5186.86004,221.405157 5175.66298,211.607735 L5175.66298,211.607735 L5164.11602,201.635359 C5191.75875,182.040516 5205.58011,161.220994 5205.58011,139.176796 C5205.58011,129.379374 5203.13076,120.456722 5198.23204,112.40884 C5193.33333,104.360958 5186.77256,97.4502762 5178.54972,91.6767956 C5170.32689,85.9033149 5160.96685,81.5294659 5150.46961,78.5552486 C5139.97238,75.5810313 5129.12523,74.0939227 5117.92818,74.0939227 C5110.58011,74.0939227 5102.88214,74.8812155 5094.83425,76.4558011 C5086.78637,78.0303867 5079.52578,80.3047882 5073.05249,83.2790055 C5066.57919,86.2532228 5061.15562,90.014733 5056.78177,94.5635359 C5052.40792,99.1123389 5050.22099,104.186004 5050.22099,109.78453 C5050.22099,115.383057 5051.97053,120.281768 5055.46961,124.480663 C5058.96869,128.679558 5063.69245,131.653775 5069.64088,133.403315 C5064.04236,139.001842 5061.24309,145.475138 5061.24309,152.823204 L5061.24309,152.823204 L5061.24309,182.740331 C5050.74586,186.239411 5045.49724,193.762431 5045.49724,205.309392 C5045.49724,217.206262 5050.74586,224.904236 5061.24309,228.403315 L5061.24309,228.403315 L5061.24309,269.867403 C5061.24309,283.86372 5068.59116,290.861878 5083.28729,290.861878 Z M5114.77901,172.243094 L5114.77901,143.900552 C5114.77901,134.802947 5110.93002,128.854512 5103.23204,126.055249 C5109.18048,123.605893 5114.77901,122.381215 5120.02762,122.381215 C5129.47514,122.381215 5137.08564,123.955801 5142.85912,127.104972 C5148.6326,130.254144 5151.51934,134.103131 5151.51934,138.651934 C5151.51934,144.25046 5147.8453,150.286372 5140.49724,156.759669 C5133.14917,163.232965 5124.57643,168.394107 5114.77901,172.243094 L5114.77901,172.243094 Z M5642.48619,337.574586 C5654.73297,337.574586 5665.49263,334.512891 5674.76519,328.389503 C5684.03775,322.266114 5692.17311,314.655617 5699.17127,305.558011 C5700.22099,304.158379 5701.27072,302.40884 5702.32044,300.309392 C5703.37017,298.209945 5703.89503,295.235727 5703.89503,291.38674 C5703.89503,285.088398 5701.53315,279.577348 5696.80939,274.853591 C5692.08564,270.129834 5686.04972,267.767956 5678.70166,267.767956 C5676.2523,267.767956 5673.80295,267.94291 5671.35359,268.292818 C5668.90424,268.642726 5666.62983,269.342541 5664.53039,270.392265 C5662.43094,271.441989 5660.59392,272.929098 5659.01934,274.853591 C5657.44475,276.778085 5655.87017,278.615101 5654.29558,280.364641 C5652.72099,282.11418 5650.88398,283.688766 5648.78453,285.088398 C5646.68508,286.488029 5644.06077,287.362799 5640.9116,287.712707 L5640.9116,287.712707 L5548.01105,287.712707 C5549.76059,276.865562 5552.73481,267.418048 5556.9337,259.370166 C5561.1326,251.322284 5566.11878,244.324125 5571.89227,238.375691 C5577.66575,232.427256 5583.87661,227.178637 5590.52486,222.629834 C5597.17311,218.081031 5603.99632,213.707182 5610.99448,209.508287 C5619.74217,204.259669 5628.57735,198.398711 5637.5,191.925414 C5646.42265,185.452118 5654.38306,178.191529 5661.38122,170.143646 C5668.37937,162.095764 5674.15285,153.173112 5678.70166,143.375691 C5683.25046,133.578269 5685.52486,122.906077 5685.52486,111.359116 C5685.52486,97.0128913 5683.33794,83.8913444 5678.96409,71.9944751 C5674.59024,60.0976059 5668.6418,49.8627993 5661.11878,41.2900552 C5653.59576,32.7173112 5644.76059,26.0690608 5634.61326,21.3453039 C5624.46593,16.621547 5613.61878,14.2596685 5602.07182,14.2596685 C5591.92449,14.2596685 5582.03959,15.8342541 5572.41713,18.9834254 C5562.79466,22.1325967 5553.60958,26.3314917 5544.86188,31.5801105 C5536.11418,36.8287293 5527.80387,42.8646409 5519.93094,49.6878453 C5512.05801,56.5110497 5504.79742,63.4217311 5498.14917,70.4198895 C5494.65009,76.0184162 5492.90055,81.6169429 5492.90055,87.2154696 C5492.90055,94.213628 5495.17495,99.8996317 5499.72376,104.273481 C5504.27256,108.64733 5510.04604,110.834254 5517.0442,110.834254 C5524.74217,110.834254 5531.56538,108.384899 5537.51381,103.486188 C5547.66114,92.9889503 5558.50829,83.8913444 5570.05525,76.1933702 C5581.60221,68.4953959 5594.1989,64.6464088 5607.8453,64.6464088 C5614.84346,66.3959484 5620.7919,71.2071823 5625.69061,79.0801105 C5630.58932,86.9530387 5633.03867,94.7384899 5633.03867,102.436464 C5633.03867,111.883978 5631.28913,120.106814 5627.79006,127.104972 C5624.29098,134.103131 5619.6547,140.48895 5613.88122,146.262431 C5608.10773,152.035912 5601.63444,157.109576 5594.46133,161.483425 C5587.28821,165.857274 5580.20258,170.143646 5573.20442,174.342541 C5567.60589,177.841621 5562.09484,181.165746 5556.67127,184.314917 C5551.2477,187.464088 5547.13628,190.263352 5544.33702,192.712707 C5535.23941,200.060773 5527.62891,208.196133 5521.50552,217.118785 C5515.38214,226.041436 5510.39595,235.576427 5506.54696,245.723757 C5502.69797,255.871087 5499.72376,266.455801 5497.62431,277.477901 C5495.52486,288.5 5493.95028,299.78453 5492.90055,311.331492 C5494.65009,327.077348 5503.39779,335.825046 5519.14365,337.574586 L5519.14365,337.574586 L5642.48619,337.574586 Z M5895.33149,349.646409 C5898.83057,349.646409 5902.5046,349.558932 5906.35359,349.383978 C5910.20258,349.209024 5913.70166,348.771639 5916.85083,348.071823 C5931.89687,345.972376 5945.54328,340.198895 5957.79006,330.751381 C5970.03683,321.303867 5980.88398,310.194291 5990.33149,297.422652 C5999.77901,284.651013 6007.73941,270.917127 6014.21271,256.220994 C6020.686,241.524862 6025.49724,227.878453 6028.64641,215.281768 L6028.64641,215.281768 L6028.64641,214.756906 C6029.34622,208.108656 6029.95856,201.285451 6030.48343,194.287293 C6031.00829,187.289134 6031.27072,180.116022 6031.27072,172.767956 C6031.27072,151.773481 6028.12155,130.254144 6021.8232,108.209945 C6015.52486,86.1657459 6005.37753,67.0957643 5991.38122,51 C5986.4825,46.1012891 5980.27164,41.2025783 5972.74862,36.3038674 C5965.2256,31.4051565 5957.96501,27.2062615 5950.96685,23.7071823 C5943.96869,20.558011 5936.53315,18.7209945 5928.66022,18.1961326 C5920.78729,17.6712707 5912.65193,17.5837937 5904.25414,17.9337017 C5886.75875,18.6335175 5871.18785,23.4447514 5857.54144,32.3674033 C5843.89503,41.2900552 5832.26059,52.3121547 5822.63812,65.4337017 C5813.01565,78.5552486 5805.2302,92.9889503 5799.28177,108.734807 C5793.33333,124.480663 5789.30939,139.526703 5787.20994,153.872928 C5786.16022,160.871087 5785.28545,168.131676 5784.58564,175.654696 C5783.88582,183.177716 5783.53591,190.61326 5783.53591,197.961326 C5783.53591,217.906077 5786.33517,237.850829 5791.9337,257.79558 C5797.53223,277.740331 5806.45488,296.110497 5818.70166,312.906077 C5822.55064,318.854512 5827.44936,323.753223 5833.39779,327.60221 C5839.34622,331.451197 5845.64457,334.950276 5852.29282,338.099448 L5852.29282,338.099448 L5858.0663,341.248619 C5864.01473,344.39779 5870.13812,346.584715 5876.43646,347.809392 C5882.73481,349.03407 5889.03315,349.646409 5895.33149,349.646409 Z M5896.38122,303.458564 C5889.38306,301.709024 5882.73481,299.609576 5876.43646,297.160221 C5870.13812,294.710866 5864.01473,290.162063 5858.0663,283.513812 C5850.01842,274.066298 5844.06998,261.906998 5840.22099,247.035912 C5836.37201,232.164825 5834.44751,216.331492 5834.44751,199.535912 C5834.44751,187.98895 5835.32228,176.441989 5837.07182,164.895028 C5838.82136,153.348066 5841.44567,142.325967 5844.94475,131.828729 C5848.44383,121.331492 5852.55525,111.709024 5857.27901,102.961326 C5862.00276,94.213628 5867.51381,86.8655617 5873.81215,80.9171271 C5879.76059,75.6685083 5886.14641,71.5570902 5892.96961,68.5828729 C5899.79282,65.6086556 5906.52855,64.121547 5913.1768,64.121547 C5922.62431,64.121547 5931.72192,66.9208103 5940.46961,72.519337 C5949.21731,78.1178637 5956.56538,85.9907919 5962.51381,96.1381215 C5967.41252,103.836096 5970.82413,112.058932 5972.74862,120.80663 C5974.67311,129.554328 5976.33517,138.47698 5977.73481,147.574586 C5978.43462,152.123389 5978.95948,156.584715 5979.30939,160.958564 C5979.6593,165.332413 5979.83425,169.443831 5979.83425,173.292818 C5979.83425,179.241252 5979.57182,185.189687 5979.04696,191.138122 C5978.5221,197.086556 5977.90976,203.034991 5977.20994,208.983425 L5977.20994,208.983425 L5976.68508,212.132597 C5974.23573,223.32965 5970.82413,234.001842 5966.45028,244.149171 C5962.07643,254.296501 5956.56538,263.481584 5949.91713,271.70442 C5943.26888,279.927256 5935.5709,286.837937 5926.8232,292.436464 C5918.07551,298.034991 5907.92818,301.709024 5896.38122,303.458564 Z M6273.09392,337.574586 C6285.3407,337.574586 6296.10037,334.512891 6305.37293,328.389503 C6314.64549,322.266114 6322.78085,314.655617 6329.77901,305.558011 C6330.82873,304.158379 6331.87845,302.40884 6332.92818,300.309392 C6333.9779,298.209945 6334.50276,295.235727 6334.50276,291.38674 C6334.50276,285.088398 6332.14088,279.577348 6327.41713,274.853591 C6322.69337,270.129834 6316.65746,267.767956 6309.30939,267.767956 C6306.86004,267.767956 6304.41068,267.94291 6301.96133,268.292818 C6299.51197,268.642726 6297.23757,269.342541 6295.13812,270.392265 C6293.03867,271.441989 6291.20166,272.929098 6289.62707,274.853591 C6288.05249,276.778085 6286.4779,278.615101 6284.90331,280.364641 C6283.32873,282.11418 6281.49171,283.688766 6279.39227,285.088398 C6277.29282,286.488029 6274.66851,287.362799 6271.51934,287.712707 L6271.51934,287.712707 L6178.61878,287.712707 C6180.36832,276.865562 6183.34254,267.418048 6187.54144,259.370166 C6191.74033,251.322284 6196.72652,244.324125 6202.5,238.375691 C6208.27348,232.427256 6214.48435,227.178637 6221.1326,222.629834 C6227.78085,218.081031 6234.60405,213.707182 6241.60221,209.508287 C6250.34991,204.259669 6259.18508,198.398711 6268.10773,191.925414 C6277.03039,185.452118 6284.99079,178.191529 6291.98895,170.143646 C6298.98711,162.095764 6304.76059,153.173112 6309.30939,143.375691 C6313.8582,133.578269 6316.1326,122.906077 6316.1326,111.359116 C6316.1326,97.0128913 6313.94567,83.8913444 6309.57182,71.9944751 C6305.19797,60.0976059 6299.24954,49.8627993 6291.72652,41.2900552 C6284.2035,32.7173112 6275.36832,26.0690608 6265.22099,21.3453039 C6255.07366,16.621547 6244.22652,14.2596685 6232.67956,14.2596685 C6222.53223,14.2596685 6212.64733,15.8342541 6203.02486,18.9834254 C6193.40239,22.1325967 6184.21731,26.3314917 6175.46961,31.5801105 C6166.72192,36.8287293 6158.4116,42.8646409 6150.53867,49.6878453 C6142.66575,56.5110497 6135.40516,63.4217311 6128.75691,70.4198895 C6125.25783,76.0184162 6123.50829,81.6169429 6123.50829,87.2154696 C6123.50829,94.213628 6125.78269,99.8996317 6130.33149,104.273481 C6134.88029,108.64733 6140.65378,110.834254 6147.65193,110.834254 C6155.34991,110.834254 6162.17311,108.384899 6168.12155,103.486188 C6178.26888,92.9889503 6189.11602,83.8913444 6200.66298,76.1933702 C6212.20994,68.4953959 6224.80663,64.6464088 6238.45304,64.6464088 C6245.4512,66.3959484 6251.39963,71.2071823 6256.29834,79.0801105 C6261.19705,86.9530387 6263.64641,94.7384899 6263.64641,102.436464 C6263.64641,111.883978 6261.89687,120.106814 6258.39779,127.104972 C6254.89871,134.103131 6250.26243,140.48895 6244.48895,146.262431 C6238.71547,152.035912 6232.24217,157.109576 6225.06906,161.483425 C6217.89595,165.857274 6210.81031,170.143646 6203.81215,174.342541 C6198.21363,177.841621 6192.70258,181.165746 6187.27901,184.314917 C6181.85543,187.464088 6177.74401,190.263352 6174.94475,192.712707 C6165.84715,200.060773 6158.23665,208.196133 6152.11326,217.118785 C6145.98987,226.041436 6141.00368,235.576427 6137.1547,245.723757 C6133.30571,255.871087 6130.33149,266.455801 6128.23204,277.477901 C6126.1326,288.5 6124.55801,299.78453 6123.50829,311.331492 C6125.25783,327.077348 6134.00552,335.825046 6149.75138,337.574586 L6149.75138,337.574586 L6273.09392,337.574586 Z M6556.38122,333.900552 C6571.42726,333.900552 6585.16114,331.626151 6597.58287,327.077348 C6610.0046,322.528545 6620.6768,315.967772 6629.59945,307.395028 C6638.5221,298.822284 6645.43278,288.237569 6650.33149,275.640884 C6655.2302,263.044199 6657.67956,248.697974 6657.67956,232.60221 C6657.67956,217.906077 6655.2302,204.78453 6650.33149,193.237569 C6645.43278,181.690608 6638.60958,172.06814 6629.86188,164.370166 C6621.11418,156.672192 6610.87937,150.811234 6599.15746,146.787293 C6587.43554,142.763352 6574.75138,140.751381 6561.10497,140.751381 C6541.51013,140.751381 6523.13996,145.300184 6505.99448,154.39779 C6514.04236,133.403315 6524.71455,113.808471 6538.01105,95.6132597 C6551.30755,77.4180479 6565.65378,61.6721915 6581.04972,48.3756906 L6581.04972,48.3756906 L6581.57459,48.3756906 C6586.4733,41.7274401 6588.92265,35.4290976 6588.92265,29.480663 C6588.92265,23.5322284 6586.64825,18.4585635 6582.09945,14.2596685 C6577.55064,10.0607735 6571.77716,7.96132597 6564.77901,7.96132597 C6557.43094,7.96132597 6550.78269,10.4106814 6544.83425,15.3093923 C6530.83794,27.9060773 6517.54144,42.0773481 6504.94475,57.8232044 C6492.34807,73.5690608 6481.32597,90.1896869 6471.87845,107.685083 C6462.43094,125.180479 6454.9954,143.200737 6449.57182,161.745856 C6444.14825,180.290976 6441.43646,198.486188 6441.43646,216.331492 C6441.43646,231.027624 6444.06077,244.848987 6449.30939,257.79558 C6454.55801,270.742173 6461.73112,283.513812 6470.82873,296.110497 C6480.27624,308.707182 6492.6105,318.154696 6507.83149,324.453039 C6523.05249,330.751381 6539.23573,333.900552 6556.38122,333.900552 Z M6555.33149,287.187845 C6547.98343,287.187845 6540.72284,285.525783 6533.54972,282.201657 C6526.37661,278.877532 6519.99079,274.503683 6514.39227,269.08011 C6508.79374,263.656538 6504.15746,257.445672 6500.48343,250.447514 C6496.80939,243.449355 6494.44751,236.276243 6493.39779,228.928177 C6501.79558,216.6814 6512.03039,206.621547 6524.10221,198.748619 C6536.17403,190.875691 6548.8582,186.939227 6562.1547,186.939227 C6567.40331,186.939227 6572.56446,187.726519 6577.63812,189.301105 C6582.71179,190.875691 6587.26059,193.5 6591.28453,197.174033 C6595.30847,200.848066 6598.6326,205.746777 6601.25691,211.870166 C6603.88122,217.993554 6605.19337,225.429098 6605.19337,234.176796 C6605.19337,236.976059 6604.84346,241.349908 6604.14365,247.298343 C6603.44383,253.246777 6601.51934,259.195212 6598.37017,265.143646 C6595.22099,271.092081 6590.32228,276.253223 6583.67403,280.627072 C6577.02578,285.000921 6567.57827,287.187845 6555.33149,287.187845 Z'/%3E%3C/svg%3E") no-repeat 50% 0 / 100% auto !important;
    content: '';
    opacity: 1;
    display: block;
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
    /* aspect-ratio: 3008/359; */
    aspect-ratio: 6657/359;
    z-index: 0;
    pointer-events: none;
    backface-visibility: hidden;
    width: 60%;
    margin: 1.5% auto 1.0%;
}

.contacts-section::after {
    background: url("data: image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='133' height='303' viewBox='0 0 133 303' %3E%3Cpath fill='%23FFF' d='M39.2035498,95.0243401 C57.1109113,112.054117 79.8392453,122.172033 103.471965,128.104546 C110.432995,130.039061 119.177607,131.417402 125.307601,135.203812 C129.589081,137.849474 132.175329,143.151402 133,148.90137 L133,156.973527 C132.066851,163.396569 128.84792,169.085096 123.246133,170.863371 C93.3425626,180.3566 66.2696305,182.686079 41.6712655,205.733002 C17.5480656,228.334585 4.15618445,267.319092 0.909625047,299.909623 C0.843055375,300.611644 0.823391633,301.425203 0.825232153,302.271343 L0,302.271343 L0,0.00338424217 L1.12970317,0 C3.0788091,29.4592331 18.1673272,75.01736 39.2035498,95.0243401 Z' /%3E%3C/svg%3E") no-repeat 50% 0 / 100% auto !important;
        content: '';
        opacity: 1;
        display: block;
        width: 33px;
        height: 75px;
        aspect-ratio: 75/33;
        z-index: 0;
        pointer-events: none;
        backface-visibility: hidden;
        position: absolute;
        top: auto;
        bottom: 80px;
}

.bngl:after {

}

.bngl-l::after {
}
.bngl-r::after {}

.bngl-t::after {

}


.bg-road {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1223' height='1223' viewBox='0 0 1223 1223'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M113.409331,1221.84098 L273.194331,1221.85098 L440.036331,1221.86098 C448.483962,1221.85793 457.308523,1221.92779 466.271972,1222.00054 L49.2219708,1222.00038 C56.6514622,1221.94625 62.74652,1221.90374 65.413431,1221.90098 L65.413431,1221.90098 L113.409331,1221.84098 Z M1189.46156,1 C1187.94513,1.00563596 1186.41514,1.01148566 1184.88104,1.01747255 L1184.88104,1.01747255 L1182.78454,1.0257258 C1167.83189,1.08507343 1152.89921,1.15412193 1146.72766,1.16223863 L1146.22033,1.16278348 L1068.97033,1.20368348 L822.485331,1.20458348 L50.381731,1.17268348 C40.0302643,1.18548348 23.6670643,1.28918348 1.29213096,1.48378348 C1.1654848,16.9708407 1.09850847,29.6824488 1.09120196,39.6186077 L1.09199908,43.9512787 C1.09675495,47.9529319 1.11306557,51.4171335 1.14093096,54.3438835 C1.20583096,61.1501835 1.12873096,68.2231835 1.12743096,75.0276835 L1.12743096,75.0276835 L1.29213096,158.069983 C3.03642725,157.058665 4.72153558,156.087829 6.34745595,155.157475 L6.34745595,155.157475 L7.72660696,154.369943 C15.914543,149.704237 22.5370176,146.10925 27.594031,143.584983 C55.589431,129.671983 85.595331,120.239983 116.516331,115.630983 C186.545331,105.146983 258.024331,119.847983 318.230331,157.115983 C331.949331,165.545983 342.818331,174.660983 355.589331,184.144983 C407.466331,222.332983 475.783331,229.932983 534.786331,204.080983 C553.880331,195.698983 582.736331,176.620983 601.543331,165.031983 L601.543331,165.031983 L708.224331,99.3489835 C728.945331,86.5579835 757.445331,67.6926835 778.932331,58.1588835 C796.726331,50.2593835 815.530331,44.8655835 834.806331,42.1316835 C890.640331,34.0669835 947.388331,48.5501835 992.530331,82.3844835 C1037.25033,115.621983 1066.97033,165.231983 1075.18033,220.341983 C1088.32033,305.832983 1048.26033,390.742983 973.918331,434.970983 C942.074331,453.773983 913.755331,455.705983 890.183331,487.473983 C873.391331,510.337983 866.534331,539.008983 871.165331,566.994983 C874.551331,589.084983 885.223331,609.408983 901.485331,624.738983 C916.083331,638.424983 931.558331,644.402983 948.512331,653.909983 C977.548331,670.192983 1011.79033,685.261983 1038.47033,704.682983 C1095.66033,746.183983 1133.98033,808.740983 1144.96033,878.538983 C1156.10033,948.200983 1139.03033,1019.43098 1097.52033,1076.48098 C1093.08033,1082.54955 1088.38564,1088.40915 1083.67695,1094.25381 L1080.14657,1098.63754 C1077.79625,1101.56221 1075.45747,1104.49527 1073.16033,1107.46098 C1024.97033,1169.69098 958.857331,1208.18098 880.815331,1220.24098 L880.815331,1220.24098 L869.982331,1221.13098 C874.35546,1221.69324 878.987706,1221.91833 883.646228,1222.00046 L515.353322,1222.00091 C519.197704,1221.93419 522.983943,1221.84291 526.691331,1221.72098 C538.305331,1212.00098 547.847331,1202.85098 560.139331,1193.35098 C601.324331,1161.59098 648.090331,1137.82098 698.021331,1123.27098 C724.746331,1115.55098 752.173331,1110.51098 779.897331,1108.22098 C790.049912,1107.46614 800.766119,1107.03137 811.528542,1106.61134 L811.528542,1106.61134 L816.497213,1106.41742 C829.745702,1105.89715 842.943621,1105.32808 855.126331,1104.14098 C895.064331,1100.50098 932.554331,1083.31098 961.367331,1055.41098 C972.161331,1044.90098 977.875331,1036.72098 987.140331,1025.62098 C1010.86033,997.210983 1025.88033,971.688983 1029.31033,933.540983 C1032.85033,894.070983 1020.47033,854.822983 994.930331,824.522983 C986.880331,815.004983 977.640331,806.559983 967.439331,799.397983 C955.474331,790.957983 943.237331,785.366983 930.570331,778.372983 C908.448331,766.158983 884.574331,754.672983 862.783331,742.138983 C788.050331,699.745983 744.843331,617.726983 752.149331,532.126983 C756.474331,473.681983 783.980331,419.387983 828.549331,381.326983 C841.605331,370.157983 855.957331,360.596983 871.294331,352.850983 C883.941331,346.435983 897.074331,341.756983 909.346331,335.543983 C938.034331,321.019983 956.166331,291.985983 958.844331,259.916983 C961.079331,235.114983 953.206331,210.461983 937.011331,191.544983 C920.430331,172.142983 896.757331,160.204983 871.298331,158.406983 C868.192331,158.198983 862.992331,158.124983 859.892331,158.461983 C826.212331,161.153983 805.764331,178.221983 777.473331,195.665983 L777.473331,195.665983 L670.014331,261.818983 C650.529331,273.815983 626.037331,289.932983 606.336331,300.616983 C561.557331,325.161983 511.266331,337.904983 460.200331,337.646983 C400.957331,337.166983 343.190331,319.105983 294.226331,285.755983 C272.338331,270.762983 261.855331,258.904983 236.272331,247.217983 C162.814331,213.369983 75.804931,232.521983 23.352931,294.083983 C16.780631,301.754983 7.72293096,313.335983 1.67703096,321.535983 C1.17147802,325.976454 1.02120258,332.497035 1.00390725,339.227932 L1.00390725,339.227932 L1.00222519,340.913956 L1.00222519,340.913956 L1.00477654,342.421449 C1.02327607,348.951167 1.13338474,355.401712 1.13393096,360.080983 L1.13393096,360.080983 L1.14713096,430.953983 L1.15843096,662.700983 L1.16093096,1009.08098 L1.13233096,1121.34098 C1.13051438,1126.80675 1.07195469,1135.19863 1,1144.92341 L1.00033096,1.00098348 Z M1066.05033,1221.94098 L1149.77033,1221.99098 C1149.83703,1221.99098 1149.90958,1221.991 1149.98785,1221.99103 L1149.98785,1221.99103 L1150.30546,1221.9918 C1150.78858,1221.99315 1151.34439,1221.99612 1151.96278,1222.00019 L908.241,1222 L937.314331,1221.97098 L1066.05033,1221.94098 Z M1222.00031,25.0892335 L1222.00033,1222.00098 L1221.82408,1222.00097 C1221.86649,1221.39027 1221.88438,1219.04415 1221.88775,1215.72633 L1221.88775,1215.72633 L1221.8883,1214.84259 L1221.8883,1214.84259 L1221.88824,1213.91807 L1221.88761,1212.95575 C1221.88457,1209.68831 1221.87259,1205.8405 1221.85815,1201.909 L1221.85815,1201.909 L1221.85376,1200.72753 C1221.85193,1200.2422 1221.85008,1199.75636 1221.8482,1199.27093 L1221.84256,1197.81679 C1221.82179,1192.49626 1221.80066,1187.33743 1221.79532,1183.57281 L1221.79532,1183.57281 L1221.7944,1182.76192 L1221.7944,1182.76192 L1221.79462,1180.95392 C1221.79549,1180.2977 1221.79733,1179.72558 1221.80033,1179.25098 L1221.80033,1179.25098 L1221.77033,407.316983 L1221.77033,155.990983 L1221.78033,77.9709835 C1221.78437,72.4274165 1221.83054,62.5328314 1221.88032,52.2871819 L1221.88683,50.9491307 L1221.88683,50.9491307 L1221.89009,50.2792283 L1221.89754,48.7519112 C1221.89878,48.4974098 1221.90002,48.2429746 1221.90126,47.9886666 L1221.90126,47.9886666 L1221.90868,46.4648295 C1221.94764,38.4513863 1221.98435,30.6863407 1222.00031,25.0892335 Z'/%3E%3C/svg%3E") no-repeat 50% 0 / 100% auto !important;
    content: '';
    opacity: 1;
    display: block;
    width: 33px;
    height: 75px;
    aspect-ratio: 75/33;
    z-index: 0;
    pointer-events: none;
    backface-visibility: hidden;
    position: absolute;
    top: auto;
    bottom: 80px;
}

@media (max-width: 991.9px) {
    #footer-mita {
        padding: 0;
    }
    .contacts-footer {
        margin-top: 20px;
    }
}