#pokraska {
    --main-yellow: rgba(255, 224, 60, 1);
    --main-grey: rgba(243, 244, 242, 1);
    --main-dark: rgba(76, 80, 74, 1);
    --green-form: hsla(102, 78%, 16%, 1);
}

/* фикс для совпадающих стилей бутстрапа */

footer .row {
    display: block;
}

#pokraska * {
    font-family: "Montserrat", sans-serif;
}

#pokraska section.lenwood,
#pokraska section.technology,
#pokraska section.style,
#pokraska section.differences,
#pokraska section.colors,
#pokraska section.more-details {
    margin: 100px 0;
}

#pokraska section.advantages {
    margin-top: 100px;
}

@media (max-width: 500px) {

    #pokraska section.lenwood,
    #pokraska section.technology,
    #pokraska section.style,
    #pokraska section.differences,
    #pokraska section.advantages,
    #pokraska section.colors,
    #pokraska section.more-details {
        margin: 50px 0;
    }

    #pokraska section.advantages {
        margin-top: 50px;
    }
}

#pokraska h2.basic-title,
#pokraska .basic-title-subtitle {
    line-height: 1.2;
}

#pokraska h2.basic-title {
    font-size: 46px;
    font-weight: 900;
    text-transform: uppercase;
}

#pokraska .basic-title-subtitle {
    font-size: 16px;
}

#pokraska h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#pokraska h3 span {
    font-weight: 900;
    display: block;
}

#pokraska form.horizontal {
    /*  max-width: 600px; */
    max-width: 100%;
    display: grid;
    /* grid-auto-flow: column; */
    grid-auto-flow: row;
    gap: 10px;
}

@media (max-width: 700px) {
    #pokraska form.horizontal {
            gap: 0;
    }
}


/* #pokraska form.horizontal button {
    margin-left: -8px;
} */

#pokraska button.cta {
    background: var(--main-yellow);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    padding: 15px;
    text-transform: uppercase;
    text-align: center;
    min-width: 200px;
    color: rgba(76, 80, 74, 1);
    border: none;
    border-radius: 5px;
    max-height: 60px;
}

#pokraska button.cta:disabled {
    opacity: 20%;
}

#pokraska aside {
    display: none;
    margin-top: 1rem;
    max-width: 600px;
}


/* стрелки для слайдеров */
#pokraska .carousel-control-prev-icon,
#pokraska .carousel-control-next-icon {
    width: 80px;
}

#pokraska .carousel-control-prev-icon,
#pokraska .swiper-button-prev:after {
    background-image: url("data:image/svg+xml,%3Csvg width='81' height='8' viewBox='0 0 81 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.646446 3.64644C0.451187 3.8417 0.451187 4.15828 0.646446 4.35355L3.82843 7.53553C4.02369 7.73079 4.34027 7.73079 4.53554 7.53553C4.7308 7.34027 4.7308 7.02368 4.53554 6.82842L1.70711 3.99999L4.53554 1.17157C4.7308 0.976304 4.7308 0.659722 4.53554 0.464459C4.34027 0.269197 4.02369 0.269197 3.82843 0.464459L0.646446 3.64644ZM81 3.5L1 3.49999L1 4.49999L81 4.5L81 3.5Z' fill='%234C504A'/%3E%3C/svg%3E%0A");
}

#pokraska .carousel-control-next-icon,
#pokraska .swiper-button-next:after {
    background-image: url("data:image/svg+xml,%3Csvg width='81' height='8' viewBox='0 0 81 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80.3536 4.35355C80.5488 4.15829 80.5488 3.84171 80.3536 3.64645L77.1716 0.464466C76.9763 0.269204 76.6597 0.269204 76.4645 0.464466C76.2692 0.659728 76.2692 0.976311 76.4645 1.17157L79.2929 4L76.4645 6.82843C76.2692 7.02369 76.2692 7.34027 76.4645 7.53553C76.6597 7.7308 76.9763 7.7308 77.1716 7.53553L80.3536 4.35355ZM0 4.5H80V3.5H0V4.5Z' fill='%234C504A'/%3E%3C/svg%3E%0A");
}

#pokraska input {
    background-color: white;
    border: none;
    border-radius: 5px;
    min-height: 60px;
    min-width: 250px;
}

#pokraska .form-button-group-with-policy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#pokraska .form-button-group-with-policy .policy {
    font-size: 11px;
}

#pokraska .form-button-group-with-policy .policy a {
    text-decoration: underline;
}

#pokraska .green-cta {

    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 2rem;
    align-items: center;

    background: var(--green-form);
    background-size: cover;
    position: relative;
    padding: 2rem;
    border-radius: 5px;
    margin-top: 100px;
}

#pokraska .green-cta::before {
    content: '';
    background-image: url('../img/green-form-bg.jpg');
    opacity: 15%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#pokraska .green-cta-left {
    color: white;
}

#pokraska .green-cta-right {

    display: grid;
    grid-template-columns: auto auto;
    justify-content: end;
    grid-gap: 1rem;
    z-index: 1;
}

#pokraska .green-cta-right .link-mobile {
    display: none;
}

#pokraska .green-cta-right .link-desktop {
    display: block;
}

#pokraska .green-cta-title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.4;
    text-transform: uppercase;
}

body .footer__body,
body .breadcrumbs {
    background-color: white;
}

@media (max-width: 1100px) {
    #pokraska .green-cta {
        grid-template-columns: 1fr;
    }

    #pokraska .green-cta-right {
        justify-content: start;
    }
}

@media (max-width: 800px) {
    #pokraska .form-button-group-with-policy {
        grid-template-columns: 1fr;
    }

    #pokraska .green-cta-right .link-mobile {
        display: block;
    }

    #pokraska .green-cta-right .link-desktop {
        display: none;
    }
}

@media (min-width: 601px) and (max-width: 800px) {
    #pokraska .green-cta-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {

    #pokraska h2.basic-title {
        font-size: 24px;
    }

    #pokraska .basic-title-subtitle {
        font-size: 12px;
    }

    #pokraska h3 {
        font-size: 16px;
    }

    #pokraska form.horizontal {
        grid-auto-flow: row;
    }

    #pokraska form.horizontal button {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 600px) {

    #pokraska input,
    #pokraska button.cta {
        width: 100%;
        min-height: 50px;
        height: 50px;
    }

    #pokraska .green-cta {
        margin-left: -16px;
        margin-right: -16px;
        padding: 2rem 1rem;
    }

    #pokraska .green-cta-right {
        grid-template-columns: 1fr;
    }

    #pokraska .green-cta form {
        margin-top: 1rem;
    }

    #pokraska button.cta {
        display: block;
        margin: 1rem auto;
        font-size: 16px;
        padding: 10px;
    }

    #pokraska .carousel-control-prev-icon,
    #pokraska .carousel-control-next-icon {
        width: 60px;
    }
}

/* верхний главный блок */

.main-pokraska {
    min-height: 640px;
    position: relative;
    overflow: hidden;
}

.main-pokraska-content {
    max-width: 800px;
    color: white;
    padding: 4rem 0;
}

.main-pokraska h1 {
    font-weight: 900;
    font-size: 46px;
    line-height: 1.2;
    text-transform: uppercase;
}

.main-pokraska p,
.main-pokraska li {
    line-height: 1.4;
}

.main-pokraska p {
    font-size: 18px;
}

.main-pokraska li {
    font-size: 16px;
}

.main-pokraska h1,
.main-pokraska span {
    color: var(--main-yellow);
}

.main-pokraska ul {
    list-style: none;
    padding-left: 1rem;
}

.main-pokraska ul li {
    position: relative;
    padding-left: 40px;
    margin: 0.5rem 0;
}

.main-pokraska ul li::before {
    content: '';
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_42_2038)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10ZM14.0303 6.96967C14.3232 7.26256 14.3232 7.73744 14.0303 8.0303L9.0303 13.0303C8.7374 13.3232 8.2626 13.3232 7.96967 13.0303L5.96967 11.0303C5.67678 10.7374 5.67678 10.2626 5.96967 9.9697C6.26256 9.6768 6.73744 9.6768 7.03033 9.9697L8.5 11.4393L10.7348 9.2045L12.9697 6.96967C13.2626 6.67678 13.7374 6.67678 14.0303 6.96967Z' fill='%23FFE03C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_42_2038'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    left: 0;
}

.main-pokraska::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;

    background: linear-gradient(-90deg, rgba(21, 29, 40, 0) 0%, #0A0E15 65.1%);
    z-index: -1;
    width: 40%;
    height: 100%;

}

.main-pokraska::after {
    position: absolute;
    content: '';
    top: 0;

    background-size: 90%;
    background-repeat: no-repeat;
    background-image: url('../img/main-pokraska.jpg');
    background-position: 0 90%;
    width: 100%;
    height: 100%;
    z-index: -2;

    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

@media (min-width: 701px) and (max-width: 1000px) {
    .main-pokraska::after {
        width: 130%;
        background-size: 100%;
    }
}

@media (max-width: 700px) {
    #pokraska .main-pokraska form {
        margin: 0 auto;
    }

}

@media (min-width: 601px) and (max-width: 700px) {
    .main-pokraska::after {
        width: 180%;
        background-size: 100%;
        background-position: 200px 90%;
    }
}

@media (max-width: 600px) {

    .main-pokraska-content {
        padding: 3rem 0;
    }

    .main-pokraska::before {
        width: 100%;
    }

    .main-pokraska::after {
        width: 300%;
        background-size: 100%;
        background-position: 500px 90%;
    }

    .main-pokraska h1 {
        font-size: 24px;
    }

    .main-pokraska p,
    .main-pokraska li {
        font-size: 12px;
    }
}

/* блок соблюдаем технологию */

.technology {
    position: relative;
}

.technology::before {
    width: 150vw;
    height: 150vw;
    position: absolute;
    content: '';
    background-color: var(--main-grey);
    border-radius: 50%;
    z-index: -3;
    bottom: 0;
    left: -75vw;
    right: -75vw;
    margin: 0 auto;
}

.technology-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    gap: 20px;
    padding: 0;
}

.technology-steps li {
    position: relative;
    padding-left: 100px;
}

.technology-steps li .counter {
    font-size: 14px;
    line-height: 14px;
}

.technology-steps li::before {
    background-color: white;
    width: 80px;
    height: 80px;
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    border-radius: 50%;
}

.technology-steps li::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
}

.technology-steps li.tool::after {
    background-image: url("data:image/svg+xml,%3Csvg width='33' height='40' viewBox='0 0 33 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_47_2438)'%3E%3Cpath d='M10 21L14.5 24L15 20.5H10V21Z' fill='%23599C28'/%3E%3Cpath d='M6.5 12L7 15.5L13.5 16L15.5 14.5V12H6.5Z' fill='%23599C28'/%3E%3Cpath d='M23 15V12L32 12.5L31 18L28 21.5L24 24V20.5V16L23 15Z' fill='%23599C28'/%3E%3Cpath d='M5.94071 15.0082C5.86319 14.1161 5.7642 13.2765 5.72484 12.4333C5.68668 11.633 5.90254 11.441 6.71115 11.4374H7.13573C7.43985 7.84279 8.93185 4.87789 11.7358 2.64049C14.0101 0.822906 16.6256 -0.0250618 19.5499 0.0059469C25.4774 0.0691569 31.0506 4.84092 31.4632 11.4374H31.988C32.6105 11.4374 32.8539 11.6759 32.8527 12.2949C32.8538 14.5187 32.286 16.7058 31.2032 18.6481C29.7646 21.3174 27.463 23.4197 24.6747 24.6113C24.3634 24.7485 24.2752 24.9011 24.2764 25.2303C24.2883 28.9943 24.2883 32.7583 24.2764 36.5222C24.2764 38.4054 22.6532 40.0191 20.8094 40.0083C20.3097 40.0083 20.0103 39.7519 19.996 39.3214C19.9817 38.8908 20.2429 38.6273 20.7545 38.5784C22.0175 38.4591 22.8452 37.6016 22.8476 36.3529C22.8555 31.4726 22.8555 26.5927 22.8476 21.7132C22.8476 21.6417 22.8392 21.5689 22.8333 21.4687H15.7132V21.9112C15.7132 26.6722 15.7132 31.4332 15.7132 36.1943C15.7132 37.6111 16.461 38.434 17.8731 38.5795C18.3239 38.6273 18.5887 38.9206 18.5672 39.3405C18.5445 39.7352 18.2583 39.9928 17.823 40.0071C15.9816 40.0703 14.2928 38.4317 14.288 36.5485C14.2785 32.7845 14.2785 29.0205 14.288 25.2565C14.288 24.9155 14.2069 24.7473 13.8718 24.6042C11.9894 23.8039 10.3202 22.5746 8.99745 21.0143C8.92229 20.9162 8.82406 20.8383 8.7115 20.7873C8.59894 20.7363 8.47552 20.7139 8.35223 20.7221C6.314 20.7341 4.27578 20.7293 2.23755 20.7281C0.894638 20.7281 0.000159955 19.8348 -0.00341797 18.499C-0.00341797 18.0375 -0.00341797 17.5771 -0.00341797 17.1156C-0.00341797 16.5567 0.21861 16.0206 0.613823 15.6254C1.00904 15.2302 1.54506 15.0082 2.10398 15.0082C3.38249 14.9986 4.65623 15.0082 5.94071 15.0082ZM15.0525 11.4171C15.4103 10.0933 16.1688 9.13085 17.4771 8.76709C18.6974 8.41068 19.9956 8.42105 21.2101 8.79691C22.4576 9.19644 23.1935 10.1494 23.5131 11.4064H29.9295C29.691 6.30071 25.2687 1.24391 18.9345 1.46216C12.4096 1.68757 8.72433 7.14749 8.66112 11.4171H15.0525ZM23.5703 12.8817C23.5703 13.2956 23.5835 13.6665 23.5703 14.035C23.5537 14.1423 23.5742 14.2521 23.6284 14.3462C23.6826 14.4403 23.7673 14.5131 23.8685 14.5526C24.6222 14.9617 25.0063 15.6105 25.0039 16.4787C25.0039 17.3863 24.992 18.2939 25.0039 19.2015C25.0215 19.7564 24.8304 20.2977 24.4684 20.7186C24.3956 20.8056 24.2966 20.913 24.2955 21.0131C24.28 21.7192 24.2871 22.4264 24.2871 23.1468C27.8567 22.0615 31.6374 16.5336 31.3332 12.8817H23.5703ZM19.2864 20.0077C20.4015 20.0077 21.5166 20.0077 22.6317 20.0077C23.3091 20.0077 23.5668 19.743 23.5703 19.0536C23.5703 18.2355 23.5703 17.4173 23.5703 16.6004C23.5644 16.004 23.2913 15.7226 22.6961 15.7214C20.4214 15.7166 18.1466 15.7166 15.8718 15.7214C15.2755 15.7214 15.0072 16.0028 15.0024 16.6027C15.0024 17.4209 15.0024 18.239 15.0024 19.0572C15.0024 19.7418 15.2624 20.003 15.9422 20.0042C17.0597 20.0054 18.1712 20.003 19.2864 20.003V20.0077ZM13.5533 16.431H9.53414C7.13931 16.431 4.74488 16.431 2.35085 16.431C1.69609 16.431 1.4373 16.697 1.43014 17.3529C1.43014 17.6499 1.43014 17.9492 1.43014 18.245C1.43014 19.0536 1.66032 19.2874 2.45581 19.2874H13.124C13.2671 19.2874 13.4102 19.2743 13.5593 19.2671L13.5533 16.431ZM22.1404 14.2711C22.1404 13.6557 22.1404 13.0785 22.1404 12.5013C22.1404 12.3379 22.1404 12.1733 22.1308 12.0111C22.0294 10.989 21.3747 10.2114 20.355 10.0683C19.6636 9.97427 18.963 9.96906 18.2702 10.0528C17.266 10.172 16.5803 10.8614 16.4717 11.8656C16.3871 12.6527 16.455 13.4566 16.455 14.2711H22.1404ZM14.9845 12.8889H7.15362C7.26096 13.6044 7.36114 14.2962 7.4661 15.0034C9.61881 15.0034 11.7131 15.0034 13.8086 15.0034C13.9089 14.9985 14.0056 14.964 14.0864 14.9044C14.381 14.6862 14.6673 14.4536 14.9881 14.202L14.9845 12.8889ZM14.2606 20.7603H10.7494C11.7661 21.7719 12.9567 22.592 14.2642 23.1814L14.2606 20.7603Z' fill='%234C504A'/%3E%3Cpath d='M17.1428 27.8446C17.1428 27.3544 17.1428 26.8643 17.1428 26.3741C17.1828 25.8352 17.4246 25.3313 17.8199 24.9628C18.2152 24.5944 18.7349 24.3886 19.2753 24.3865C19.8156 24.3844 20.3369 24.5861 20.735 24.9515C21.1332 25.3168 21.3789 25.8189 21.4232 26.3574C21.4343 27.3529 21.4343 28.3467 21.4232 29.339C21.383 29.8779 21.141 30.3817 20.7456 30.75C20.3502 31.1184 19.8305 31.324 19.2902 31.326C18.7498 31.3279 18.2286 31.1261 17.8305 30.7606C17.4325 30.3952 17.1869 29.8931 17.1428 29.3545C17.1368 28.8548 17.1428 28.3491 17.1428 27.8446ZM19.9992 27.9031C19.9992 27.457 20.0063 27.0122 19.9992 26.5661C19.9896 26.0545 19.6903 25.7134 19.274 25.7217C18.8578 25.7301 18.5787 26.0592 18.574 26.5435C18.5644 27.4181 18.5644 28.2927 18.574 29.1673C18.574 29.6515 18.8733 29.9818 19.274 29.9902C19.6748 29.9985 19.9896 29.6574 19.9992 29.1458C20.0063 28.7355 19.9992 28.3193 19.9992 27.9031Z' fill='%234C504A'/%3E%3Cpath d='M19.3003 4.28874C19.1577 4.29229 19.0173 4.25315 18.8971 4.17635C18.777 4.09954 18.6825 3.98856 18.6258 3.85767C18.5691 3.72677 18.5529 3.58193 18.5791 3.44173C18.6053 3.30153 18.6729 3.17237 18.7731 3.07083C18.8732 2.96929 19.0015 2.9 19.1413 2.87186C19.2811 2.84371 19.4262 2.858 19.5578 2.91288C19.6895 2.96777 19.8017 3.06075 19.8802 3.17988C19.9586 3.29902 19.9996 3.43887 19.998 3.5815C19.9996 3.67401 19.9827 3.7659 19.9483 3.8518C19.914 3.9377 19.8628 4.01587 19.7978 4.08174C19.7328 4.1476 19.6553 4.19984 19.5699 4.23539C19.4845 4.27093 19.3928 4.28907 19.3003 4.28874Z' fill='%234C504A'/%3E%3Cpath d='M15.0319 4.2923C15.1745 4.299 15.3118 4.34818 15.4262 4.43351C15.5405 4.51884 15.6268 4.63641 15.6739 4.77114C15.7209 4.90587 15.7266 5.05158 15.6902 5.18957C15.6538 5.32756 15.577 5.45152 15.4696 5.54552C15.3623 5.63951 15.2292 5.69926 15.0876 5.71708C14.9461 5.7349 14.8024 5.70997 14.6751 5.64551C14.5477 5.58104 14.4426 5.47998 14.3732 5.35531C14.3037 5.23064 14.2731 5.08805 14.2853 4.94587C14.2908 4.8537 14.3145 4.76352 14.3551 4.6806C14.3957 4.59768 14.4524 4.52366 14.5219 4.46284C14.5913 4.40202 14.6722 4.35563 14.7598 4.32635C14.8473 4.29707 14.9399 4.2855 15.0319 4.2923Z' fill='%234C504A'/%3E%3Cpath d='M23.6047 4.2923C23.7472 4.299 23.8845 4.34818 23.9989 4.43351C24.1133 4.51884 24.1996 4.63641 24.2466 4.77114C24.2937 4.90587 24.2994 5.05158 24.263 5.18957C24.2266 5.32756 24.1498 5.45152 24.0424 5.54552C23.935 5.63951 23.802 5.69926 23.6604 5.71708C23.5188 5.7349 23.3751 5.70997 23.2478 5.64551C23.1205 5.58104 23.0154 5.47998 22.9459 5.35531C22.8765 5.23064 22.8459 5.08805 22.8581 4.94587C22.8635 4.8537 22.8872 4.76352 22.9279 4.6806C22.9685 4.59768 23.0251 4.52366 23.0946 4.46284C23.1641 4.40202 23.245 4.35563 23.3325 4.32635C23.4201 4.29707 23.5126 4.2855 23.6047 4.2923Z' fill='%234C504A'/%3E%3Cpath d='M12.8553 7.85233C12.8582 7.99499 12.8183 8.13524 12.7408 8.25506C12.6633 8.37488 12.5518 8.46881 12.4206 8.52477C12.2893 8.58074 12.1443 8.59618 12.0042 8.56913C11.8641 8.54208 11.7353 8.47376 11.6343 8.37295C11.5334 8.27214 11.4648 8.14344 11.4375 8.00339C11.4102 7.86334 11.4254 7.71833 11.4812 7.58698C11.5369 7.45563 11.6307 7.34394 11.7503 7.26627C11.87 7.18859 12.0102 7.14847 12.1529 7.15106C12.2452 7.15026 12.3369 7.16785 12.4224 7.2028C12.5079 7.23775 12.5856 7.28935 12.6509 7.35462C12.7163 7.41988 12.7681 7.49749 12.8031 7.58294C12.8382 7.66839 12.856 7.75996 12.8553 7.85233Z' fill='%234C504A'/%3E%3Cpath d='M27.1396 7.87146C27.138 8.01411 27.0938 8.15303 27.0127 8.27038C26.9316 8.38773 26.8172 8.47816 26.6843 8.53005C26.5515 8.58194 26.4061 8.59292 26.2669 8.56158C26.1277 8.53025 26.0011 8.45803 25.9033 8.3542C25.8054 8.25037 25.7409 8.11967 25.7179 7.97888C25.6949 7.83808 25.7145 7.69363 25.7741 7.56405C25.8338 7.43448 25.9309 7.32571 26.0529 7.2517C26.1748 7.1777 26.3161 7.14184 26.4586 7.14872C26.5509 7.15103 26.6419 7.17161 26.7262 7.20926C26.8105 7.24692 26.8865 7.30091 26.9498 7.36811C27.0131 7.43531 27.0625 7.5144 27.0951 7.60079C27.1277 7.68719 27.1428 7.77918 27.1396 7.87146Z' fill='%234C504A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_47_2438'%3E%3Crect width='32.8525' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.technology-steps li.brush::after {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_47_2494)'%3E%3Cpath d='M11.5 32H10V37.5L12.5 39.5L29.5 39L31 37.5V33H30.5L28.6875 34L28.5 36L27.5 37L25 36.5L23.5 35.5L23 33.5L20.5 33L20 31.5L19 29.5H17L16.5 31L15.5 36.5L14 37L12.5 36.5V34L11.5 32Z' fill='%23599C28'/%3E%3Cpath d='M33 23.75C33 21.6788 31.3212 20 29.25 20H23L24.0037 3.94751C24.1287 1.94626 22.655 0.0862582 20.6513 0.00375816C18.5487 -0.0837418 16.855 1.66501 16.9838 3.74376L18 20H11.75C9.67875 20 8 21.6788 8 23.75V26.25C8 26.94 8.56 27.5 9.25 27.5V36.25C9.25 38.3213 10.9288 40 13 40H28C30.0712 40 31.75 38.3213 31.75 36.25V27.5C32.44 27.5 33 26.94 33 26.25V23.75ZM14.6725 37.465C15.9013 37.2625 16.75 36.105 16.75 34.8588V31.25C16.75 30.5613 17.3112 30 18 30C18.69 30 19.25 30.5613 19.25 31.25C19.25 32.6275 20.3712 33.7488 21.7487 33.75C22.3912 33.75 22.9675 34.205 22.9938 34.8475C23.0525 36.2813 24.0225 37.5 25.4525 37.5H26.7925C28.1987 37.5 29.1625 36.3225 29.2525 34.9188C29.295 34.2675 29.8375 33.75 30.5 33.75V36.25C30.5 37.6313 29.3813 38.75 28 38.75H13C11.6188 38.75 10.5 37.6313 10.5 36.25V32.5C11.1888 32.5 11.75 33.0613 11.75 33.75V35C11.75 36.5175 13.1075 37.7225 14.6725 37.465ZM30.5 32.5C29.1187 32.5 28 33.6188 28 35C28 35.69 27.44 36.25 26.75 36.25H25.5C24.81 36.25 24.25 35.755 24.25 35C24.25 33.6438 23.1038 32.5 21.75 32.5C21.06 32.5 20.5 31.94 20.5 31.25C20.5 29.8688 19.38 28.75 18 28.75C16.62 28.75 15.5 29.8688 15.5 31.25V35C15.5 35.69 14.94 36.25 14.25 36.25C13.56 36.25 13 35.69 13 35V33.75C13 32.37 11.8812 31.25 10.5 31.25V27.5H30.5V32.5ZM31.75 26.25H9.25V23.75C9.25 22.3713 10.3712 21.25 11.75 21.25H19.33L18.2313 3.66501C18.1913 3.03251 18.4088 2.42876 18.8438 1.96751C19.2775 1.50501 19.8663 1.25001 20.5 1.25001C21.1337 1.25001 21.7225 1.50501 22.1563 1.96626C22.59 2.42876 22.8075 3.03126 22.7688 3.66376L21.67 21.25H29.25C30.6287 21.25 31.75 22.3713 31.75 23.75V26.25ZM21.75 3.75001C21.75 4.44001 21.19 5.00001 20.5 5.00001C19.81 5.00001 19.25 4.44001 19.25 3.75001C19.25 3.06001 19.81 2.50001 20.5 2.50001C21.19 2.50001 21.75 3.06001 21.75 3.75001Z' fill='%234C504A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_47_2494'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.technology-steps li.clock::after {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='37' viewBox='0 0 40 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_47_2452)'%3E%3Cpath d='M16.5 14.5L16 17.5L13.5 20L10 20.5L8.5 20L5.5 18V13L11 6.5L16.5 14.5Z' fill='%23599C28'/%3E%3Cpath d='M40 22.0321C39.8956 22.6584 39.8298 23.2846 39.6868 23.9046C38.2799 30.1409 34.5339 34.3451 28.4354 36.2102C20.0574 38.7674 11.2597 34.0184 8.57735 25.6769C8.48446 25.3898 8.35712 25.3042 8.05548 25.3084C6.64958 25.3262 5.24367 25.3178 3.83777 25.3157C3.27519 25.3157 2.93076 25.0026 2.93911 24.5204C2.94746 24.0382 3.28563 23.7564 3.82837 23.7553C5.21966 23.7553 6.61201 23.7553 8.04609 23.7553C7.98138 23.1803 7.84361 22.6292 7.87597 22.0854C7.92606 21.2233 7.53153 20.7797 6.84371 20.2891C3.86699 18.163 3.32738 14.0528 5.57767 11.1763C7.02115 9.33201 8.48759 7.50444 9.94673 5.67164C10.3642 5.14978 10.8965 5.14247 11.3234 5.67164C11.9977 6.49932 12.6552 7.34161 13.3201 8.1766C13.3921 8.26636 13.4683 8.35299 13.5528 8.45319C14.6508 7.53992 15.8094 6.73521 17.114 6.20081C18.3937 5.67895 19.7234 5.2698 21.0802 4.79282V1.55829C20.4394 1.55829 19.7954 1.55829 19.1514 1.55829C18.6389 1.55203 18.3164 1.20447 18.3477 0.715999C18.377 0.2745 18.6963 0 19.2005 0C20.892 0 22.5846 0 24.2782 0C25.7102 0 27.1422 0 28.5742 0C29.1441 0 29.4771 0.29955 29.4697 0.794279C29.4624 1.27126 29.1337 1.55829 28.5857 1.56038C27.9772 1.56038 27.3687 1.56038 26.7393 1.56038V4.89824C27.3739 5.06419 28.0263 5.21135 28.6661 5.40549C29.9604 5.79775 31.198 6.3574 32.3473 7.07024C32.6604 7.26229 32.8389 7.53679 32.77 7.91567C32.7053 8.27262 32.4757 8.51999 32.1208 8.54817C31.8909 8.55455 31.664 8.49439 31.4674 8.37491C30.0007 7.47805 28.3836 6.85427 26.6945 6.53377C22.2718 5.73427 18.2924 6.72581 14.7562 9.5084C14.6853 9.56372 14.608 9.61277 14.5214 9.67227L15.6695 11.1147C21.2096 6.50767 28.2882 7.78624 32.0916 11.1199C36.4314 14.9254 37.7883 20.8266 35.4576 25.9681C34.3826 28.3665 32.5875 30.3709 30.3216 31.7029C28.0557 33.035 25.4314 33.6286 22.8128 33.4015C16.4721 32.8452 11.6125 27.661 11.243 21.5865L9.3685 21.4936C9.47809 22.2691 9.52088 23.0477 9.70458 23.7898C11.122 29.5408 14.6644 33.3149 20.3945 34.8429C28.1807 36.9199 36.3031 31.8902 38.0503 24.0246C38.8853 20.2369 38.3164 16.6694 36.3657 13.3201C36.326 13.2533 36.2843 13.1876 36.2488 13.1176C36.04 12.7001 36.1611 12.2492 36.541 12.0332C36.6278 11.9795 36.7246 11.9442 36.8255 11.9293C36.9264 11.9145 37.0293 11.9206 37.1278 11.9471C37.2263 11.9736 37.3183 12.02 37.3982 12.0835C37.478 12.1469 37.544 12.2261 37.5921 12.316C38.0544 13.1293 38.4756 13.9654 38.8539 14.821C39.4424 16.2252 39.8035 17.7141 39.9238 19.2318C39.9401 19.3335 39.9645 19.4336 39.9968 19.5314L40 22.0321ZM12.8326 21.1972C13.152 27.8708 18.7537 31.7232 23.1259 31.7785C23.1259 31.4831 23.1259 31.1857 23.1259 30.8893C23.1353 30.4081 23.4391 30.0877 23.8889 30.0804C24.3565 30.0731 24.6759 30.3935 24.6853 30.8966C24.6853 31.193 24.6853 31.4894 24.6853 31.7858C30.0219 31.6282 34.7698 26.825 34.9034 21.5572C34.607 21.5572 34.3095 21.5625 34.0131 21.5572C33.5319 21.5479 33.2105 21.2441 33.2021 20.7953C33.1938 20.3277 33.5153 20.0073 34.0162 19.9979C34.3127 19.9979 34.6091 19.9979 34.9065 19.9979C34.7552 14.6665 29.9551 9.91754 24.6853 9.77664C24.6853 10.0741 24.6853 10.3705 24.6853 10.6669C24.6748 11.1638 24.3523 11.4894 23.8858 11.4811C23.4401 11.4727 23.1343 11.1502 23.1259 10.668C23.1197 10.3716 23.1259 10.0751 23.1259 9.75681C22.9871 9.75681 22.8859 9.74846 22.7867 9.75681C20.4801 9.98539 18.4552 10.8705 16.6851 12.3661C16.4763 12.5384 16.5932 12.6845 16.6496 12.8473C17.5194 15.3585 17.0671 17.6022 15.2927 19.5783C14.6195 20.3256 13.772 20.8277 12.8326 21.1972ZM10.6648 7.36249C10.6033 7.41482 10.5451 7.47095 10.4905 7.53053C9.27561 9.05647 8.0534 10.5761 6.85311 12.1136C6.44219 12.6201 6.14004 13.206 5.9655 13.8345C5.79095 14.463 5.74775 15.1207 5.8386 15.7666C6.18721 18.5221 8.84037 20.454 11.5541 19.9113C15.0798 19.1974 16.6746 15.1268 14.5214 12.2409C13.2825 10.5866 11.9601 8.99593 10.6648 7.36249ZM22.6771 1.57917V4.6801H25.1351V1.57917H22.6771Z' fill='%234C504A'/%3E%3Cpath d='M3.77107 27.5013C4.72086 27.5013 5.67066 27.5013 6.62045 27.5013C7.1632 27.5013 7.49511 27.7988 7.49824 28.2737C7.50137 28.7486 7.17155 29.0607 6.63507 29.0607C4.70973 29.0607 2.78439 29.0607 0.859051 29.0607C0.32466 29.0607 -0.00515763 28.7475 6.10278e-05 28.2685C0.00632342 27.8061 0.331971 27.5034 0.844443 27.5013C1.81929 27.4982 2.79309 27.5013 3.77107 27.5013Z' fill='%234C504A'/%3E%3Cpath d='M6.13296 32.8129C5.3512 32.8129 4.56736 32.8129 3.78978 32.8129C3.28357 32.8129 2.95479 32.4998 2.94644 32.0416C2.93809 31.5834 3.27418 31.2556 3.77308 31.2546C5.36025 31.2504 6.94812 31.2504 8.53668 31.2546C9.04706 31.2546 9.37166 31.5677 9.37793 32.0259C9.37793 32.506 9.05124 32.8118 8.51476 32.8139C7.7163 32.816 6.92202 32.8129 6.13296 32.8129Z' fill='%234C504A'/%3E%3Cpath d='M34.7314 9.17755C34.9411 9.17851 35.1423 9.2607 35.2928 9.40686C35.4432 9.55301 35.5312 9.75177 35.5382 9.9614C35.533 10.1713 35.4477 10.3712 35.2998 10.5202C35.152 10.6693 34.9527 10.7561 34.7429 10.763C34.54 10.7583 34.3466 10.6758 34.2027 10.5327C34.0588 10.3895 33.9753 10.1966 33.9695 9.99375C33.965 9.88991 33.9813 9.78622 34.0173 9.68873C34.0533 9.59124 34.1084 9.5019 34.1793 9.42592C34.2503 9.34995 34.3356 9.28885 34.4304 9.24621C34.5252 9.20357 34.6275 9.18023 34.7314 9.17755Z' fill='%234C504A'/%3E%3Cpath d='M21.2148 20.7693C21.2545 18.9354 23.0591 17.66 24.7875 18.2852C25.0829 18.3896 25.2447 18.3384 25.4503 18.1265C26.2853 17.2686 27.1359 16.4263 27.9887 15.585C28.1179 15.4405 28.2786 15.3277 28.4583 15.2552C28.6196 15.1943 28.7971 15.1923 28.9596 15.2496C29.1222 15.3069 29.2592 15.4198 29.3466 15.5683C29.4393 15.7042 29.4858 15.8663 29.479 16.0307C29.4723 16.195 29.4126 16.3528 29.309 16.4806C29.2278 16.582 29.1392 16.6772 29.0439 16.7655C28.2089 17.6005 27.3739 18.447 26.5274 19.2705C26.3344 19.4594 26.2999 19.6076 26.397 19.8696C26.5138 20.1998 26.564 20.5499 26.5448 20.8997C26.5256 21.2495 26.4374 21.592 26.2852 21.9075C26.133 22.223 25.9199 22.5053 25.6581 22.738C25.3963 22.9707 25.091 23.1494 24.7599 23.2636C24.4287 23.3778 24.0782 23.4253 23.7286 23.4034C23.379 23.3815 23.0372 23.2906 22.7229 23.1359C22.4086 22.9813 22.128 22.766 21.8973 22.5024C21.6666 22.2388 21.4903 21.9321 21.3787 21.6001C21.3077 21.3266 21.253 21.0492 21.2148 20.7693ZM23.9119 19.6932C23.6967 19.692 23.486 19.7545 23.3063 19.8728C23.1266 19.9911 22.986 20.16 22.9022 20.3582C22.8183 20.5563 22.795 20.7749 22.8352 20.9862C22.8753 21.1976 22.9772 21.3923 23.1279 21.5459C23.2785 21.6995 23.4713 21.805 23.6819 21.8492C23.8924 21.8934 24.1114 21.8743 24.3111 21.7942C24.5108 21.7142 24.6823 21.5768 24.8041 21.3994C24.9258 21.222 24.9924 21.0126 24.9952 20.7974C24.9919 20.5092 24.8773 20.2334 24.6754 20.0276C24.4735 19.8219 24.2 19.702 23.9119 19.6932Z' fill='%234C504A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_47_2452'%3E%3Crect width='40' height='36.9001' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.technology-steps li.bucket::after {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.5536 18.2358L17.3428 4.38269L17.0518 4.59474V4.24089C17.0518 1.9084 15.0841 0 12.6792 0C10.2743 0 8.30663 1.9084 8.30663 4.24089V13.0765L2.25745 18.9435C0.580849 20.5696 0.580849 23.1844 2.25745 24.8105L10.4929 32.798C11.295 33.6462 12.4606 34 13.5537 34C14.6468 34 15.74 33.5759 16.6145 32.798L27.0362 22.6198H36L31.555 18.2371L31.5536 18.2358ZM9.76324 4.24089C9.76324 2.68634 11.075 1.41407 12.6778 1.41407C14.2806 1.41407 15.5924 2.68634 15.5924 4.24089V6.00748L9.76187 11.6624L9.76324 4.24089ZM26.4514 21.2044L15.52 31.8067C15.0103 32.301 14.2806 32.5846 13.4799 32.5846C12.7516 32.5846 12.0219 32.3023 11.5123 31.8067L3.27681 23.8192C2.18367 22.759 2.18367 20.9924 3.27681 19.9322L15.5924 8.05769V16.9636H17.0504V6.64362L17.269 6.43157L32.5006 21.2044H26.4514Z' fill='%234C504A'/%3E%3Cpath d='M38.8598 34.8197C38.4445 31.0398 34.4299 26 34.4299 26C34.4299 26 30.3453 31.1094 30 34.8893C30 35.0993 30 35.2397 30 35.4497C30 37.9696 32.0079 40 34.5 40C36.9921 40 39 37.9696 39 35.4497C38.9312 35.2397 38.9312 35.0297 38.8611 34.8197H38.8598Z' fill='%23599C28'/%3E%3Cpath d='M38.8598 34.8197C38.4445 31.0398 34.4299 26 34.4299 26C34.4299 26 30.3453 31.1094 30 34.8893C30 35.0993 30 35.2397 30 35.4497C30 37.9696 32.0079 40 34.5 40C36.9921 40 39 37.9696 39 35.4497C38.9312 35.2397 38.9312 35.0297 38.8611 34.8197H38.8598ZM34.4299 38.5996C32.6997 38.5996 31.3148 37.1992 31.3148 35.4497C31.3148 35.3093 31.3148 35.2397 31.3148 35.0993C31.5225 32.9993 33.1151 30.2694 34.3611 28.3795C35.6072 30.1999 37.1997 32.9993 37.4762 35.0297C37.4762 35.1701 37.4762 35.3093 37.4762 35.4497C37.545 37.1992 36.1614 38.5996 34.4299 38.5996Z' fill='%234C504A'/%3E%3C/svg%3E%0A");
}

.technology-steps li.package::after {
    background-image: url("data:image/svg+xml,%3Csvg width='35' height='40' viewBox='0 0 35 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_47_2488)'%3E%3Cpath d='M7.5 19L10 20.5V16.5L15.5 7L16.5 5L19 3L22 1.5L21.5 1L20.5 0.5H19L17 1.5L14.5 3.5L7.5 15.5V19Z' fill='%23599C28'/%3E%3Cpath d='M34.4041 19.614C34.4041 22.7244 34.3965 25.8349 34.4139 28.9453C34.4139 29.3438 34.2745 29.5604 33.9435 29.752C28.1117 33.1226 22.2825 36.4998 16.4557 39.8835C16.3453 39.9592 16.2146 39.9998 16.0807 39.9998C15.9468 39.9998 15.816 39.9592 15.7056 39.8835C10.625 36.915 5.54041 33.9515 0.451814 30.9931C0.182905 30.8364 0.0871004 30.6415 0.0860117 30.3345C0.0664151 24.1412 0.0377417 17.9472 0 11.7525C0 11.2985 0.138267 11.0438 0.532377 10.8195C5.30525 8.10427 10.0701 5.37562 14.827 2.63354C15.465 2.26447 16.0039 1.72556 16.5973 1.27702C17.5216 0.576982 18.5362 0.0881547 19.7153 0.0108568C20.3348 -0.0305138 20.9379 0.0435182 21.4834 0.358153C22.3173 0.839359 23.1523 1.31948 23.9667 1.83226C24.8921 2.41362 25.3232 3.32596 25.4974 4.36349C25.5093 4.48167 25.551 4.5949 25.6186 4.69257C25.6862 4.79025 25.7775 4.86919 25.8839 4.92199C28.5283 6.44073 31.1663 7.97036 33.8162 9.48256C34.1874 9.7003 34.3431 9.90498 34.3387 10.3644C34.3083 13.4465 34.3224 16.5308 34.3224 19.6184L34.4041 19.614ZM16.6495 38.8383C16.7442 38.7915 16.803 38.7654 16.8575 38.7295C22.3634 35.5454 27.87 32.362 33.3774 29.1794C33.5865 29.0585 33.6409 28.9148 33.6398 28.6884C33.6093 22.8878 33.5821 17.0871 33.5582 11.2865C33.5582 11.1592 33.5451 11.0318 33.5364 10.8685C33.384 10.9501 33.2871 10.998 33.1934 11.0525C27.7608 14.1966 22.3264 17.339 16.8901 20.4795C16.7768 20.5302 16.6825 20.6154 16.6207 20.723C16.5589 20.8306 16.5328 20.955 16.5461 21.0783C16.5824 26.8659 16.6114 32.653 16.6332 38.4399C16.6343 38.5618 16.643 38.6783 16.6495 38.8383ZM7.34765 18.57C7.34765 17.7415 7.33241 16.9848 7.35527 16.2282C7.36507 15.9266 7.2562 15.7698 7.00253 15.6239C5.08751 14.5211 3.18119 13.4041 1.27052 12.2925C1.18342 12.2413 1.08653 12.2065 0.962416 12.1499C0.953706 12.2838 0.942821 12.3752 0.943909 12.4678C0.967861 18.2669 0.99036 24.0668 1.01141 29.8674C1.01141 30.194 1.13334 30.3443 1.39463 30.4967C5.86992 33.1016 10.3416 35.7145 14.8096 38.3353C15.1362 38.5237 15.4628 38.7077 15.8406 38.9265C15.8406 38.1546 15.8406 37.4524 15.8406 36.7491C15.8232 31.5872 15.8076 26.4257 15.7938 21.2645C15.7938 20.9172 15.6958 20.7049 15.3779 20.5242C13.8222 19.6391 12.2827 18.7256 10.7379 17.8231C10.629 17.76 10.5136 17.7023 10.3612 17.6195C10.3612 18.3707 10.3906 19.0512 10.3503 19.7273C10.3231 20.1791 10.4592 20.4327 10.875 20.6352C11.7253 21.05 12.1989 21.7795 12.3579 22.7038C12.4428 23.2013 12.3219 23.6629 11.893 23.9721C11.4902 24.2617 11.0699 24.1681 10.6693 23.934C9.02969 22.9781 7.38358 22.032 5.7527 21.0609C4.99932 20.6113 4.56819 19.9123 4.43646 19.0512C4.36352 18.5732 4.47674 18.1171 4.89807 17.8198C5.3194 17.5226 5.74508 17.6217 6.1577 17.8677C6.52895 18.0866 6.90128 18.3065 7.34765 18.57ZM33.1325 9.91151L25.6128 5.53058C25.5874 5.62356 25.5681 5.71812 25.5551 5.81364C25.4843 7.67423 24.8627 9.37043 23.9689 10.9719C22.9324 12.8281 21.5737 14.3948 19.699 15.4563C18.1563 16.3272 16.6158 16.5112 15.0622 15.4737C14.7356 15.256 14.385 15.0752 14.0388 14.8869C13.3736 14.5243 12.6986 14.176 12.2806 13.4487L10.4744 16.5722C10.6105 16.6604 10.7194 16.7355 10.8337 16.803C12.4667 17.7665 14.1118 18.7202 15.7328 19.7C16.0322 19.8808 16.2391 19.8666 16.5309 19.6935C20.9895 17.0552 25.4531 14.4242 29.9219 11.8004L33.1325 9.91151ZM24.732 5.54038C24.7027 5.26493 24.6787 4.92743 24.6308 4.59211C24.3826 2.8393 23.0663 1.84206 21.3462 2.17629C20.7638 2.30165 20.2061 2.52236 19.6957 2.82951C18.0975 3.76253 16.925 5.13538 16.0246 6.7227C14.9664 8.58765 14.2653 10.5658 14.5189 12.7672C14.6104 13.5685 14.8564 14.3131 15.4911 14.8531C16.4089 15.6337 17.4399 15.5455 18.4807 15.158C20.0049 14.5886 21.1567 13.5249 22.1442 12.2773C23.6814 10.3198 24.6068 8.11842 24.7266 5.54038H24.732ZM13.5663 4.41683L13.5097 4.36349L1.30427 11.4041L7.53382 14.9772L13.5663 4.41683ZM21.3103 1.24L21.3353 1.10065C20.8998 0.991778 20.4643 0.816496 20.0289 0.789278C18.8705 0.715246 17.9113 1.26504 17.0033 1.91282C15.6425 2.87523 14.6877 4.19909 13.8614 5.60678C12.0019 8.776 10.1848 11.9681 8.35144 15.1514C8.33835 15.193 8.33138 15.2363 8.33075 15.2799L9.68074 16.0714C9.76784 15.9397 9.8484 15.833 9.91372 15.7176C11.6963 12.6148 13.4774 9.51123 15.2571 6.40698C15.8953 5.26754 16.7029 4.23163 17.6522 3.33466C18.705 2.3483 19.8775 1.56226 21.3103 1.23456V1.24ZM5.26823 18.4165C5.14194 19.2199 5.45549 19.9014 6.1 20.2934C6.69008 20.6516 7.29213 20.9912 7.88765 21.3396C8.89361 21.9264 9.89631 22.5187 10.9055 23.0979C11.034 23.1719 11.2006 23.1795 11.3486 23.2187C11.3737 23.0641 11.439 22.903 11.415 22.756C11.3214 22.1834 11.0503 21.7076 10.5376 21.406C8.94079 20.4668 7.33894 19.532 5.73202 18.6015C5.58193 18.5291 5.42695 18.4673 5.26823 18.4165ZM9.41945 19.6772C9.42707 19.5269 9.43687 19.4083 9.43687 19.2907C9.43687 18.5841 9.43687 17.8754 9.43687 17.1721C9.43602 17.1334 9.42729 17.0953 9.41119 17.0601C9.39509 17.0249 9.37196 16.9933 9.34324 16.9674C8.99486 16.7497 8.63776 16.5319 8.21317 16.2782V17.7469C8.21317 19.0337 8.21317 19.0337 9.32909 19.6565C9.35853 19.6661 9.38877 19.673 9.41945 19.6772ZM13.9713 14.029C13.8777 13.4846 13.7645 13.0165 13.7242 12.5386C13.6839 12.0606 13.7155 11.5827 13.7155 11.0601C13.3889 11.6044 13.0764 12.1357 12.7661 12.6681C12.7542 12.6912 12.7474 12.7165 12.746 12.7424C12.7447 12.7683 12.749 12.7942 12.7585 12.8183C13.022 13.3257 13.3573 13.7655 13.9713 14.029Z' fill='%234C504A'/%3E%3Cpath d='M29.9937 27.8664C29.9937 28.1777 29.9937 28.4891 29.9937 28.8005C29.9937 29.0835 29.8565 29.2828 29.5648 29.2871C29.273 29.2915 29.1293 29.0933 29.1293 28.8114C29.1227 28.1756 29.1206 27.5398 29.1293 26.904C29.1293 26.6242 29.2675 26.438 29.5767 26.4467C29.8859 26.4554 29.9926 26.6579 29.997 26.9334C29.9981 27.2447 29.9937 27.5561 29.9937 27.8664Z' fill='%234C504A'/%3E%3Cpath d='M27.9697 29.0215C27.9697 29.3481 27.9697 29.6747 27.9697 29.9948C27.9697 30.2659 27.8609 30.4303 27.5691 30.4444C27.2773 30.4586 27.1423 30.3007 27.1401 30.0242C27.1401 29.3623 27.1401 28.7003 27.1401 28.0384C27.1401 27.7608 27.2817 27.6029 27.5593 27.6029C27.8369 27.6029 27.9697 27.7717 27.9686 28.0482L27.9697 29.0215Z' fill='%234C504A'/%3E%3Cpath d='M31.9785 26.6874C31.9785 27.014 31.9785 27.3406 31.9785 27.6672C31.9785 27.9427 31.8457 28.1114 31.5615 28.1093C31.2774 28.1071 31.1434 27.9547 31.1445 27.6738C31.1445 27.0206 31.1445 26.3673 31.1445 25.7141C31.1445 25.4278 31.2937 25.271 31.5582 25.2677C31.8228 25.2645 31.9774 25.4321 31.9785 25.7108C31.9796 26.0364 31.9785 26.3619 31.9785 26.6874Z' fill='%234C504A'/%3E%3Cpath d='M16.8017 10.027C16.9324 8.00634 17.8665 6.45603 19.6019 5.41741C20.2812 5.01133 21.0172 4.9362 21.7172 5.3989C22.4336 5.87249 22.684 6.61172 22.6274 7.41191C22.5076 9.11682 21.7564 10.5256 20.4195 11.5958C20.0571 11.878 19.646 12.0912 19.2067 12.2251C17.9601 12.6148 16.8834 11.8299 16.8017 10.5136C16.7941 10.3525 16.8017 10.187 16.8017 10.027ZM17.6596 10.7651C17.8774 11.4499 18.2976 11.6927 18.9378 11.4575C19.2683 11.3407 19.5768 11.1688 19.8501 10.9491C20.7507 10.2126 21.3685 9.18702 21.5985 8.04663C21.6823 7.63775 21.689 7.21682 21.6181 6.80551C21.4995 6.12398 21.064 5.90951 20.4086 6.11854C20.2148 8.088 19.3057 9.62851 17.6607 10.7651H17.6596ZM19.3732 6.62152C18.4912 7.4005 17.8847 8.44386 17.6444 9.59585C18.5709 8.85405 19.1876 7.7936 19.3743 6.62152H19.3732Z' fill='%234C504A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_47_2488'%3E%3Crect width='34.4139' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

#technologyStepsCarousel {
    display: none;
}

#technologyStepsCarousel .carousel-control-prev,
#technologyStepsCarousel .carousel-control-next {
    width: 80px;
    margin-left: 100px;
    top: 120%;
    transform: translateY(-50%);
}

@media (max-width: 500px) {

    #technologyStepsCarousel .carousel-control-prev,
    #technologyStepsCarousel .carousel-control-next {
        width: 60px;
        top: 110%;
    }
}


@media (min-width: 801px) and (max-width: 1100px) {
    .technology-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .technology::before {
        width: 300vw;
        height: 300vw;
        left: -150vw;
        right: -150vw;
    }
}

@media (max-width: 800px) {
    .technology {
        margin: 50px 0;
    }

    .technology::before {
        width: 100%;
        min-height: 100%;
        position: absolute;
        content: '';
        background-color: var(--main-grey);
        z-index: -3;
        top: -100px;
        left: 0;
        right: 0;
        border-radius: unset;
        margin: 0;
    }

    #technologyStepsGrid {
        display: none;
    }

    #technologyStepsCarousel {
        display: block;
    }

    .technology-steps {
        display: block;
    }
}

/* эффектно и в стиль */

.style-gallery {
    display: grid;
    grid-template-columns: 12% 22% 22% 8% 18% 18%;
    grid-gap: 5px;
    grid-template-rows: 350px;
}

.style-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgSwiper {
    display: none;
}

.style .swiper {
    width: 100%;
    height: 60vh;
}

.style .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.style .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style .swiper-slide {
    width: 80%;
}

/* отказались от вариативной ширины фото в слайдере
.style .swiper-slide:nth-child(2n) {
   width: 60%;
}

.style .swiper-slide:nth-child(3n) {
   width: 40%;
}
*/

@media (max-width: 800px) {
    .imgSwiper {
        display: block;
    }

    .style-gallery {
        display: none;
    }
}

/* ценные отличия */

.differences-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    gap: 20px;
    padding: 0;
}

.differences-list li {
    background: var(--main-grey);
    padding: 2rem;
    border-radius: 5px;
}

.differences-list li h3 {
    position: relative;
    padding-right: 40px;
}

.differences-list li h3::after {
    content: '';
    position: absolute;
    right: -15px;
    top: -15px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
}

.differences-list li.bolt h3::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_31_5269)'%3E%3Cpath d='M20 0C8.96 0 0 8.96 0 20C0 31.04 8.96 40 20 40C31.04 40 40 31.04 40 20C40 8.96 31.04 0 20 0ZM27.06 22.46L16.7 29.64C15.18 30.7 14.3 30.08 14.74 28.3L16.64 20.62L13.34 19.8C11.84 19.44 11.66 18.4 12.92 17.52L23.28 10.34C24.8 9.28 25.68 9.9 25.24 11.68L23.34 19.36L26.64 20.18C28.14 20.56 28.32 21.58 27.06 22.46Z' fill='%23599C28'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_31_5269'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.differences-list li.bucket h3::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_31_5261)'%3E%3Cpath d='M20 0C8.96 0 0 8.96 0 20C0 31.04 8.96 40 20 40C31.04 40 40 31.04 40 20C40 8.96 31.04 0 20 0ZM19.26 28.5C17.56 30.2 15.84 30.2 14.12 28.5L9 23.36C8.12 22.48 7.7 21.6 7.72 20.7C7.74 19.86 8.18 19.04 9 18.22L16.2 11.02L15.08 9.92C14.7 9.54 14.7 8.94 15.08 8.56C15.46 8.18 16.06 8.18 16.44 8.56L17.54 9.66L26.94 19.06C27.14 19.26 27.28 19.56 27.28 19.84C27.3 20.18 27.2 20.52 26.94 20.78L19.26 28.5ZM29.28 31.72C27.62 31.72 26.28 30.38 26.28 28.72C26.28 27.04 28.26 24.82 28.66 24.38C28.98 24.02 29.6 24.02 29.94 24.38C30.34 24.8 32.32 27.04 32.32 28.72C32.28 30.38 30.94 31.72 29.28 31.72Z' fill='%23599C28'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_31_5261'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.differences-list li.calendar h3::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_31_5263)'%3E%3Cpath d='M20 0C8.96 0 0 8.96 0 20C0 31.04 8.96 40 20 40C31.04 40 40 31.04 40 20C40 8.96 31.04 0 20 0ZM9.7 14.88C10.54 12.94 12.12 11.44 14.3 10.76V9.16C14.3 8.34 14.98 7.66 15.8 7.66C16.62 7.66 17.3 8.34 17.3 9.16V10.34H22.72V9.16C22.72 8.34 23.4 7.66 24.22 7.66C25.04 7.66 25.72 8.34 25.72 9.16V10.74C27.9 11.42 29.48 12.92 30.32 14.86C30.6 15.52 30.12 16.28 29.4 16.28H10.62C9.9 16.28 9.42 15.54 9.7 14.88ZM31 24.34C31 28.74 28 32.34 23 32.34H17C12 32.34 9 28.74 9 24.34V19.28C9 18.72 9.44 18.28 10 18.28H30C30.56 18.28 31 18.72 31 19.28V24.34Z' fill='%23599C28'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_31_5263'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.differences-list li.percent h3::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_31_5250)'%3E%3Cpath d='M20 0C8.96 0 0 8.96 0 20C0 31.04 8.96 40 20 40C31.04 40 40 31.04 40 20C40 8.96 31.04 0 20 0ZM14 12C15.1 12 16 12.9 16 14C16 15.1 15.12 16 14 16C12.9 16 12 15.1 12 14C12 12.9 12.9 12 14 12ZM15.06 27.06C14.76 27.36 14.38 27.5 14 27.5C13.62 27.5 13.24 27.36 12.94 27.06C12.36 26.48 12.36 25.52 12.94 24.94L24.94 12.94C25.52 12.36 26.48 12.36 27.06 12.94C27.64 13.52 27.64 14.48 27.06 15.06L15.06 27.06ZM26 28C24.88 28 23.98 27.1 23.98 26C23.98 24.9 24.88 24 25.98 24C27.08 24 27.98 24.9 27.98 26C27.98 27.1 27.1 28 26 28Z' fill='%23599C28'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_31_5250'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.differences-list li.clock h3::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_31_5265)'%3E%3Cpath d='M20 0C8.98 0 0 8.98 0 20C0 31.02 8.98 40 20 40C31.02 40 40 31.02 40 20C40 8.98 31.02 0 20 0ZM28.7 27.14C28.42 27.62 27.92 27.88 27.4 27.88C27.14 27.88 26.88 27.82 26.64 27.66L20.44 23.96C18.9 23.04 17.76 21.02 17.76 19.24V11.04C17.76 10.22 18.44 9.54 19.26 9.54C20.08 9.54 20.76 10.22 20.76 11.04V19.24C20.76 19.96 21.36 21.02 21.98 21.38L28.18 25.08C28.9 25.5 29.14 26.42 28.7 27.14Z' fill='%23599C28'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_31_5265'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.differences-list li.smile h3::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_31_5267)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 40C31.0456 40 40 31.0456 40 20C40 8.9543 31.0456 0 20 0C8.9543 0 0 8.9543 0 20C0 31.0456 8.9543 40 20 40ZM12.7949 27.1068C13.2883 26.4412 14.2277 26.3016 14.8932 26.795C16.35 27.8746 18.1082 28.5 20 28.5C21.8918 28.5 23.65 27.8746 25.1068 26.795C25.7724 26.3016 26.7118 26.4412 27.205 27.1068C27.6984 27.7724 27.5588 28.7118 26.8932 29.205C24.9484 30.6466 22.57 31.5 20 31.5C17.43 31.5 15.0516 30.6466 13.1068 29.205C12.4412 28.7118 12.3016 27.7724 12.7949 27.1068ZM28 17C28 18.6568 27.1046 20 26 20C24.8954 20 24 18.6568 24 17C24 15.3431 24.8954 14 26 14C27.1046 14 28 15.3431 28 17ZM14 20C15.1046 20 16 18.6568 16 17C16 15.3431 15.1046 14 14 14C12.8954 14 12 15.3431 12 17C12 18.6568 12.8954 20 14 20Z' fill='%23599C28'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_31_5267'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

@media (min-width: 701px) and (max-width: 1100px) {
    .differences-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .differences-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .differences-list li {
        padding: 1.5rem;
    }

    .differences-list li h3 {
        padding-right: 30px;
    }

    .differences-list li h3::after {
        width: 30px;
        height: 30px;
    }
}

/* оцените все преимущества */

.advantages {
    position: relative;
    background-image:
        linear-gradient(to bottom, rgb(34, 22, 5), rgb(57, 38, 9) 150px, rgb(34, 22, 5) 300px);
    min-height: 300px;
}

.advantages::before {
    position: absolute;
    content: '';
    background-image: url('../img/brown-form-bg.jpg');
    background-size: 50%;
    opacity: 15%;
    width: 100%;
    min-height: 100%;
    mix-blend-mode: overlay;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
    align-items: center;
}

.advantages-content-left {
    padding: 2rem 0;
}

.advantages-content .basic-title,
.advantages-content .basic-title-subtitle {
    color: white;
}

.advantages-content .basic-title-subtitle {
    font-weight: 700;
    font-size: 18px;
}

.advantages-content-right {
    background: white;
    padding: 2rem;
    position: relative;
    height: 100%;
}

.advantages-content-right::before,
.advantages-content-right::after {
    position: absolute;
    content: '';
}

.advantages-content-right::before {
    width: 32px;
    height: 100%;
    left: -25px;
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='300' viewBox='0 0 32 300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_43_2270)'%3E%3Cpath d='M20.8391 292.606C20.9562 293.288 20.3513 293.879 20.0781 293.621C20.8196 295.008 19.9805 295.038 21.4049 295.22C22.1074 296.106 21.1318 297.053 20.5465 296.038L21.4245 298.599L21.6391 297.083C22.8294 297.5 21.2879 299.53 22.6733 300.015L22.5562 297.242L22.9464 297.386C22.6599 296.633 22.6599 295.867 22.9464 295.114C23.1415 295.182 23.4537 295.114 23.4928 295.629C23.5903 292.28 21.4245 294.727 21.0343 291.955C21.0232 292.174 20.9578 292.392 20.8391 292.606Z' fill='white'/%3E%3Cpath d='M23.7461 289.765L22.2632 288.636L22.6339 286.682C22.1266 286.682 21.7169 285.235 21.2681 286.197C21.4065 286.482 21.4654 286.771 21.4437 287.061C20.351 286.841 20.8974 284.455 19.7852 285.03C20.0778 286.583 19.7852 286.818 20.7218 287.773C20.7232 288.818 20.4684 289.86 19.9608 290.886C20.1364 291.311 20.8193 291.371 20.9559 291.901C20.9559 291.788 20.9559 291.674 20.9559 291.538L22.6339 291.485C22.3969 291.037 22.3182 290.578 22.3998 290.121L24.351 292.394C25.912 291.636 24.9949 289.401 25.6388 288.508C24.1754 289.598 24.8973 287.591 23.7461 289.765Z' fill='white'/%3E%3Cpath d='M11.2587 120.667C11.2587 120.182 10.8294 120.038 10.6343 119.97V125.455C11.0635 125.28 11.6099 123.705 11.8635 124.758C12.266 124.05 12.0886 123.311 11.3562 122.644L12.0196 123.038C11.1611 121.78 12.8392 120.917 13.3465 121.735V121.629L10.0489 118.129C9.97087 119.417 11.2196 119.121 11.2587 120.667Z' fill='white'/%3E%3Cpath d='M12.9365 8.01514C13.0926 8.72726 13.2488 8.81059 13.4049 8.73483C13.3066 8.48982 13.1497 8.24888 12.9365 8.01514Z' fill='white'/%3E%3Cpath d='M9.32662 117.311L8.29248 116.22C8.51012 116.6 8.85793 116.967 9.32662 117.311Z' fill='white'/%3E%3Cpath d='M24.9562 124.909C24.9562 124.909 25.0733 124.909 25.1513 124.909L24.6245 124.417C24.7416 124.599 24.8391 124.758 24.9562 124.909Z' fill='white'/%3E%3Cpath d='M5.444 92.4242C5.444 92.3105 5.444 92.2045 5.444 92.0681C5.38547 92.1969 5.42449 92.3181 5.444 92.4242Z' fill='white'/%3E%3Cpath d='M30.8487 139.765L29.8535 137.333C30.3218 137.651 30.1853 136.477 30.7316 136.992C30.7316 136.803 30.4779 135.932 30.2243 136.174V136.674C28.8584 135.386 28.273 136.167 27.2974 134.03C26.6771 134.897 26.8707 135.82 27.8438 136.636C27.9413 136.871 27.9804 137.076 28.0389 137.273L29.9901 139.303L30.8487 139.765Z' fill='white'/%3E%3Cpath d='M20.6831 42.0011H20.7807C20.7807 42.0011 20.7221 41.9909 20.6831 42.0011Z' fill='white'/%3E%3Cpath d='M21.229 42.1288L20.7803 42.0227C21.0144 42.1591 21.2095 42.6591 21.229 42.1288Z' fill='white'/%3E%3Cpath d='M10.2047 117.72C9.8065 117.623 9.49869 117.48 9.32666 117.311L10.0876 118.129C10.1071 118.015 10.1656 117.864 10.2047 117.72Z' fill='white'/%3E%3Cpath d='M13.1904 119.576L13.3856 121.629L14.088 122.386C13.8733 121.606 13.6392 120.682 13.1904 119.576Z' fill='white'/%3E%3Cpath d='M4.64373 95.6667C4.44861 91.4167 6.26325 96.7121 6.59495 94.7576C6.33433 93.9697 5.93007 93.1899 5.38521 92.4243C6.04862 95.803 2.88767 91.9697 3.27792 95.3712C1.91206 94.8864 1.77546 92.9167 2.16571 91.7652C3.49254 90.4546 3.12181 92.9015 4.42913 93.197C4.21449 91.8333 3.98032 92.0758 3.23885 91.4924C3.55105 89.3485 1.59984 87.0606 3.43399 85.7803C3.317 84.9625 2.76564 84.1629 1.8145 83.4318C0.39011 83.2576 1.07304 85.7424 -0.136719 86.3182C-0.0196456 86.197 0.23397 85.9697 0.429092 86.0303L0.136421 87.3788C0.624226 86.0985 1.56081 87.553 1.65837 88.2349C1.65837 88.7273 1.75594 89.75 1.3657 89.5758L1.0535 88.8182C0.604716 89.7879 2.08767 90.947 1.3267 91.9697C0.994989 92.0227 0.85841 91.6364 0.663288 91.5758C1.4301 92.873 1.96467 94.1893 2.26324 95.5152L0.838891 94.5303C2.39987 95.8864 1.97059 98.947 1.13156 101.068C1.38522 100.833 1.54133 100.409 1.8145 100.667C2.16572 101.917 1.19009 102.856 0.448623 102.28C1.61935 103.492 -0.54646 106.917 0.975491 108.576L8.15596 116.212C7.96278 115.914 7.83224 115.61 7.7657 115.303C8.99496 114.606 8.85839 114.235 10.0291 115.455C9.3657 114.258 8.37057 114.697 8.31204 112.917C8.93643 113.621 10.2633 113.803 10.5169 112.083C9.26814 107.788 5.75598 104.947 3.96085 100.932C4.89744 100.788 4.64376 97.6364 4.8584 96.1061C5.92272 97.0163 6.44301 98.0082 6.38035 99.0076C6.38035 98.25 6.38036 96.9924 6.51695 96.0455L4.64373 95.6667Z' fill='white'/%3E%3Cpath d='M7.86329 105.644C7.93478 105.532 7.98691 105.418 8.01936 105.303C7.91548 105.412 7.86264 105.528 7.86329 105.644Z' fill='white'/%3E%3Cpath d='M6.49756 99.3712C6.49756 99.25 6.49756 99.1212 6.49756 99C6.51524 99.1364 6.49756 99.2803 6.49756 99.3712Z' fill='white'/%3E%3Cpath d='M12.3511 116.712C12.6242 116.962 12.7023 117.151 12.9755 117.409C12.8779 117.25 12.8194 117.053 12.7218 116.864C12.6242 116.674 12.4681 116.598 12.3511 116.712Z' fill='white'/%3E%3Cpath d='M10.6729 117.568L10.2827 117.432C10.2827 117.546 10.2827 117.621 10.2827 117.72C10.2827 117.818 10.5949 117.712 10.6729 117.568Z' fill='white'/%3E%3Cpath d='M13.288 79.4091L13.0733 79C13.0448 79.1415 13.1192 79.2832 13.288 79.4091Z' fill='white'/%3E%3Cpath d='M6.26318 90.909C6.26318 92.4242 7.68755 91.0833 7.70707 93.1818V92.5681C8.1196 94.5411 8.24991 96.5214 8.09733 98.4999C7.53148 98.2954 7.3949 99.5833 6.51685 99.3711C6.49534 100.403 6.93772 101.429 7.82414 102.401C7.53145 103.159 8.33147 104.303 7.96074 105.265C8.48756 104.856 9.75585 106.629 9.11195 104.295C9.11195 104.485 9.3071 104.364 9.38515 104.545C10.1266 103.03 8.85832 102.439 8.83881 101.144C9.36564 100.386 9.69732 102.409 9.91195 101.674C9.40464 100.053 10.5363 96.5908 8.56561 96.6969C8.31978 96.1215 8.54495 95.5306 9.20948 95.0075C7.10217 93.1363 10.1266 88.0833 7.43393 88.0984C7.43334 89.033 7.64221 89.9658 8.05827 90.8863L6.26318 90.909Z' fill='white'/%3E%3Cpath d='M12.2148 114.227C12.2148 114.136 12.2148 114.015 12.2148 113.939C12.2325 114.023 12.2148 114.128 12.2148 114.227Z' fill='white'/%3E%3Cpath d='M4.40988 132.901L2.63426 132.28C2.22451 128.757 2.63426 127.485 2.63426 124.401C2.86841 124.167 3.02455 124.538 3.1026 124.727C2.88796 122.561 3.25866 119.326 2.45866 117.742C2.45866 117.061 3.02451 115.25 3.55134 115.932C3.35444 115.568 3.26928 115.197 3.29767 114.826C3.92206 114.727 3.47331 115.689 4.00014 115.712C4.00014 115.409 4.15624 115.288 4.00014 115.22C4.54648 115.735 6.14646 114.682 6.10743 117.083C4.6245 118.015 5.93185 115.417 4.31234 115.97C4.31234 116.727 4.9367 116.674 5.13182 116.727C5.13182 117.735 4.68307 117.712 4.31234 117.659C4.81966 118.045 4.11724 119.318 4.87821 119.856C4.99529 121.833 3.64889 119.75 3.66841 121.038L5.32695 121.795L5.01475 123.939C5.60012 127.038 7.86354 123.492 8.80012 127.038C7.94159 126.576 6.49771 127.992 6.14649 129.644C6.14649 128.659 5.01475 126.833 5.50256 125.561C4.19524 127.356 5.34647 123.091 3.86354 124.045C4.5609 125.197 4.69984 126.389 4.27328 127.561L4.11721 127.189C3.9416 128.417 5.67817 129.341 5.01475 131.038C5.01475 131.879 4.60499 131.72 4.21475 131.576C4.44889 132.265 4.78061 132.901 4.40988 132.901ZM4.11721 131.061L4.27328 129.932C4.02271 130.3 3.9696 130.684 4.11721 131.061Z' fill='white'/%3E%3Cpath d='M23.6293 274.015C23.6293 274.129 23.5317 274.258 23.4927 274.356C23.5823 274.246 23.6284 274.131 23.6293 274.015Z' fill='white'/%3E%3Cpath d='M24.1562 174.068V174.727C24.1562 174.47 24.1739 174.242 24.1562 174.068Z' fill='white'/%3E%3Cpath d='M29.6196 188.712L30.0098 189.667C29.9956 189.343 29.8643 189.022 29.6196 188.712Z' fill='white'/%3E%3Cpath d='M25.756 218.068C25.592 218.24 25.4679 218.418 25.3853 218.598C25.5804 218.576 25.6779 218.379 25.756 218.068Z' fill='white'/%3E%3Cpath d='M29.4829 188.538C29.4854 188.555 29.4854 188.573 29.4829 188.591C29.5241 188.63 29.5567 188.67 29.5804 188.712L29.4829 188.538Z' fill='white'/%3E%3Cpath d='M28.9949 167.621C28.9949 167.485 28.8974 167.356 28.8193 167.205C28.8374 167.346 28.8963 167.485 28.9949 167.621Z' fill='white'/%3E%3Cpath d='M24.2928 168.546C24.2671 168.408 24.215 168.271 24.1367 168.136L24.2928 168.546Z' fill='white'/%3E%3Cpath d='M27.5315 145.985L27.2974 145.114C27.2899 145.407 27.3685 145.699 27.5315 145.985Z' fill='white'/%3E%3Cpath d='M25.3855 166.219C25.3214 166.171 25.2428 166.125 25.1514 166.083C25.2099 166.204 25.3075 166.265 25.3855 166.219Z' fill='white'/%3E%3Cpath d='M18.595 279.598V279.545H18.3999L18.595 279.598Z' fill='white'/%3E%3Cpath d='M21.0146 281.735C21.0146 281.985 21.0147 282.25 21.1512 282.492C21.1602 282.239 21.1145 281.985 21.0146 281.735Z' fill='white'/%3E%3Cpath d='M23.1023 230.826C22.8486 231.061 22.5754 231.583 22.3022 231.348C22.634 231.818 23.473 231.765 23.1023 230.826Z' fill='white'/%3E%3Cpath d='M8.25342 275.318C8.47626 275.473 8.66555 275.636 8.81929 275.803C8.56563 275.477 8.37049 275.197 8.25342 275.318Z' fill='white'/%3E%3Cpath d='M8.81934 275.803C8.93641 275.97 9.05349 276.136 9.19007 276.28C9.073 276.114 8.95592 275.954 8.81934 275.803Z' fill='white'/%3E%3Cpath d='M9.36577 224.909C9.51381 224.832 9.59575 224.74 9.59991 224.644C9.38527 224.682 9.32675 224.773 9.36577 224.909Z' fill='white'/%3E%3Cpath d='M20.8779 283.129C21.2682 283.265 22.1267 286.621 22.3413 283.795C23.5511 283.909 22.9072 285.606 23.1999 286.364C23.4926 285.818 23.9999 286.636 24.4292 286.47C24.1316 285.999 23.9938 285.515 24.0194 285.03C24.5853 284.75 24.956 285.689 24.7414 286.417C25.4048 285.515 25.7169 287.561 26.2243 286.288C25.7755 283.561 25.3462 281.636 23.5511 279.72C23.9952 281.229 24.0475 282.752 23.7072 284.265L22.6535 283.727C23.5901 282.288 22.8877 281.402 22.9853 279.985L22.4194 283.159C21.5414 284.674 21.3463 283.659 21.1511 282.485C21.2105 282.705 21.1161 282.928 20.8779 283.129Z' fill='white'/%3E%3Cpath d='M11.5708 280.985V281.038C11.595 281.085 11.6343 281.131 11.6879 281.174L11.5708 280.985Z' fill='white'/%3E%3Cpath d='M6.06849 146.151L5.67822 145.879C5.81481 146.106 5.93191 146.211 6.06849 146.151Z' fill='white'/%3E%3Cpath d='M28.8389 154.765C28.8389 154.765 28.9364 154.765 28.9754 154.72C29.0144 154.674 28.8779 154.644 28.8389 154.765Z' fill='white'/%3E%3Cpath d='M6.06824 152.955H5.9707C5.9707 152.955 6.06824 152.965 6.06824 152.955Z' fill='white'/%3E%3Cpath d='M9.9707 185.999C10.107 185.913 10.2245 185.822 10.3219 185.727C10.2048 185.667 10.0878 185.727 9.9707 185.999Z' fill='white'/%3E%3Cpath d='M11.5122 179.477C11.5122 179.432 11.5122 179.409 11.6293 179.356L11.5122 179.477Z' fill='white'/%3E%3Cpath d='M27.8828 229.28C27.8828 228.962 27.8828 228.72 27.8828 228.523C27.8268 228.775 27.8268 229.028 27.8828 229.28Z' fill='white'/%3E%3Cpath d='M5.85365 152.909C5.71069 152.804 5.58681 152.695 5.48291 152.583C5.5705 152.697 5.69508 152.807 5.85365 152.909Z' fill='white'/%3E%3Cpath d='M15.3173 195.939C15.2598 195.875 15.2206 195.809 15.2002 195.742V195.863L15.3173 195.939Z' fill='white'/%3E%3Cpath d='M14.5368 199.348C14.4421 199.264 14.3173 199.185 14.166 199.114C14.6148 200.326 14.166 202.561 15.2587 202.826C15.2587 202.409 15.9026 200.273 16.566 200.636C16.2734 199.788 17.0734 198.538 16.8782 198.083C16.2734 199.477 15.9416 198.235 15.5514 197.326C15.8831 196.47 16.4685 197.485 16.6636 196.75L16.5465 194.773L16.3904 196.492L15.3172 195.97C15.3401 196.031 15.3728 196.092 15.4148 196.151C15.9221 199.03 13.8733 196.364 14.5368 199.348Z' fill='white'/%3E%3Cpath d='M14.1659 199.114C14.1236 198.954 14.0386 198.797 13.9123 198.644C13.8786 198.807 13.9667 198.97 14.1659 199.114Z' fill='white'/%3E%3Cpath d='M12.3901 211.008C12.3901 211.152 12.3902 211.318 12.5463 211.523C12.5072 211.424 12.4682 211.197 12.3901 211.008Z' fill='white'/%3E%3Cpath d='M13.8734 123.848C13.5417 123.901 12.8978 125.598 13.7173 125.568C13.8149 125.061 13.8929 124.553 13.9905 124.053L13.8734 123.848Z' fill='white'/%3E%3Cpath d='M17.2291 243.402C17.2584 243.212 17.2584 243.023 17.2291 242.833L17.112 242.727C17.0483 242.953 17.0879 243.181 17.2291 243.402Z' fill='white'/%3E%3Cpath d='M16.9561 201.159C16.9168 200.977 16.7842 200.799 16.5659 200.636C16.5986 200.82 16.7316 200.998 16.9561 201.159Z' fill='white'/%3E%3Cpath d='M15.2583 243.508C15.0047 243.75 14.6535 244.106 14.3218 244.152C14.4424 244.603 14.6379 245.051 14.9071 245.492C14.7973 244.828 14.9154 244.16 15.2583 243.508Z' fill='white'/%3E%3Cpath d='M14.9268 245.538C14.9359 245.523 14.9359 245.507 14.9268 245.492C14.9268 245.492 14.9268 245.523 14.9268 245.538Z' fill='white'/%3E%3Cpath d='M14.2632 122.841C14.2632 122.699 14.2046 122.548 14.0875 122.386L14.3022 122.621C14.3022 122.235 14.4778 121.864 14.5559 121.455C14.5559 121.318 14.4583 121.167 14.4193 120.977C14.4412 121.041 14.5168 121.099 14.6339 121.144C14.6339 121.023 14.6339 120.894 14.7315 120.773C13.8729 119.841 13.229 117.53 12.7802 116.864C12.4168 115.992 12.2471 115.11 12.2729 114.227C12.2729 114.856 12.429 115.689 12.9168 115.439C13.4047 114.159 14.868 113.538 13.6193 111.341V112.629L11.7656 109.727C12.5461 108.712 12.7022 111.182 13.3656 111.583C12.4485 109.311 14.8875 107.447 13.3656 106.402C14.3217 106.258 15.9022 106.008 15.8241 104.53C14.7315 105.591 15.1217 103.636 13.8729 104.53C13.3266 104.015 14.2241 102.879 13.5022 102.795L13.8925 102.932C15.4144 100.402 13.0534 99.5758 12.2729 98.4924C11.8827 95.4621 12.4875 94.0758 12.2729 91.6061C13.0209 91.4166 13.6298 91.1551 14.0401 90.8471C14.4505 90.539 14.6483 90.195 14.6144 89.8485C13.7364 89.3864 13.3461 87.1515 12.2339 86.9242C11.7656 88.697 13.1705 88.3712 13.4241 89.4318C12.2534 90.3182 12.2729 89.5152 11.59 90.7197C12.0388 89.7424 10.9851 86.3258 12.0583 85.2576L12.2144 85.6364C12.8778 83.9318 15.6095 83.6061 13.951 80.7727L13.2876 79.4242C13.3851 79.4848 13.5217 79.4924 13.6193 79.5303C13.7363 77.3182 14.9851 77.9242 14.0095 75.4773C14.0095 75.6667 14.2046 75.5455 14.2827 75.7424C14.8875 74.3485 13.6388 72.947 13.3851 71.8939C14.3022 71.25 14.3022 72.0455 14.9656 72.4394C15.0808 70.2003 14.284 67.9683 12.6046 65.8258L13.151 64.25C13.5412 65.1818 14.4973 66.3258 15.1022 66.0455C14.7343 65.412 14.5834 64.7624 14.6534 64.1136C15.4477 64.513 16.1037 64.9511 16.6046 65.4167C17.5802 62.8788 14.4973 64.8485 16.312 63.0682C16.312 62.3106 15.473 61.8106 14.751 61.7197L15.6875 60.2727C14.7705 60.1136 14.7315 58.3333 14.5949 57.1591C14.2046 57.0151 13.6192 58.1061 13.9705 58.5455C13.268 58.4621 12.9168 57.2121 12.9363 56.4167C14.8875 56.1212 12.6632 51.1742 14.8875 52.1212C14.2632 48.5227 14.0681 43.4773 13.2876 41.0985C13.8144 40.3409 13.8339 38.7273 14.7315 39.6818C14.7315 36.7879 12.7802 35.2955 13.3071 32.4242C13.5412 32.1818 13.3071 33.7197 13.951 33.6136C13.19 31.7424 14.751 30.2045 14.2437 27.2879C14.2437 27.7803 14.6729 27.9242 14.8681 27.9924C14.3441 27.3612 14.0229 26.7073 13.9119 26.0455C14.0875 25.6212 14.1461 26.6061 14.3803 26.3712C15.3168 20.7424 12.7217 16.4545 12.7998 10.8561C12.7998 12.4545 14.0485 13.0606 14.5559 13.0758V11.4924C14.0395 10.5833 13.6745 9.6622 13.4632 8.73485C13.6973 8.61364 13.951 8.13636 14.2632 8.62121C15.473 5.5303 11.9217 3.78788 12.5461 0L15.0827 4.59091L15.9802 3.45455L17.1315 5.4697C17.8339 4.26515 16.2144 3.19697 17.1315 3.07576C17.4047 3.32576 17.3266 3.93939 17.8339 3.96212C18.2046 2.80303 17.5022 2.71212 17.3071 1.84091C19.2583 4.11364 19.2583 8.65909 19.7071 11.0455C19.8632 11.4318 19.2388 10.7197 19.0436 10.6515C18.8256 11.5909 18.7539 12.5345 18.829 13.4773C19.6486 14.2348 19.4339 12.8864 19.512 12.2727C20.2339 12.3636 20.1949 12.6667 20.2925 13.3485C19.3559 13.5 19.9607 17.0909 18.79 17.9697C19.1022 21.6136 21.268 17.3864 20.8583 20.947L19.7656 22.0076C20.7733 24.3451 21.2239 26.7137 21.1119 29.0833V28.5909C20.6436 28.2576 20.351 28.803 20.1169 29.0379C19.6486 30.8106 20.9753 32.3939 19.8827 33.4621C21.0339 35.4773 21.8339 38.8333 22.4973 41.1364C21.0534 41.7576 21.268 38.1061 20.3705 37.1742V39.2727C20.4561 38.3815 19.9876 37.4954 19.0046 36.6894C18.7315 38.5227 19.9803 39.1288 20.351 40.8712C19.9607 40.7348 19.7266 40.9697 19.7071 41.7727L20.6632 42C20.6632 42 20.5071 42.0985 20.4485 42.3485L21.0339 45.447C21.4437 44.7879 22.2827 44.7576 22.2827 43.9318C21.7363 44.2121 21.6193 43.5379 21.6388 42.7348C22.2632 43.4394 22.1656 41.9773 22.6729 41.9773C22.6729 43.5833 22.7705 45.553 23.0437 46.6061L22.1656 46.9545C21.9315 48.4697 22.4193 50.0985 22.1656 51.1364L21.6778 50.8333C21.4241 52.6667 21.99 54.4773 21.1315 56.1364C22.1266 57.7727 22.9656 59.8333 24.0193 61.1742C25.151 61.8864 22.5949 65.9773 24.1949 67.8258C23.6536 67.2042 23.2233 66.5688 22.9071 65.9242C22.7315 67.1591 24.1364 68.1288 22.9071 68.5152C23.3168 65.7576 21.951 68.6667 21.6193 67.4242C21.5641 68.5235 21.7863 69.6221 22.2827 70.7045C22.2827 68.6212 23.9217 71.4621 23.4144 69.3333C24.4685 71.2464 24.8101 73.2083 24.429 75.1591C23.9022 75.1591 23.6681 75.3864 23.4534 76.1136L24.2144 76.697C24.0778 77.6136 23.3168 74.9318 23.0632 76.7727C24.3314 78.6591 22.3217 82.4697 24.7022 83.2954C23.7656 84.7424 23.7461 80.553 22.6144 82.7273C21.7559 81.4621 22.7315 79.697 21.5412 79.303C21.8924 80.5379 20.5461 79.75 20.5461 80.553L21.2681 81.9318V81.6288C22.3803 83.947 21.8534 87.6212 22.0485 90.5833C23.2388 93.0985 24.9558 94.8258 24.8192 97.8333C24.1168 96.9394 24.1558 100.333 22.868 98.4394C22.2631 99.8258 22.9851 101.205 23.4924 101.235C23.569 100.742 23.7123 100.252 23.9217 99.7652C24.4955 100.738 24.5552 101.745 24.0973 102.727C24.0973 102.424 24.0973 102.538 23.8436 102.477C23.4144 103.939 24.4485 103.174 24.7217 104.235C23.8437 104.568 24.4875 106.568 24.0388 107.53L25.268 108.932C24.4485 108.174 24.9753 110.273 24.2144 110.492C25.1726 111.579 25.6413 112.722 25.5998 113.871C25.1705 113.235 24.9753 115.265 24.1558 115.288C23.3558 117.909 26.4193 119.621 25.229 122.106C25.0339 122.03 24.4875 121.53 24.2729 122.25C24.507 122.826 24.4095 123.818 24.5071 124.432C24.5071 124.727 24.6437 124.917 24.8388 124.924C26.002 126.097 26.7885 127.321 27.1803 128.568C28.1364 128.417 27.7656 126.682 27.4534 125.924L26.5169 125.273C27.9608 124.652 26.2632 123.424 26.751 122.947C28.4485 124.182 28.0193 127.735 29.0534 129.871C30.3802 128.568 30.5949 125.742 30.4388 123.273L29.873 124.356V123.068L28.8583 124.318C29.0339 123.098 28.7607 122.045 28.8583 120.932C28.8583 122.227 27.5705 122.735 27.7851 122C28.7217 120.553 27.1607 120.485 27.2193 119.394C27.2193 120.008 27.1217 120.803 26.5754 120.288C27.7266 118.114 26.9851 117.53 28.1949 115.553C26.6144 115.795 28.0388 113.083 26.7315 112.788L26.6144 113.705L25.6583 111.758C26.9461 109.962 26.9656 113.348 27.8827 110.614C28.0388 108.098 26.3802 108.159 26.2437 106.182C27.5061 107.383 28.0981 108.674 27.9803 109.97L28.429 109.008C28.8877 110.275 29.0119 111.557 28.7997 112.833C27.7266 111.008 28.468 113.689 27.629 114.515C28.5266 114.667 28.39 113.5 29.1119 114.879C29.0438 113.835 29.1285 112.79 29.3656 111.75C28.9559 115.311 32.5266 114.955 31.7656 118.061C31.3559 116.629 30.4583 118.561 30.0095 118.735C30.1266 119.409 30.3412 120.773 30.5558 121.341L31.8827 120.826C32.4486 122.644 29.6583 123.273 31.0242 125.371C31.8047 125.636 31.2778 123.53 31.4339 123.902C32.2534 126.765 30.1461 127.795 29.151 130.333C29.5412 130.477 30.3802 130.447 31.1022 131.341C30.3022 131.061 29.912 131.72 29.3266 130.72C29.1862 131.592 29.3702 132.467 29.873 133.318C30.3412 131.553 31.0046 134.076 31.4924 134.371C31.3559 135.288 30.6925 134.091 30.4778 133.53C30.2632 134.288 29.0924 135.136 30.2827 135.553C29.4437 135.553 28.0973 133.5 27.8827 132.136L27.7461 133.053C27.3864 132.511 27.3265 131.946 27.5705 131.394C26.9266 132.288 26.2046 132.197 25.6192 131.985C25.7363 131.871 25.8144 132.053 25.9314 131.939C26.1461 131.182 25.9315 130.644 25.4827 130.818C24.3705 130.152 24.7802 131.833 24.2339 132.333C24.2339 132.705 24.3705 133.091 24.4486 133.455L28.0388 137.242C28.2383 138.453 27.9017 139.667 27.0437 140.833L27.9997 141.167C27.9022 142.583 27.6095 143.924 26.3998 143.015C26.712 142.962 26.6339 142.78 26.6925 142.47C26.5385 142.415 26.4299 142.344 26.3803 142.265L26.2241 142.197C26.5363 143.712 26.7314 144.667 26.7705 144.75C25.3656 142.174 25.0339 144.621 23.3168 144.189L23.8827 146.795C24.4095 145.22 24.7022 146.795 24.9364 147.326C23.9803 147.485 24.9363 149.424 24.8192 150.356L24.6242 150.288C24.3315 151.414 24.3315 152.548 24.6242 153.674C25.7129 154.292 26.6596 154.946 27.4534 155.629C27.8046 153.818 28.1949 154.871 28.7803 154.75C28.6819 154.935 28.6819 155.126 28.7803 155.311C29.0534 155.568 29.1314 154.962 29.4632 154.909C29.0144 152.985 28.8778 151.008 27.5119 150.22C26.9071 150.811 28.0973 151.227 27.6875 151.886C26.79 150.932 26.9656 149.705 26.9851 148.098L27.7851 147.576L27.5315 145.985C27.9607 146.659 28.7998 146.258 28.9559 147.947C29.6973 147.727 28.7803 146.273 28.9559 145.235L27.9022 144.705C28.4876 144.909 28.6046 142.697 29.4046 144.273L30.2827 146.826L31.0046 146.114L31.1998 148.28L30.6534 147.773C31.3949 151.242 28.5461 148.795 29.7949 152.318C31.0827 153.417 31.2193 154.591 30.9071 156.735C30.6144 155.22 30.0095 156.576 29.2485 155.977C28.9286 156.973 29.2851 157.984 30.2827 158.909C29.5998 159.311 29.0534 159.598 29.151 158.152C27.7266 157.97 29.3851 160.008 27.9217 160.136C27.9217 164.818 32.6632 163.924 30.829 169.356L30.2437 169.152C30.9656 172.621 30.2437 174.629 30.7315 177.848L29.229 180.379C28.9949 179.811 27.8827 178.288 27.1607 179C28.6632 177.765 28.1364 176.462 28.9559 175.136C28.5656 175 28.2729 175.538 28.0388 175.773C28.3344 175.021 28.478 174.261 28.4681 173.5C28.1559 173.545 27.7656 174.705 27.59 173.833L28.5266 172.394C28.0778 170.47 26.2827 171.447 26.7119 169.182C27.93 169.814 28.7034 170.558 28.9559 171.341C29.1315 170.303 29.4632 172.72 29.951 171.773C28.7217 170.258 29.6973 169.568 28.9363 167.583C29.2074 167.823 29.3723 168.08 29.4242 168.341L29.9315 165.47C29.2095 166.182 29.151 163.098 28.0778 163.364C27.629 166.394 28.2729 165.53 27.6681 169.015C27.3781 168.013 26.5825 167.042 25.3266 166.159C25.3896 166.099 25.4227 166.035 25.4242 165.97C24.351 165.439 24.0778 165.97 22.2046 165.97C23.5314 167.561 22.4388 168.629 23.1998 170.515C24.2144 170.864 24.5071 169.424 24.2339 168.492L24.9168 170.144L24.4486 169.818L24.0973 174.015C24.083 173.482 23.7061 172.959 23.0046 172.5C22.9278 173.056 22.732 173.608 22.4193 174.152C23.3754 174.03 24.0778 174.106 24.0583 174.636C24.1493 176.407 23.3951 178.169 21.8339 179.833C21.8339 179.939 21.8339 180.053 21.8339 180.152C22.829 179.697 23.6095 182.068 24.6436 182.909C23.6095 182.864 24.0193 184.295 23.4924 185.076C24.6632 185.492 26.3022 184.939 27.2778 183.992C26.1851 182.167 26.1851 182.97 24.6436 182.106L23.629 179.174L24.5656 179.826C24.9754 178.364 23.7461 176.962 24.9558 177.068C25.7754 177.826 25.2875 179.114 26.1071 179.886L26.5559 178.917C27.7656 180.621 25.3851 179.788 26.2437 181.856C27.2778 181.098 26.2437 182.045 27.0047 182.932C27.7266 182.22 26.7119 179.288 28.4875 179.902C29.2485 180.977 26.3997 183.523 28.1753 184.939L27.9607 184.871C27.7099 186.105 28.1974 187.344 29.3851 188.492C28.8193 189.386 29.6193 190.621 29.6778 191.591H29.1705L29.3851 192.962C28.4486 192.311 29.3852 191.356 29.2681 190.189L28.3119 190.333C29.4436 188.977 27.7266 188.061 26.9071 187.03C27.7266 188.545 26.6729 191.341 28.5461 191.697L27.5705 192.644L27.9217 193.091C27.1998 193.795 25.9705 193.091 25.8339 191.712C26.0876 191.477 26.2047 191.356 26.3998 191.432C25.5878 190.551 25.262 189.614 25.4436 188.682L25.951 189.5C25.951 187.598 25.6583 185.864 24.7217 185.212C24.3119 187.962 24.2339 190.667 24.2729 193.258C26.4388 194.015 27.6485 194.924 29.6583 195.311C30.2067 197.171 30.2067 199.049 29.6583 200.909L29.2485 200.765C29.0724 201.424 29.1184 202.088 29.3851 202.742C28.8583 203.5 28.3315 202.212 28.0388 202.742L28.7217 205.227C27.8046 205.068 27.8046 202.955 27.7266 201.985C27.7266 202.174 27.9607 202.553 28.0778 202.432C28.468 201.28 26.907 199.129 28.2339 198.644C27.9997 198.083 29.19 199.788 29.2681 197.886C29.7559 196.614 28.5851 196.197 28.1949 196.068C27.8046 195.939 27.4729 198.068 26.8485 197.364C27.2327 198.242 27.3114 199.136 27.0827 200.023C27.0827 199.038 25.99 197.705 26.79 197.182C25.8144 195.235 23.3949 195.515 23.2583 196.424C24.0193 196.205 24.1949 199.97 25.2095 197.417C26.1851 198.568 26.1851 200.659 26.8095 202.159L26.6144 202.091L26.8485 203.955C26.5754 203.689 26.3412 203.129 25.8339 203.106L27.2193 205.689C26.2827 204.235 26.5753 206.583 26.1656 207.25C26.9461 207.523 27.5315 208.53 27.9803 207.561C28.5461 206.477 27.551 206.932 27.4925 205.947L28.7412 207.341L28.6241 207.462L29.6388 208.303C29.6388 210.212 27.2778 207.47 28.2729 209.909L29.6583 209.598C29.4437 212.424 27.8827 216.053 28.5266 218.045C27.7461 217.492 26.5754 217.288 25.7168 218.045C25.9061 216.771 25.9061 215.494 25.7168 214.22C25.9705 213.985 27.3559 215.735 27.0632 217.106C29.3266 216.455 25.6778 213.735 27.9803 213.576C28.7998 210.159 25.7754 211.023 27.1217 208.121C26.0876 208.083 26.6144 207.295 25.7168 207.144C24.0388 208.008 25.7168 211.023 25.19 212.909C25.1425 212.691 24.9973 212.479 24.7607 212.28C24.4968 213.228 24.6021 214.186 25.0729 215.121L25.19 215C26.2046 216.644 24.429 216.023 23.9802 216.985C24.1168 217.364 23.8241 218.705 24.5851 218.5L23.6095 220.25L24.7607 220.167C24.7607 221.152 24.0583 221.371 24.7607 222.265H25.7949L26.1461 219.811C26.4778 221.053 27.1217 220.159 27.3363 221.523C26.2241 220.008 26.7705 222.606 25.8144 222.758L26.3998 223.758L26.1266 223.5C25.5998 224.295 26.5168 224.439 26.3803 225.364C27.2362 224.337 27.4305 223.244 26.9461 222.182C27.5311 223.336 27.948 224.502 28.1949 225.674C28.3171 226.607 28.16 227.543 27.7266 228.462C27.3168 226.561 24.6046 229.129 25.3461 225.326C25.5412 225.394 25.5022 225.697 25.3461 225.818C26.6534 225.311 25.2485 223.545 24.7607 222.712C23.9997 222.924 23.8046 222.068 23.3949 223.53C23.8827 223.045 25.073 224.758 24.4486 226.152L22.8486 225.902L22.6534 227.932V227.742C21.5998 228.5 22.8486 229.902 22.2437 231.295C22.8095 232.303 22.3607 236.167 24.0583 234.508C23.0437 235.758 24.3315 236.856 24.5461 238.22L25.2095 236.515C26.3607 238.53 25.6193 237.955 27.4534 239.545C27.0046 239.712 26.6534 240.068 26.1851 239.742C26.1851 242.447 25.6388 246.311 26.9656 247.894C26.9656 249.803 25.0144 250.098 25.7363 252.773C25.9705 253.341 27.2583 252.333 26.79 254.106C26.6729 254.227 25.5803 252.402 25.7168 254.371C26.9656 255.78 25.0339 257.674 26.1071 259.5C25.6583 260.462 25.8339 262.136 24.8388 261.773C25.1284 260.432 24.9776 259.083 24.39 257.758C24.9754 257.97 24.9559 256.667 25.4242 257.758C26.1656 255.485 24.8193 256.242 25.3266 254.189C24.9168 254.045 24.2339 255.25 24.5851 255.705C23.2388 255.705 23.9412 251.614 22.3217 253.432C22.2046 255.644 25.0144 256.303 23.59 258.22C22.7705 257.462 23.4729 256.25 22.0485 255.273L21.5217 256.848L22.4778 257.992L22.2827 257.924C21.0534 260.712 23.668 260.5 24.351 262.992C25.2876 261.545 26.6729 263.326 27.2583 262.235C27.4144 263.902 27.2583 265.121 25.8924 265.136C24.7998 262.015 24.4681 264.955 23.1412 262.106C22.6534 262.576 21.19 261.417 21.0144 263.136C21.9705 265.068 22.1266 262.553 22.5753 264.485C22.4583 264.598 22.3412 264.72 22.1461 264.652C22.8485 265.538 21.8924 265.689 22.6534 266.765L22.3997 266.508C21.5802 267.833 23.3168 267.955 22.3997 269.098C23.4144 268.644 23.2192 269.856 23.8436 270.568C24.2339 269.417 25.6583 268.788 25.5802 266.508C24.7998 266.235 24.351 266.402 23.9802 265.462V266.977C23.8632 266.652 23.6485 266.409 23.4924 266.121L23.9022 264.697C24.4681 266.5 25.3071 265.674 26.1461 266.439C25.7949 268.091 26.3608 267.803 26.1461 268.841C24.9949 268.735 24.1949 272.023 23.4339 273.924C23.4339 273.629 23.4339 273.25 23.4339 273.045C22.7119 271.659 22.4778 273.992 22.1461 274.045L22.7315 275.053C22.7315 274.864 22.3802 274.598 22.2241 275.053C22.4388 276.417 23.59 276.341 23.8046 277.697C23.1607 277.803 22.1851 276.652 21.8534 277.492C20.3818 278.392 19.8579 279.477 20.39 280.523C20.7056 280.892 20.8702 281.278 20.8778 281.667C20.8611 281.597 20.8218 281.528 20.7607 281.462L20.0778 282.659C18.9851 281.636 20.5851 280.591 19.4924 279.561L18.4583 279.477C18.4577 278.666 18.1217 277.861 17.4632 277.091C17.3799 278.04 17.4843 278.989 17.7754 279.932C17.1315 280.121 16.6437 279.174 16.5656 279.023L17.151 279.227C18.0095 277.598 16.1753 276.795 16.351 274.765C16.351 274.462 16.4876 274.652 16.6827 274.72C15.6681 273.076 17.0534 271.47 15.7266 269.871L16.2729 270.394C15.8242 269.311 14.8095 267.189 13.8339 265.091H13.4241C13.19 265.333 13.19 264.538 13.4241 264.106C12.9363 263.045 12.4875 262.023 12.1363 261.189C11.8419 261.511 11.671 261.848 11.629 262.189C12.0973 262.523 11.629 264.462 12.7802 264.205C12.1363 265.106 13.0729 266.553 12.6632 267.235C13.3461 266.03 13.6778 268.076 14.2632 268.288C13.5803 268.689 14.2632 270.076 13.4047 269.917C13.6392 269.554 13.6392 269.174 13.4047 268.811C12.5461 267.553 12.6632 271.121 11.8436 269.568C12.4875 271.561 12.2144 274.197 13.0534 276.258L13.4241 275.106C13.2875 276.023 13.4241 278.189 13.0534 278.356C13.0534 277.674 13.0534 276.841 12.7802 276.008C11.7461 275.962 12.7802 278.098 12.1363 278.197L13.8534 280.727V279.621C14.4778 280.318 13.7168 282.652 13.5803 284.348C12.1559 283.364 13.5803 281.758 12.9754 279.955C12.429 278.636 11.6095 280.765 11.2778 279.523C10.9474 280.02 10.9474 280.541 11.2778 281.038L11.0242 281.53C9.75587 280.417 10.029 277.939 8.93635 276.28C9.01572 276.398 9.16248 276.506 9.36562 276.598C9.81524 275.343 9.86114 274.071 9.50222 272.811C9.20997 273.235 9.20997 273.682 9.50222 274.106C9.19002 274.152 9.05343 272.977 8.70221 272.538C8.31196 273.689 7.94123 272.75 7.7266 273.485C7.5007 272.73 7.5007 271.967 7.7266 271.212C8.2144 270.735 8.39002 271.606 9.01441 271.508C8.64368 270.568 10.1656 270.136 9.42415 268.75C9.15098 270.591 8.03876 268.265 7.629 267.636V267.939C7.27899 267.717 7.0938 267.461 7.0938 267.201C7.0938 266.94 7.27899 266.685 7.629 266.462C7.92168 267.22 7.62905 267.939 8.46807 267.727C8.46136 267.208 8.36352 266.689 8.17534 266.174L8.72168 266.682L8.56561 264.22C7.88038 263.711 7.042 263.235 6.06805 262.803C6.44383 262.147 6.3969 261.465 5.93145 260.818L6.22412 261.083C6.78997 259.992 6.22416 257.568 5.71684 257.364C6.24367 256.606 9.48269 262.864 8.93635 257.364C8.93635 255.273 6.98515 256.061 6.39978 254.871C6.39978 254.871 6.59485 254.939 6.71193 254.818C6.84851 253.902 6.1266 253.811 5.83391 253.061C5.5492 253.588 5.5492 254.132 5.83391 254.659C5.05343 254.386 5.83392 252.758 5.28757 252.053C6.49733 252.962 5.75586 250.288 6.38025 250.992C6.97246 249.408 6.60497 247.792 5.30705 246.273C6.829 245.038 5.09243 244.106 5.81438 242.098C5.81438 242.409 5.98999 242.97 5.81438 243.402C6.77048 244.538 6.32168 241.318 7.19973 243.083C7.04363 242.705 6.67296 243.083 6.82905 243.439C6.94613 244.114 7.3754 244.75 7.80466 244.576L8.66315 242.947L8.89734 243.515L10.0876 241.038C9.89244 240.97 9.63876 241.205 9.52169 241.318C10.0485 238.447 9.3851 235.159 9.52169 232.644C6.78998 232.167 8.35097 226.439 6.67292 224.409C7.45341 224.955 8.83876 225.25 9.40462 224.909C10.0296 225.692 10.3647 226.506 10.3998 227.326C9.95098 227.485 9.46319 228.758 8.95588 227.939C9.26807 230.788 10.1656 227.553 11.1802 228.394C10.9071 225.242 9.229 223.394 8.66315 221.409L8.99488 221.356L8.39001 219.841C8.19488 221.068 6.65339 221.008 7.19973 219.424V219.614C7.84363 218.712 7.08266 216.833 7.19973 215.424L6.30219 214.47C6.39975 213.061 8.07782 213 9.07294 212.538C9.19002 210.326 7.82417 209.045 7.00466 207.477C7.72661 206.765 7.90223 203.455 8.78027 205.205C8.15588 203.212 4.2534 203.614 6.41926 200.189L7.12173 201.076C6.96563 197.803 5.58025 193.136 6.32172 191.629C8.81928 192.841 8.87783 187.545 11.3364 186.962C10.7705 187.121 10.5949 185.894 10.2827 185.712C10.4893 185.524 10.5958 185.322 10.5958 185.117C10.5958 184.913 10.4893 184.711 10.2827 184.523C9.79489 185.795 7.72656 183.621 8.72168 186.038C6.50159 184.328 5.49154 182.419 5.79485 180.508L6.82905 180.545L6.51685 182.689C7.27783 182.47 7.21925 183.576 7.57047 184.023C8.13632 180.045 9.97047 184.545 9.83389 180.477C9.17047 180.083 9.44367 180.341 9.19001 179.28C9.19001 179.78 9.93149 179.871 9.93149 179.068L9.11195 178.311C10.829 176.886 10.2241 180.667 11.4339 179.455C12.2534 181.023 12.6827 183.742 13.99 183.242C14.4583 180.682 11.5315 180.97 12.0388 178.25L12.5851 177.97C12.2144 177.023 11.2973 176.871 10.751 176.356C11.0827 176.311 11.3168 176.068 11.4144 175.462C10.0875 173.864 9.83391 172.811 8.39001 171.341C9.46318 175.25 7.37537 174.682 8.39001 178.727C7.96074 178.091 7.64851 175.25 6.22412 175.076H7.25827C6.5449 173.667 6.2958 172.229 6.51685 170.795L7.10219 171.803C6.38024 169.621 8.6632 168.167 6.94612 166.447C6.85241 166.939 6.88507 167.434 7.04366 167.924C6.66587 166.667 6.60706 165.398 6.86806 164.136L5.17051 161.606C5.67782 161.606 5.71685 160.023 6.51685 160.795C7.31685 158.977 5.77537 158.114 5.52171 157.061C6.61439 155.197 6.00952 158.682 7.47293 158.864C7.95665 156.608 7.66133 154.338 6.59486 152.114C6.38022 152.636 6.20464 152.871 5.95098 152.871C6.23739 152.313 6.32277 151.742 6.20465 151.174L5.54124 150.78C5.99002 149.818 6.38027 149.955 6.88759 150.78C7.00466 149.864 5.73636 148.765 6.69245 147.818C7.49245 149.386 6.79001 151.386 7.29733 152.205C6.63391 148.924 9.24852 148.902 8.48754 144.742C8.79974 144.697 9.42417 145.402 9.44368 144.598C9.19002 142.742 8.05832 144.114 7.31686 143.53C7.7597 144.516 7.46858 145.531 6.47779 146.455L5.93145 146.076C6.22413 146.015 6.22415 145.121 6.49732 144.856L5.40464 144.621C6.6144 144.735 7.55097 143.295 7.10219 142.167C6.20463 143.311 6.26318 143 4.8583 143.311C3.53147 141.72 6.16558 141.523 4.76071 139.742C5.15095 139.871 5.44365 141.424 5.75585 140.083C5.75585 138.977 4.83878 139.121 4.5461 138.379C5.56074 139.22 6.32171 139 7.53146 139.894C7.51529 140.806 7.65871 141.717 7.96074 142.621L8.81928 140.985C8.99489 142.659 9.98998 142.205 10.3802 142.341C11.4144 139.485 8.83876 140.189 9.09242 138.356C8.40949 137.47 8.95587 140.076 8.2144 138.689C8.3705 136.97 7.55099 138.295 7.12173 136.371L7.59 136.689C8.19488 136.098 7.43389 135.523 7.33633 134.841C7.23877 134.159 3.7851 135.689 3.72656 132.568C3.99973 132.72 4.19489 132.773 4.31196 132.773L12.8778 135.803C12.8778 132.682 13.0925 129.076 13.6583 125.462C15.3364 124.606 15.0436 128.045 15.8046 127.818L15.4534 129.47C14.751 129.379 15.2388 126.015 13.99 127.508C14.4973 130.417 13.6778 131.742 15.1412 134.508C16.8193 133.644 14.8485 130.864 16.1363 129.068C16.0645 129.74 16.1691 130.412 16.4486 131.076C16.6697 129.389 16.9103 127.583 17.1705 125.659L16.7608 125.227C16.5656 126.523 16.429 127.417 16.3705 127.538C16.5071 125.818 15.59 124.371 14.4193 124.258V124.561L14.0485 123.939L14.2632 122.841ZM14.5559 11.5455C14.6568 11.6364 14.8026 11.7187 14.9851 11.7879C14.79 11.7273 14.6729 11.7955 14.5559 11.5455ZM18.4583 156.462C18.6339 154.189 18.9656 151.864 19.1217 149.644C16.6827 153.614 14.8485 156.402 14.9071 149.78L14.7315 149.341C14.4287 150.6 14.3765 151.866 14.5753 153.129C15.7848 154.746 17.2178 156.337 18.868 157.894C19.551 157.492 18.8681 156.909 19.0242 156.174L18.4583 156.462ZM14.3997 158.091C14.1266 159.386 14.6534 159.091 15.1412 159.295C15.1412 158.841 15.0241 158.379 14.9656 157.932C14.751 158.106 14.5949 158.189 14.3217 158.091H14.3997ZM15.629 159.22C15.6195 159.105 15.6524 158.99 15.7266 158.879L15.629 159.22ZM16.2339 133.977C16.2339 134.03 16.2339 134.053 16.2339 134.106C16.2339 133.803 16.2729 133.492 16.351 133.174C16.2205 133.439 16.1552 133.708 16.1559 133.977H16.2339ZM15.0631 136.614L15.9412 136.917C15.9412 136.629 15.9412 136.341 16.0388 136.045C15.7584 136.1 15.5162 136.181 15.3328 136.279C15.1493 136.378 15.0301 136.493 14.9851 136.614H15.0631ZM12.1363 145.076C13.2095 145.614 13.2485 147.402 14.4778 147.508C14.79 147.621 14.9071 147.242 15.0241 146.826C15.1412 146.409 15.0242 145.848 15.1217 145.311C14.9461 145.311 14.7705 145.182 14.6144 145.008C14.4583 145.538 14.1461 145.886 13.4047 145.674C15.0437 144.318 12.2339 144.462 12.6437 143C11.7071 142.538 11.7071 144.636 12.0583 145.076H12.1363ZM15.3363 257.53C15.075 257.653 14.8339 257.782 14.6144 257.917L14.0095 256.886C14.2827 255.045 15.9607 253.576 14.5168 251.917C14.825 251.342 15.4582 250.801 16.3705 250.333C16.3705 250.712 16.2534 251.091 16.1559 251.364C18.3022 256 13.7363 253.788 15.2583 257.53H15.3363ZM17.5022 236.394C17.5216 236.489 17.6171 236.579 17.7754 236.652C15.9353 233.466 14.9932 230.212 14.9656 226.947C14.068 227.379 13.3656 229.364 13.0144 230.303L11.9802 229.47L12.7802 228.947L11.8632 227.5C11.1802 227.902 11.3169 229.076 10.79 229.856C10.9851 229.924 12.1754 232.432 12.7412 233.136L13.4437 231.129C13.2625 232.548 13.3343 233.971 13.6583 235.386C14.1656 235.386 14.9461 233.591 13.8534 233.364C14.5949 233.144 14.6144 235.242 15.4144 233.917C15.9427 235.655 15.864 237.414 15.1803 239.144L13.9119 239.333C13.4241 240.606 15.4339 240.197 14.7119 241.705C14.4583 239.848 13.3071 242.023 13.2095 240.545C12.7412 241.015 11.8632 240.545 11.9607 242.061C13.6583 243.295 10.9071 243.621 12.39 244.788C11.8632 245.545 11.3753 243.947 11.1607 245.477C12.0388 247.235 12.6827 247.136 13.9119 247.242C14.2436 245.598 12.312 245.402 12.6046 244.053L14.7119 246.727C14.9671 246.349 15.0464 245.957 14.9461 245.568C15.0401 246.043 15.3299 246.508 15.8046 246.947C16.0583 247.167 16.2534 247.379 16.429 247.568C16.429 246.053 16.429 244.705 16.9949 244.47L17.5998 244.674C17.9993 244.073 17.8828 243.437 17.268 242.864C17.268 241.508 16.39 240.152 17.151 239.833L17.6973 240.348C17.5022 238.674 17.4242 238.492 17.4242 236.364L17.5022 236.394ZM18.8485 181.758C16.6827 182.765 14.751 183.879 15.1217 188.576L14.9851 188.205C13.6193 190.583 16.7802 192.841 15.2778 195.727C14.8165 194.72 13.9262 193.75 12.6437 192.856L13.2681 194.371C12.0778 193.955 12.6827 195.455 12.6241 196.561L11.2193 195.583C11.6401 194.819 11.7193 194.032 11.4534 193.258C11.6095 193.629 13.229 190.985 12.8193 189.553C11.8632 189.697 12.2534 192.735 10.6924 191.379C11.3558 192.568 10.3997 192.72 10.6924 193.97C10.029 192.773 9.38511 193.674 8.74121 192.78L9.07294 194.826C8.76075 194.879 8.37051 191.848 7.12173 193.523C7.60953 194.341 6.98512 196.553 8.01927 196.553L7.70707 196.606C7.47292 198.121 9.15097 197.28 8.56561 199.159C9.09244 199.159 9.44365 198.826 9.34608 198.152C8.75367 197.564 8.38556 196.947 8.25341 196.318C9.05341 195.795 8.15583 197.735 9.52169 196.924C10.1851 196.515 8.93634 193.818 10.4583 194.652L10.2437 196.167C11.2778 196.205 11.2193 197.311 12.0388 197.28C12.429 198.22 11.2583 199.098 12.1558 200.053C12.8193 200.455 14.1071 199.758 13.5217 201.341C11.9998 202.576 12.2924 206.22 12.5071 207.583L13.1705 208.773C13.7949 208.674 13.1705 206.5 13.9119 207.258L14.1461 209.121L13.7559 208.977C13.7808 209.587 13.9705 210.194 14.3217 210.788C13.5803 210.212 13.873 208.864 12.7998 209.136C12.4643 209.731 12.3331 210.339 12.4095 210.947C12.4095 210.773 12.2144 210.621 12.0778 210.644C11.6095 212.409 13.268 212.348 13.6193 212.795C15.0241 214.568 14.9071 211 16.0193 211.227L16.6046 216.417C16.2534 215.977 15.9217 215.53 15.4729 215.697C14.9851 216.97 14.6339 215.697 14.6925 217.515C16.1559 217.386 15.6095 219.788 16.4486 221.03C15.8632 221.614 15.7266 221.742 15.7071 220.447C14.7705 220.598 15.1217 222.326 15.0437 222.947C15.2778 223.303 15.4144 223.909 15.629 224.295C16.0973 223.78 16.7022 224 17.112 225.121L17.3071 225.182C17.5608 223.348 18.6144 220.5 17.6388 219.348L18.1071 219.674C18.9266 217.553 16.39 215.053 18.1071 214.076C18.8291 214.167 18.2827 213.652 19.3168 213.689L18.4973 212.121L18.9656 212.447L18.7314 209.788L18.9266 209.864C17.99 208.598 17.2485 207.591 16.6242 206.833C16.1754 206.833 16.0388 206.909 15.7071 206.492C15.5082 206.155 15.4424 205.807 15.5119 205.462C15.629 204.803 16.2729 204.371 16.5461 203.568L16.6437 206.038C17.4047 206.242 18.2046 206.038 18.7314 204.818C18.7314 205.318 19.3558 205.523 19.4534 204.909C19.2583 204.841 18.9656 203.288 18.3607 203.879C18.068 201.53 20.0778 197.735 18.6339 194.167C19.4924 196.727 19.6485 192.114 19.9607 194.924C21.19 192.939 18.7705 193.22 18.9461 191.197C19.3949 191.023 18.9461 192.295 19.7656 192.765C20.2534 189.402 17.8144 187.083 18.1656 183.833L19.1022 183.689C19.0436 183.152 18.9071 182.47 18.7705 181.758H18.8485ZM17.6778 175.318C17.5608 174.689 17.4437 174.061 17.3461 173.409C17.3461 173.477 17.3461 173.53 17.3461 173.598L16.5852 171.72C16.2144 172.871 15.1608 173.636 14.6339 172.015C15.0242 172.152 15.4925 171.682 15.7266 172.242C16.2925 171.159 16.8583 168.78 15.4144 169.402C16.7803 171.485 13.5802 169.886 14.5949 171.523C13.6583 170.644 14.0876 169.773 13.6583 168.939C14.4388 169.803 15.4339 168.742 15.8046 167.424C15.5705 166.856 15.8047 165.326 15.4144 164.394C14.5364 164.727 14.0485 163.917 13.8144 165.439C13.4705 164.644 13.4705 163.833 13.8144 163.038C13.9705 163.424 14.068 164.098 14.3997 164.053C14.9155 163.48 15.2879 162.889 15.5119 162.288C15.5119 161.962 15.4144 161.636 15.3753 161.318C15.3113 161.404 15.2052 161.483 15.0631 161.553L14.3022 160.477C14.712 161.909 13.8924 161.136 13.3656 161.121C14.3997 161.159 13.5022 160.197 13.3656 159.712L12.2924 160.773C11.7461 160.258 13.0729 158.955 11.9998 159.258C11.6173 160.977 11.6173 162.705 11.9998 164.424L12.8388 163.598C13.4437 165.871 11.3949 165.015 11.4339 167.606C12.1949 168.682 11.4339 171.492 13.0339 171.545C12.5656 171.22 11.6485 173.159 12.351 174.045C13.7754 175.023 13.951 177.985 14.5949 177.076C14.5949 176.273 13.8534 175.197 14.7705 174.553L15.0631 176.106L15.8241 175.083C15.7071 175.614 16.4681 175.561 17.5998 175.318H17.6778ZM26.3217 140.568C26.3217 140.568 26.3217 140.53 26.3217 140.508C26.3122 140.53 26.3122 140.553 26.3217 140.576V140.568Z' fill='white'/%3E%3Cpath d='M18.4585 280.508C18.8097 280.955 18.7512 282.061 19.5122 281.841C18.6731 281.871 19.3951 279.871 18.4585 280.508Z' fill='white'/%3E%3Cpath d='M17.6587 281.818C17.8538 281.894 18.166 281.818 18.205 282.333L17.9904 280.97L17.6587 281.818Z' fill='white'/%3E%3Cpath d='M11.9222 283.212C12.6482 283.935 12.9611 284.71 12.8392 285.485C10.888 285.894 12.2734 283.674 10.3807 283.174C10.1856 285.197 11.9612 285.818 12.1368 287.485C13.0148 286.644 13.5026 283.273 11.9222 283.212Z' fill='white'/%3E%3Cpath d='M9.40479 282.318L9.85357 283.439L9.97064 283.333L9.52186 282.205L9.40479 282.318Z' fill='white'/%3E%3Cpath d='M27.0242 257.947C27.6681 257.841 27.0243 257.144 26.8877 256.765C26.7448 257.159 26.7911 257.56 27.0242 257.947Z' fill='white'/%3E%3Cpath d='M27.6878 36.8409L27.0635 28.2576C27.2391 30.7273 27.3171 33.0076 27.6878 36.8409Z' fill='white'/%3E%3Cpath d='M22.8877 229.462C23.4731 231.735 24.5657 232.788 24.8389 235.136C26.1072 232.053 22.8877 231.061 24.1365 228.47L22.8877 229.462Z' fill='white'/%3E%3Cpath d='M27.9416 230.303C26.7513 230.682 26.5367 228.523 25.6587 228.864C25.9514 230.417 26.8099 229.583 26.6928 230.992L27.9416 230.303Z' fill='white'/%3E%3Cpath d='M8.19519 240.72L7.5708 240.015L7.80495 240.583L8.19519 240.72Z' fill='white'/%3E%3Cpath d='M26.8682 219.773L27.1413 220.023L27.5316 218.871L26.8682 219.773Z' fill='white'/%3E%3Cpath d='M5.63891 239.818L5.38525 240.856L5.9316 241.371L5.63891 239.818Z' fill='white'/%3E%3Cpath d='M12.0586 230.652L12.4293 231.583C12.3513 231.394 12.8391 230.129 12.0586 230.652Z' fill='white'/%3E%3Cpath d='M27.3754 212.712L26.9266 211.583L26.8096 211.697L27.2584 212.826L27.3754 212.712Z' fill='white'/%3E%3Cpath d='M8.76119 223.379C7.84412 224.023 8.50752 221.523 7.70752 222.848C7.8441 224.023 8.31241 223.545 8.76119 223.379Z' fill='white'/%3E%3Cpath d='M14.9852 209.735C14.988 209.579 14.9421 209.424 14.8486 209.273C14.8877 209.455 14.9267 209.606 14.9852 209.735Z' fill='white'/%3E%3Cpath d='M14.9853 209.735C14.8307 210.174 14.798 210.619 14.8877 211.061C15.2186 210.63 15.2523 210.172 14.9853 209.735Z' fill='white'/%3E%3Cpath d='M14.7709 204.099V204.545C14.3221 204.091 14.4002 204.303 14.7709 204.712C14.7709 205.182 15.1026 205.159 15.2978 205.212L15.649 205.508C15.5319 205.356 15.4148 205.227 15.3172 205.114C15.2392 204.386 15.1807 203.939 14.7709 204.099Z' fill='white'/%3E%3Cpath d='M30.2246 183.144C29.8929 184.796 29.7173 185.22 29.0148 185.129C28.7807 186.697 30.0099 186.455 30.3026 187.402C30.166 185.606 30.4977 185.265 30.2246 183.144Z' fill='white'/%3E%3Cpath d='M30.3022 187.394C30.3022 187.591 30.3022 187.78 30.3022 188.015C30.3357 187.808 30.3357 187.601 30.3022 187.394Z' fill='white'/%3E%3Cpath d='M6.96575 210.689L5.89258 209.667L6.02916 210.038L6.96575 210.689Z' fill='white'/%3E%3Cpath d='M30.595 180.697C30.6051 181.045 30.5201 181.393 30.3413 181.735C31.0437 181.818 30.634 180.394 30.595 180.697Z' fill='white'/%3E%3Cpath d='M16.6242 187.053C16.1949 187.22 16.4486 188.28 16.2729 188.704C16.3705 188.091 17.7754 187.591 16.6242 187.053Z' fill='white'/%3E%3Cpath d='M27.6488 175.97C27.6488 176.273 27.122 176.727 26.5366 176.538C26.8878 176.985 28.1366 177.583 27.6488 175.97Z' fill='white'/%3E%3Cpath d='M16.7415 184.045L16.5073 184.28L16.9561 185.409L16.7415 184.045Z' fill='white'/%3E%3Cpath d='M6.22412 188.068C7.08266 189.333 8.27293 186.053 8.99488 188.243C9.89244 185.417 7.80462 188.455 7.9412 186.379C7.64852 187.591 6.57534 188.19 6.22412 188.068Z' fill='white'/%3E%3Cpath d='M13.3071 168.515C13.3824 168.659 13.4801 168.8 13.5998 168.939C13.5389 168.795 13.4408 168.652 13.3071 168.515Z' fill='white'/%3E%3Cpath d='M7.23897 179.735L8.50725 181.636C7.66823 180.364 7.70726 177.167 6.43896 177.371C6.18179 178.307 6.39384 179.254 7.06337 180.159L7.23897 179.735Z' fill='white'/%3E%3Cpath d='M30.283 157.902L30.7903 158.727L30.9268 157.697C30.7317 157.992 29.8147 157.462 30.283 157.902Z' fill='white'/%3E%3Cpath d='M30.9658 157.5V157.697C30.9904 157.631 30.9904 157.565 30.9658 157.5Z' fill='white'/%3E%3Cpath d='M13.8732 172.114C13.763 172.67 13.822 173.229 14.0488 173.78C14.3415 173.545 14.5757 172.015 13.8732 172.114Z' fill='white'/%3E%3Cpath d='M28.4292 152.114L28.6438 153.47L28.5463 151.992L28.4292 152.114Z' fill='white'/%3E%3Cpath d='M30.5952 145.788L30.8294 145.553L30.3611 144.432L30.127 144.667L30.5952 145.788Z' fill='white'/%3E%3Cpath d='M5.58055 154.068C5.44397 154.985 6.59522 155.705 6.82936 155.462V153.682C5.83424 154.129 6.82933 154.174 6.6147 155.197L5.58055 154.068Z' fill='white'/%3E%3Cpath d='M28.7217 98.8106C29.3851 99.2121 28.9949 101.159 28.3705 101.265C28.0973 101 27.8242 99.9393 27.4339 100.606L29.073 102.121C28.0388 104.174 26.9071 100.561 26.3413 99.5454C26.1266 101.636 27.1997 102.258 27.1997 104.477C27.3005 103.989 27.6037 103.511 28.0973 103.061C29.2486 102.985 28.7413 105.061 28.8388 106.538C29.3266 105.598 29.7559 106.144 30.2046 106.833C30.2248 106.925 30.2841 107.014 30.3802 107.098L30.5558 107.326V107.151C30.6729 107.151 30.829 107.151 31.0436 106.992C31.0283 105.977 31.2438 104.963 31.6876 103.962C29.7364 104.758 31.2583 101.235 30.6729 100.235L30.4973 99.0681V98.6363C30.6924 98.5454 30.9461 98.6742 31.3168 99.3333C30.9656 98.7802 31.0827 96.9393 30.4778 97.106V92.9015C30.5404 92.7755 30.6453 92.6532 30.79 92.5378C30.673 92.3939 30.5754 92.3712 30.4778 92.3863L30.3608 74.053C30.2047 74.9545 29.7754 75.7424 29.5608 76.6742C28.3315 75.2727 29.3461 78.1893 28.1754 77.7878C27.824 77.095 27.824 76.3822 28.1754 75.6893C27.59 75.4848 27.0632 76.2727 26.3413 76.1818C25.5998 78.4545 28.4485 78.8484 28.0193 81.106C27.2973 81.0151 26.6729 80.3484 26.7705 81.7954L26.6144 81.4242C27.4144 83.7954 25.0144 83.2651 26.9656 84.7575H25.9315C26.5676 86.1936 26.8745 87.6488 26.8485 89.106L26.6534 89.0302C27.8436 92.3409 26.9071 90.8863 27.3949 94.606L26.2047 92.8939C25.6973 94.1742 27.0047 94.4621 26.8681 95.3787C26.6729 95.3181 25.9315 95.5303 25.7363 94.6212L27.5705 99.1666C28.3119 100.273 28.2924 98.9772 28.7217 98.8106Z' fill='white'/%3E%3Cpath d='M27.2002 104.545C27.1494 104.823 27.1494 105.101 27.2002 105.379C27.1807 105.03 27.2002 104.765 27.2002 104.545Z' fill='white'/%3E%3Cpath d='M30.3218 72.8333V74.1211C30.3994 73.6924 30.3994 73.262 30.3218 72.8333Z' fill='white'/%3E%3Cpath d='M29.4829 110.97C30.0097 110.212 30.2243 111.553 30.6145 111.727V108.932C30.2243 108.932 29.7755 108.667 29.4243 108.72L29.4829 110.97Z' fill='white'/%3E%3Cpath d='M31.2976 108.083C30.9174 107.854 30.6648 107.595 30.5562 107.326V108.841C30.8488 108.879 31.122 108.712 31.2976 108.083Z' fill='white'/%3E%3Cpath d='M10.1462 108.379L10.1071 107.879L9.81445 107.129L10.1462 108.379Z' fill='white'/%3E%3Cpath d='M11.9221 100.629C11.5396 101.318 11.5396 102.031 11.9221 102.72C12.0197 102.023 12.0197 101.325 11.9221 100.629Z' fill='white'/%3E%3Cpath d='M5.4439 102.227L5.11219 100.985L4.99512 101.098L5.4439 102.227Z' fill='white'/%3E%3Cpath d='M26.2827 63.3107C26.2827 63.1061 26.2827 62.9091 26.2827 62.7046C26.245 62.9063 26.245 63.1089 26.2827 63.3107Z' fill='white'/%3E%3Cpath d='M27.2583 74.0077C28.4095 71.038 28.2144 75.9546 29.6973 75.0228L29.2095 73.4016L29.5998 73.5455L29.4827 71.5683C28.8193 71.9698 28.7608 72.2804 28.0583 72.1895C28.3315 69.5531 28.8974 71.3561 29.7949 69.4243L29.6779 66.4774L29.8925 66.7198C29.9078 66.5657 29.8275 66.4124 29.6583 66.2728L29.2291 56.3486C28.6632 54.5455 27.9413 57.3486 26.8876 56.0152C26.8876 58.1137 26.1267 61.2198 27.5511 61.4016C27.3559 61.3258 26.9657 61.1895 26.7901 61.6137L27.9608 62.8258L28.3511 61.6668C29.3422 63.6003 29.4017 65.5884 28.5267 67.5304C28.1364 65.2577 26.7315 66.4167 27.4925 63.3031C27.1218 63.4395 26.4974 64.0152 26.3022 63.3031C26.6925 66.9622 26.0486 70.2274 27.2583 74.0077Z' fill='white'/%3E%3Cpath d='M26.5757 37.4091H26.6928C26.6342 37.3712 26.5757 37.3561 26.5757 37.4091Z' fill='white'/%3E%3Cpath d='M26.3999 38.6364L27.7853 40.4167L27.6682 37.644L26.6926 37.4395C27.1397 37.9508 27.2667 38.4962 27.0633 39.0304L26.3999 38.6364Z' fill='white'/%3E%3Cpath d='M28.6244 42.4772C28.2146 41.0454 27.0634 41.1212 26.5365 41.909C26.0097 40.5909 27.7853 41.2121 26.5365 40.303C25.717 40.303 26.2048 41.9545 26.3609 42.3257L28.6244 42.4772Z' fill='white'/%3E%3Cpath d='M28.0194 53.0456L27.5511 52.6365L27.4146 53.6365L28.0194 53.0456Z' fill='white'/%3E%3Cpath d='M27.5319 52.644L27.649 51.6592C27.2642 51.7168 26.9363 51.8202 26.7124 51.9546L27.5319 52.644Z' fill='white'/%3E%3Cpath d='M28 49.0759C28.0976 48.6516 28.1561 48.1971 28.1951 47.6365L28 49.0759Z' fill='white'/%3E%3Cpath d='M27.7075 50.1969H27.8637L28.0002 49.106C27.9221 49.4772 27.8246 49.8332 27.7075 50.1969Z' fill='white'/%3E%3Cpath d='M27.6685 51.6592C28.488 51.4925 29.327 51.3107 29.1123 49.8865L27.8636 50.1668L27.6685 51.6592Z' fill='white'/%3E%3Cpath d='M6.67326 93.1591L6.20496 92.0378L6.08789 92.1515L6.53667 93.2803L6.67326 93.1591Z' fill='white'/%3E%3Cpath d='M7.41462 86.6667C7.25852 86.3864 7.12192 86.1743 6.96582 85.9849C7.00878 86.2208 7.16082 86.4517 7.41462 86.6667Z' fill='white'/%3E%3Cpath d='M1.89283 81.8182C2.71235 80.4925 2.96604 83.644 3.33678 81.197C4.09775 80.9773 5.05385 82.1289 4.68312 83.2804C3.98068 83.1895 4.23433 82.1592 3.51238 82.8637C4.33189 83.6213 3.76602 83.9243 4.83919 83.6213C5.36559 84.4028 6.07758 85.1636 6.96602 85.894C6.49772 84.3334 7.5904 81.0607 6.22454 79.0758C4.93674 77.9849 3.18066 78.6516 1.30749 78.644C0.878223 78.9016 0.663565 81.7273 1.89283 81.8182Z' fill='white'/%3E%3Cpath d='M0.0390035 83.9167C-0.0497229 84.3088 -0.00377764 84.7037 0.175603 85.091C0.819506 84.9925 0.0780279 84.4167 0.0390035 83.9167Z' fill='white'/%3E%3Cpath d='M14.0488 69.8334C13.7756 69.7122 13.4634 68.6061 12.9951 68.841L13.3269 70.5228C13.3233 70.395 13.3852 70.2683 13.5092 70.1499C13.6331 70.0315 13.8166 69.9239 14.0488 69.8334Z' fill='white'/%3E%3Cpath d='M13.4829 71.2651L13.3269 70.5076C13.3114 70.7615 13.3637 71.0154 13.4829 71.2651Z' fill='white'/%3E%3Cpath d='M14.205 69.75C14.1594 69.7795 14.1072 69.8073 14.0488 69.8331C14.0488 69.8331 14.1659 69.8483 14.205 69.75Z' fill='white'/%3E%3Cpath d='M28.4685 44.9925C28.9758 44.9925 28.6831 44.235 28.4685 43.894C28.3692 44.2592 28.3692 44.6274 28.4685 44.9925Z' fill='white'/%3E%3Cpath d='M26.4585 16.788L26.8682 16.1289C26.6157 16.3352 26.4762 16.5597 26.4585 16.788Z' fill='white'/%3E%3Cpath d='M12.527 6.58309C12.4027 6.55276 12.3069 6.50769 12.2539 6.45459C12.332 6.51506 12.41 6.56797 12.527 6.58309Z' fill='white'/%3E%3Cpath d='M12.2537 6.45456C11.8439 6.00002 12.5073 4.60608 11.8439 4.10608L12.0586 4.16668L11.6683 3.23486C11.5561 4.3132 11.7525 5.39304 12.2537 6.45456Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_43_2270'%3E%3Crect width='32' height='300' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.advantages-content-right::after {
    width: 20px;
    height: 100%;
    top: 0;
    right: -10px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='300' viewBox='0 0 20 300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_31_5158)'%3E%3Cpath d='M10.076 292.424C10.076 292.576 9.97474 292.811 9.90723 292.993C9.90723 292.47 9.90719 292.212 10.076 292.424Z' fill='white'/%3E%3Cpath d='M9.29976 300C9.1647 297.666 9.36764 295.33 9.90733 293.008C10.093 294.743 11.1225 299.409 9.29976 300Z' fill='white'/%3E%3Cpath d='M13.0295 292.099L12.4895 294.523C12.0001 293.106 12.8439 293.364 13.0295 292.099Z' fill='white'/%3E%3Cpath d='M11.325 292.985L10.6499 292.856L11.3081 291.561L11.325 292.985Z' fill='white'/%3E%3Cpath d='M4.65842 168.84C4.3715 169.09 4.06766 169.249 3.6626 169.128L4.65842 168.84Z' fill='white'/%3E%3Cpath d='M7.69629 163.212C7.81443 162.704 7.84816 162.356 7.88192 162.052C7.91677 162.441 7.85452 162.83 7.69629 163.212Z' fill='white'/%3E%3Cpath d='M4.94501 173.946L4.84375 172.946C4.95392 173.277 4.98785 173.612 4.94501 173.946Z' fill='white'/%3E%3Cpath d='M7.51042 236.367C7.02097 237.299 6.58208 238.177 6.27828 238.844C5.75507 237.034 6.86907 236.882 7.51042 236.367Z' fill='white'/%3E%3Cpath d='M17.4683 137.357L16.9282 137.114C17.1645 136.849 17.4008 136.72 17.4683 137.357Z' fill='white'/%3E%3Cpath d='M16.6581 161.863C16.5231 161.874 16.3836 161.867 16.2573 161.843C16.1311 161.819 16.0239 161.778 15.9492 161.727C15.9492 161.636 15.9491 161.53 16.0842 161.439L16.6581 161.863Z' fill='white'/%3E%3Cpath d='M6.04243 177.908V177.961L5.70486 178.771C5.56472 178.475 5.6857 178.165 6.04243 177.908Z' fill='white'/%3E%3Cpath d='M18.1938 129.463C18.4825 129.112 18.8803 128.78 19.3753 128.478C19.1221 129.236 18.6158 129.592 18.1938 129.463Z' fill='white'/%3E%3Cpath d='M7.88184 161.916C7.88184 161.916 7.88184 162.03 7.88184 162.068C7.89228 162.017 7.89228 161.966 7.88184 161.916Z' fill='white'/%3E%3Cpath d='M16.0845 169.991C16.1689 169.56 16.2364 169.158 16.3546 168.696C16.4746 169.132 16.3824 169.574 16.0845 169.991Z' fill='white'/%3E%3Cpath d='M7.51074 236.367C7.64576 236.102 7.76389 235.844 7.91579 235.609C7.91536 235.873 7.7766 236.132 7.51074 236.367Z' fill='white'/%3E%3Cpath d='M8.86084 285.91C8.86084 285.152 9.23217 284.94 9.62035 284.796C9.49426 285.182 9.23815 285.558 8.86084 285.91Z' fill='white'/%3E%3Cpath d='M6.53174 1.93926V1.62109C6.55028 1.72699 6.55028 1.83337 6.53174 1.93926Z' fill='white'/%3E%3Cpath d='M5.08006 32.021C4.97498 32.1608 4.82729 32.2934 4.64122 32.415C4.5062 32.1574 4.84377 32.0135 5.08006 32.021Z' fill='white'/%3E%3Cpath d='M18.0928 59.7317C17.3164 57.7621 18.9198 55.7319 19.0042 54.0274L18.3291 54.6107L18.8861 52.8836H17.9409C18.3798 50.0276 17.4009 46.4899 18.9199 45.4521L17.3839 45.7854L18.5992 42.7553L17.5696 44.4825C17.2489 41.0887 18.4303 35.9299 18.4135 35.2026L17.8566 35.5056C17.7127 34.9801 17.8044 34.4469 18.1266 33.9375L17.2658 34.3845C17.5021 29.2635 15.5781 27.8621 16.4726 22.1503C16.2701 20.5973 16.2025 23.0139 15.7131 23.0366C15.2807 21.9451 15.4019 20.824 16.0675 19.7564C14.7342 20.211 15.1392 22.6124 14.0759 20.7867C14.7341 19.4913 12.8439 21.673 13.0971 19.3852L14.7848 18.4914C14.481 17.2187 13.4346 18.2338 13.6034 16.2187C14.346 13.9461 15.5443 19.0292 15.7974 15.3324C15.6793 13.4765 11.8481 11.4311 12.7595 7.84038C11.865 4.74962 10.1097 9.47666 10.5316 5.18899L9.41775 7.93128C8.9283 7.21919 8.08439 7.66614 8.43882 5.81017C9.38324 4.95499 9.95604 4.02687 10.1266 3.07546C8.827 7.09041 8.18561 -0.447085 6.49785 3.29515V1.90128C6.49785 2.07552 6.26161 2.11339 6.12659 2.02249L6.02533 0.211973C5.65402 1.35585 5.50213 4.06784 4.2363 2.81033L3.93252 0.128644C2.98737 0.840729 2.58231 -0.14407 1.82281 0.0150133L0 7.90098C0.57384 7.59039 0.945189 6.45408 1.51903 6.8783C2.00848 8.98426 0.489451 8.59791 1.26582 10.5751L2.02534 9.70392C1.73842 9.85543 1.65398 10.1357 1.55271 9.70392C1.06326 9.01456 1.63713 8.71154 2.1097 8.70397C3.07173 9.39333 2.43034 11.3932 1.75524 11.9841C1.87338 14.5446 3.44302 12.5144 3.78057 13.075C2.09281 14.4006 3.7806 17.3475 3.07174 18.9383L4.11815 17.9156C4.91207 19.5123 4.85999 21.1703 3.9662 22.7563L4.82698 22.3093C4.6582 25.0213 7.54427 26.3697 4.5063 28.4378L5.08018 28.15C5.35023 29.2635 5.9747 30.9528 5.08018 32.021C5.43462 32.021 5.87338 32.2331 5.97465 32.6876C4.81009 33.2861 5.7046 34.4451 5.97465 36.0814C6.27844 34.9981 7.79741 35.3238 8.16872 34.1951C9.72146 36.7253 6.48095 36.5132 6.48095 38.6419C7.25733 39.9145 7.32488 37.498 7.89872 37.195C7.07172 40.4751 11.3924 43.937 8.37134 46.0127L7.39241 44.6037C6.73418 45.9066 6.75103 46.6187 7.03795 46.4596C6.97381 46.3327 6.9836 46.2005 7.06638 46.0758C7.14915 45.9511 7.30216 45.838 7.51057 45.7476C9.06331 49.6867 5.28272 51.9139 5.8228 55.891C6.39664 55.5955 6.58227 55.0274 7.05484 55.0047C7.64556 56.8379 4.11815 56.7849 5.28271 59.7468L5.94096 59.1635C6.34602 60.1483 5.40087 60.8831 5.19834 60.7468C7.78062 60.8225 5.08017 67.0116 8.43882 69.0797C7.0211 70.5342 5.92405 74.6855 6.75105 75.9506C8.28692 77.7687 8.43879 74.3446 9.89027 75.0188C9.89027 76.443 8.47259 77.1929 8.97891 79.314C7.54432 79.314 6.07592 75.1173 5.24892 79.1095L6.02533 79.6701C5.79648 79.1567 5.72268 78.6318 5.80591 78.1096C6.66667 76.9581 6.76792 78.8065 7.1561 79.0716L6.70037 83.3441C5.16451 83.6547 5.51895 81.0715 5.13076 80.8291C5.45144 84.2229 7.69624 88.306 6.68358 91.4346L7.25736 91.1392C5.95778 95.1617 10.0422 93.4876 7.59494 96.6844C7.98312 98.3813 9.2827 96.0783 9.2827 98.6312C9.2827 99.3509 8.70884 98.9267 8.52319 98.7979C7.9831 101.942 9.97466 100.184 8.52319 103.078L10.2109 102.457C9.09702 105.904 6.27849 109.517 6.97047 112.502C8.21942 112.32 8.10124 110.479 9.04639 109.744C6.80166 113.782 8.75946 119.433 7.56115 123.168C6.49786 122.047 5.09701 124.933 4.18562 122.539C5.87338 121.926 4.72569 120.804 4.91135 119.509C1.4008 121.577 6.59915 128.16 3.57805 128.789L4.82698 129.342C4.64132 129.91 3.69624 131.364 3.30805 130.364L4.10125 134.478C5.0464 133.039 7.22362 129.986 5.78902 129.031C7.10547 127.857 6.66663 130.713 8.18561 129.675C6.10966 132.433 9.06325 131.372 8.60755 134.22C6.80165 132.925 6.1603 137.061 5.23203 136.932C5.3326 138.214 4.95617 139.494 4.11815 140.72C3.94937 142.371 5.40087 146.159 4.7764 148.803C5.33336 147.803 6.0759 146.22 7.22357 146.333C6.58222 147.629 6.59918 149.061 7.93251 149.303C10.3629 144.69 4.86077 147.788 6.44727 143.644C7.94938 142.614 8.33757 141.47 8.77639 139.319C9.65403 140.296 10.0253 139.864 11.0886 140.266C7.86499 142.902 10.7679 147.083 9.18144 150.56C8.23629 152.007 6.22785 150.916 5.80591 154.204L4.82698 151.379C5.72149 154.484 3.8818 152.136 3.52737 154.674L4.57388 153.651C4.91093 154.673 4.65515 155.717 3.83126 156.681L5.51902 155.356C5.72155 156.197 5.92407 157.765 4.97892 157.787C5.36711 157.999 5.68771 158.075 5.95775 158.075C5.52808 158.569 5.39427 159.104 5.5696 159.628C5.75525 159.052 5.65402 158.636 6.12659 158.621C5.75528 162.408 7.81436 159.499 7.71309 161.84C8.10128 161.469 8.55697 162.136 8.7595 162.976C6.21097 162.916 5.89034 167.522 4.47261 168.779L3.443 171.931C3.66241 171.294 4.3544 171.984 4.60756 172.9V172.756C4.99575 173.756 7.35864 171.559 6.6329 174.567L5.87338 176.15C5.97465 175.87 6.36288 176.15 6.54853 176.286L5.85649 177.915C8.23624 180.407 4.5232 182.619 5.68776 185.551C5.48522 184.703 5.68776 183.415 6.43038 183.968C6.66116 184.593 6.53926 185.233 6.07591 185.831L6.3629 185.687L4.79319 191.271C5.65395 190.816 5.70468 187.695 6.68358 189.089C7.83126 189.915 6.68352 191.52 6.51474 192.52C5.85651 192.392 5.2658 190.543 4.82698 192.407C5.16453 192.642 5.85654 194.414 6.32911 193.581C5.65401 195.49 5.23211 198.27 4.05067 199.982C4.33759 200.528 4.62443 199.672 4.70882 199.384L4.52319 199.247C4.8945 198.096 6.21092 199.073 5.53581 196.808C7.74678 196.619 6.16037 200.073 6.46416 202.058L7.9494 198.891C10.9705 204.194 7.69616 211.413 7.66241 216.701C6.97043 215.148 7.66241 213.853 5.97465 214.035C5.47539 216.07 5.21067 218.115 5.18145 220.163L5.28271 219.883C6.16035 221.572 4.45568 223.883 5.99154 224.989C6.93669 224.231 5.11388 222.587 7.02105 222.549L6.86921 226.678C8.00001 225.382 7.02111 222.549 7.29115 220.974C7.18989 219.837 7.03796 223.246 5.78902 222.716C5.78902 218.868 7.07173 217.989 8.86076 216.087C10.1941 214.936 10.211 217.777 10.2278 218.489C7.99414 221.669 7.31486 225.028 8.23629 228.337L9.68775 230.435C8.37129 232.321 5.77213 231.518 6.0928 234.935L7.13921 233.92C7.4589 234.441 7.6402 234.978 7.6793 235.518C8.45568 234.049 9.36703 232.488 10.1772 231.14C12.3881 233.087 9.08014 236.723 8.62445 239.579C8.91137 239.435 8.99575 238.435 9.56959 238.139C10.0928 242.404 7.45987 246.866 7.12231 250.161C8.08434 251.555 7.74686 247.427 9.19833 248.101C8.64137 249.836 9.9072 251.79 8.57387 252.252C10.4642 251.495 8.7089 256.229 10.481 252.919C11.3081 259.161 9.56957 266.032 8.4894 272.342C9.06324 272.032 9.53587 272.032 9.92406 272.297C9.92406 270.16 10.4472 266.994 11.7637 265.842C12.7426 267.244 10.4641 269.161 11.0379 269.562C11.5105 268.85 11.4937 267.426 12.4388 267.403C13.519 269.229 12 270.251 11.8143 271.539L11.3417 270.842C10.0421 274.85 7.96624 273.054 8.54008 277.312C9.70464 278.827 9.48518 277.312 10.9198 277.274C10.3628 278.274 11.9325 281.508 10.4135 282.577L10.2784 280.001C9.87336 281.804 9.89029 283.516 9.38396 284.766C9.60045 284.692 9.77993 284.598 9.91077 284.491C10.0416 284.384 10.1209 284.266 10.1435 284.145C9.6709 285.576 9.78901 287.417 8.84386 288.152L10.3798 288.553C9.6878 287.697 9.56966 285.145 10.3798 284.713C11.7131 284.955 10.8861 287.546 10.9874 288.675C11.4093 283.682 13.8058 283.622 12.8101 279.395L12.3375 280.107C11.173 277.478 13.0801 274.804 13.0464 272.463C13.3502 273.115 13.9072 273.221 14.1773 272.941C12.9789 267.842 13.8734 262.828 13.1476 257.032L14.6667 255.29L13.519 255.176C13.0127 252.336 15.2068 254.563 15.0211 252.73C15.0211 253.426 14.8354 253.305 14.5485 253.442C15.8481 250.146 13.4684 251.608 13.8397 249.76C12.6076 250.639 13.4008 253.328 11.7637 252.502C13.0632 249.215 12.3544 244.094 15.1392 243.609C14.0253 237.503 15.7468 229.92 15.9831 224.784C15.5105 224.087 15.6118 225.223 15.2237 224.958C16.9114 222.92 14.1097 218.14 15.5443 218.14C15.2725 217.521 14.6374 216.946 13.7046 216.474C14.4095 214.978 14.8161 213.457 14.9198 211.929L14.5316 213.141L14.3291 213.004L14.903 211.285V211.353C15.308 207.224 14.903 202.459 16.4895 198.725C15.5612 200.876 14.8017 198.179 14.2109 199.194C16.4894 197.301 16.54 192.74 16.3038 189.043C15.8143 189.043 15.443 188.771 15.0548 189.21L16 187.066L15.4262 187.346C15.0042 183.513 17.5359 179.332 16.4557 176.794C16.1857 178.362 15.7131 178.37 14.9536 178.529C14.9536 175.779 14.9536 173.226 15.73 169.976C15.5781 170.143 15.4261 170.256 15.2573 170.264C15.2328 169.352 15.4423 168.442 15.8818 167.552L14.751 167.431C15.2742 165.787 14.751 163.643 15.5949 161.711C14.346 160.954 16.7595 156.984 16.2363 154.727C16.5063 153.863 14.9198 156.606 14.9873 154.189C17.4684 153.848 14.9873 151.045 17.7215 150.856L16.7426 148.742L18.076 148.28C15.5781 146.477 19.2067 145.538 18.4135 142.864C18.1265 143.008 18.0253 143.296 17.8397 143.159C18.1097 142.296 18.2785 140.296 18.9704 141.841C18.9704 140.417 19.5781 135.569 18.1604 137.743C18.9198 137.584 18.2785 139.584 18.0084 140.44C16.8607 140.326 17.2996 138.167 16.0675 137.66C16.2577 137.477 16.4267 137.29 16.5739 137.099L15.865 136.796C17.1308 134.114 16.2194 131.395 17.8397 129.448C17.4852 129.334 17.2152 128.865 17.2996 127.933H18.7341V125.084L16.6582 126.418C16.2363 123.297 18.5991 121.115 18.9536 118.532C16.5569 117.873 19.865 113.524 17.7384 111.297L17.0802 113.305C17.519 109.025 16.0844 108.335 16.8945 104.343C17.2907 107.138 18.0514 109.921 19.173 112.676C18.1772 107.714 20.5232 104.108 19.173 99.5706C18.5991 99.8736 18.2448 101.017 17.654 99.9039C18.8861 99.0176 17.654 95.6238 19.0548 96.298C18.5654 94.889 17.2152 94.6466 17.0127 93.783L18.7004 89.0484L18.4135 89.1999C15.0379 81.1549 20.6414 74.1855 19.2237 66.1177L18.4641 66.2692L20.0337 64.2542C19.2743 65.8374 19.0717 63.5648 18.346 63.4436L20.0337 58.2696C19.3249 58.156 17.8059 58.459 18.0928 59.7317ZM17.4514 127.804L17.3502 129.031C17.4629 129.281 17.4629 129.539 17.3502 129.789V129.031C17.1645 128.402 16.5569 127.94 17.4514 127.804ZM14.7005 240.677C14.0422 241.26 14.4978 239.829 14.3966 239.412L14.2278 241.412C14.616 241.669 14.5992 240.912 14.7005 240.639V240.677ZM8.2194 127.88L7.25736 127.198L7.99998 126.319L8.2194 127.88ZM8.2194 110.509L7.66241 112.237L7.47678 112.093L8.01688 110.381L8.2194 110.509ZM15.9494 91.215C15.9494 91.321 15.848 91.4195 15.7637 91.5483C15.7996 91.4346 15.8618 91.3229 15.9494 91.215C16.6414 89.8741 14.9199 89.3438 16.5907 88.253C17.9072 89.5938 16.4388 90.4498 15.8481 91.215H15.9494ZM15.9494 121.729C15.7592 122.152 15.7024 122.586 15.7805 123.016C16.3544 122.713 17.1983 121.547 17.4683 122.403C16.7932 122.994 16.6244 124.978 15.6793 125.009C16.5569 123.282 13.8735 122.062 15.865 121.729H15.9494ZM15.3249 162.636L15.2237 162.196L14.481 163.795L15.3249 162.636ZM14.346 170.059C13.1139 170.938 13.3333 173.211 13.0633 174.779C14.1097 175.188 15.3418 173.597 15.2237 171.749C16.0675 169.559 13.5021 170.908 14.2616 170.037L14.346 170.059ZM14.0928 108.411L13.2489 108.85L13.1476 108.434L12.5908 110.153C11.4262 107.881 13.6033 106.29 13.9746 105.138C13.8059 106.116 11.7299 108.873 14.0084 108.388L14.0928 108.411ZM13.7384 185.884C12.9958 187.468 12.0507 190.324 11.2068 190.058C12.8945 190.157 13.5696 187.869 13.5696 187.157C13.4672 186.726 13.4956 186.29 13.6539 185.862L13.7384 185.884ZM10.6836 185.801C11.4262 183.528 12.1856 183.347 13.7046 181.597C14.3966 183.869 12.3037 184.483 11.443 184.218C10.6835 185.801 11.7468 185.49 11.9325 186.339L10.6836 185.801ZM15.2573 183.415L15.0211 182.483C14.346 181.377 12.5063 181.142 14.346 179.597L15.0211 182.483C15.1757 182.781 15.2269 183.087 15.173 183.392L15.2573 183.415ZM15.2573 202.717L15.8143 201.77C15.8143 202.702 15.5105 202.808 15.2573 202.717L14.7679 203.474C14.0253 201.429 14.5823 202.482 15.0886 202.694L15.2573 202.717ZM14.8017 187.998L14.9705 185.286C14.0422 185.415 14.4472 187.127 14.6329 187.975L14.8017 187.998ZM13.8059 202.111C13.7046 200.967 13.4683 197.99 13.5865 198.399C14.2785 198.649 14.1097 201.361 13.6372 202.088L13.8059 202.111ZM11.5611 261.956V260.252L12.7257 261.078L11.5611 261.956ZM10.6836 241.904L11.2574 242.329L11.173 243.321L10.6836 241.904ZM10.5991 223.413C10.8523 223.504 11.1561 223.458 11.4262 223.299C11.4697 223.07 11.6377 222.849 11.9156 222.655C11.917 222.888 11.7447 223.115 11.4262 223.299C11.1874 224.082 11.2674 224.878 11.6624 225.648C12.2362 225.352 12.1181 224.208 12.5063 223.769C13.8565 225.458 9.789 229.261 13.6877 228.17C13.2152 228.928 12.2025 231.337 11.5106 230.496C11.7181 228.127 11.4128 225.755 10.5991 223.413C10.3008 223.252 10.1553 223.045 10.1941 222.837C10.3338 223.015 10.4134 223.202 10.4304 223.39L10.5991 223.413ZM9.75522 198.497C9.76273 198.111 9.87612 197.727 10.0928 197.354C10.3966 196.755 10.8185 196.293 11.3586 196.475C10.886 197.937 10.4472 196.997 10.0928 197.354C9.85701 197.726 9.68772 198.106 9.58648 198.49L9.75522 198.497ZM9.51901 194.089L8.77639 196.361L9.63717 195.21L7.9494 198.657C7.08864 196.672 8.30376 194.376 9.35017 194.066L9.51901 194.089ZM8.77639 193.286L9.70464 192.816L8.7426 193.573V193.323L8.52319 193.429L9.06328 189.574L8.77639 193.286ZM10.6329 153.894C7.42614 152.454 8.35438 157.303 6.80163 158.06C7.8818 158.219 9.55277 159.681 9.51901 155.916C10.5992 159.166 7.42616 157.954 10.1266 159.886C10.0839 158.641 10.3271 157.397 10.8523 156.174L10.9705 158.015C12.7932 156.969 9.90719 155.181 10.4642 153.886L10.6329 153.894ZM9.90716 134.099L9.99153 131.683L9.72153 133.955L9.90716 134.099ZM9.0126 74.4506C8.25311 74.6249 6.88605 71.5114 8.30377 70.7766C8.59069 72.3447 8.50634 74.0567 9.08018 74.4582L9.0126 74.4506ZM9.23202 48.8232L8.65824 51.5276C6.97047 51.0049 8.65821 49.1034 8.42192 47.8308C9.28268 47.4066 8.72575 48.4141 9.29959 48.8307L9.23202 48.8232ZM9.23202 31.165L9.50212 30.3014L7.81435 31.2104L9.23202 31.165ZM7.03795 32.3619C6.26157 31.8164 5.89027 33.6724 5.99154 34.1118L7.03795 32.3619ZM5.53581 16.4536L5.63707 17.5823L7.1561 16.5596L5.53581 16.4536ZM7.30804 18.2565C6.22788 18.5217 4.74262 18.408 5.48523 21.014C6.63291 21.12 6.61598 20.4155 7.96619 21.3851C8.09721 20.718 7.99472 20.0457 7.66241 19.3928C7.47676 19.9761 7.96628 20.6655 7.20678 20.8246C6.80633 19.9762 6.84095 19.098 7.30804 18.2565C7.55488 18.2003 7.76708 18.1177 7.92602 18.016C8.08495 17.9142 8.1857 17.7965 8.2194 17.6732C7.86497 17.6884 7.54433 17.908 7.30804 18.2565ZM8.50629 27.6954C8.59307 27.9567 8.75776 28.2114 8.99581 28.453L8.70881 28.6121C8.5158 28.4731 8.39711 28.316 8.36197 28.1531C8.32683 27.9901 8.37621 27.8257 8.50629 27.6727C8.37127 27.2939 8.23627 26.8621 8.10124 26.4076C7.13922 26.1198 6.41353 27.9227 5.94096 28.3696C6.211 27.5212 7.15616 26.7864 6.58232 25.6652C6.2954 25.8092 6.09282 25.6652 6.1097 26.3773L5.90717 24.8622C7.24051 23.082 7.59492 24.7865 8.10124 26.4455C8.32065 26.4985 8.54012 26.6197 8.79329 26.9379C8.84902 27.1974 8.74992 27.4588 8.50629 27.6954ZM10.6667 15.2036L10.3966 16.0597C10.0253 16.4915 9.63709 16.2187 9.35017 16.3702C9.43456 15.3703 10.0928 14.0673 10.6667 15.2036ZM11.0043 66.3147C10.7173 65.7465 9.58646 67.0722 9.87338 68.3222L8.43882 67.648C9.40084 67.648 9.2658 65.0648 9.36707 64.7769C10.7004 64.3299 10.1435 65.3223 11.0043 66.3147ZM11.0043 125.69C9.19834 126.153 10.2785 129.402 9.8059 130.122C9.45147 128.433 9.0295 124.584 11.0379 125.69H11.0043ZM11.7469 131.327C11.7469 132.213 11.8987 132.47 10.9874 132.38C10.5992 132.811 11.0886 133.508 10.7173 133.948C9.90713 132.213 11.3587 132.327 11.7469 131.327C11.7469 131.092 11.7469 130.834 11.7469 130.501C11.8406 130.774 11.8519 131.052 11.7806 131.327H11.7469ZM11.8481 96.6238L13.2827 95.4647L13.1645 93.6163L11.8481 96.6238ZM14.2278 76.7687C13.4683 76.9202 13.4515 74.7991 13.8228 74.3597C12.827 74.4961 12.9451 75.9203 12.8439 77.049C12.7316 77.2982 12.6862 77.5525 12.7088 77.8065C12.7088 77.5869 12.8101 77.3444 12.8439 77.049C13.0801 76.6248 13.5865 76.9202 13.9409 76.9202L14.2447 77.4808L14.5147 75.9203L14.2278 76.7687ZM15.308 41.8614C14.7178 41.1318 14.6412 40.3385 15.0886 39.5888C15.5443 40.3287 15.6307 41.1047 15.3417 41.8614H15.308ZM15.1055 87.3136C14.5992 85.1774 13.5865 88.3439 13.0971 86.9424L13.1983 88.056C12.135 86.2455 14.3291 86.7606 14.0253 85.488L14.2278 86.3364C15.1899 87.0182 14.8861 85.0334 15.6456 84.8744C16.0844 85.844 15.3417 88.1393 15.1392 87.2909L15.1055 87.3136ZM15.9494 39.8842C14.9705 37.7707 16.9789 38.1419 17.1645 36.8541C18.0759 38.5206 16.2531 38.2782 15.9831 39.8615L15.9494 39.8842ZM18.0253 73.8673L18.2109 73.9961L18.7679 72.2841L18.5823 72.1477L18.0253 73.8673Z' fill='white'/%3E%3Cpath d='M5.94085 37.233C5.84068 36.8505 5.84068 36.464 5.94085 36.0815C5.95773 36.4527 5.97461 36.8315 5.94085 37.233Z' fill='white'/%3E%3Cpath d='M4.94531 136.501C5.19848 136.554 5.33346 136.736 5.43473 136.986C5.28283 136.955 5.11409 136.834 4.94531 136.501Z' fill='white'/%3E%3Cpath d='M4.3205 140.637V140.796L4.21924 140.925L4.3205 140.637Z' fill='white'/%3E%3Cpath d='M7.61186 284.66C6.3798 285.546 7.40934 283.811 7.40934 283.099C7.40934 283.811 8.21946 284.092 7.61186 284.66Z' fill='white'/%3E%3Cpath d='M9.65406 279.062C9.22646 279.629 8.98208 280.221 8.92833 280.819C8.90869 280.218 9.15536 279.62 9.65406 279.062Z' fill='white'/%3E%3Cpath d='M9.13067 283.63C8.888 282.697 8.82026 281.757 8.92814 280.819C9.23504 281.749 9.30299 282.692 9.13067 283.63Z' fill='white'/%3E%3Cpath d='M9.29963 263.979C8.8504 264.819 8.73043 265.688 8.94516 266.547C8.2363 262.858 7.52745 267.305 6.95361 267.6C7.22366 265.305 8.21946 265.29 9.29963 263.979Z' fill='white'/%3E%3Cpath d='M9.68794 259.093C9.68056 259.435 9.73139 259.777 9.83989 260.116C9.6742 259.78 9.62294 259.435 9.68794 259.093Z' fill='white'/%3E%3Cpath d='M8.96191 257.722C9.05189 256.895 9.63478 256.095 10.6497 255.404C11.2573 256.957 9.90705 257.942 9.68764 259.093C9.67076 258.184 9.77204 257.298 8.96191 257.722Z' fill='white'/%3E%3Cpath d='M4.8441 218.368C4.8441 218.663 4.84407 219.368 4.28711 219.391V217.254C4.5234 216.391 4.72596 217.944 4.8441 218.368Z' fill='white'/%3E%3Cpath d='M7.13936 210.489C7.13936 208.777 5.97487 209.671 6.26179 208.8L7.94955 208.899L7.13936 210.489Z' fill='white'/%3E%3Cpath d='M15.3587 211.436L15.1899 211.944C15.1899 211.755 15.1899 211.565 15.1899 211.368L15.3587 211.436Z' fill='white'/%3E%3Cpath d='M5.51881 202.278L3.71289 203.459C4.18546 202.013 5.62008 201.99 5.51881 202.278Z' fill='white'/%3E%3Cpath d='M4.30403 195.755L3.74707 196.755L4.28715 193.619L4.30403 195.755Z' fill='white'/%3E%3Cpath d='M5.18137 187.9L4.81006 187.627L5.26575 185.476L5.18137 187.9Z' fill='white'/%3E%3Cpath d='M6.7002 102.442C8.21918 102.116 7.59473 105.54 7.98291 106.54C6.05886 105.851 8.62425 103.798 6.7002 102.442Z' fill='white'/%3E%3Cpath d='M6.63283 40.2102L6.27836 43.4903C5.68764 40.9223 6.2784 42.7783 6.63283 40.2102Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_31_5158'%3E%3Crect width='20' height='300' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.advantages-content-right .form-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

#pokraska .advantages-content-right form input {
    border-bottom: 1px solid var(--main-dark);
    border-radius: unset;
}

.advantages-content-right .policy {
    font-size: 11px;
    line-height: 1.4;
}

@media (max-width: 1000px) {

    .advantages {
        min-height: 500px;
    }

    .advantages::before {
        background-size: 100%;
        bottom: -25px;
    }

    .advantages-content {
        grid-template-columns: 1fr;
    }

    .advantages-content-right::before {
        left: -15px;
    }

    .advantages-content-right::after {
        right: -8px;
    }

    .advantages-content-right {
        padding: 1.3rem;
    }
}

@media (max-width: 600px) {
    .advantages-content-right .form-title {
        font-size: 12px;
    }
}

/* прайс */

.price-table {
    position: relative;
    margin-bottom: 100px;
}

.price-table-content {
    display: grid;
    grid-template-columns: 300px auto;
    padding: 100px 0;
}

.price-table-content-left .basic-title {
    position: relative;
}

.price-table-content-left .basic-title::after {
    position: absolute;
    content: '';
    width: 175px;
    height: 28px;
    border-bottom: 4px solid rgba(221, 224, 218, 1);
    margin-left: 30px;
}

.price-table-content-left ul {
    list-style: disc;
}

.price-table-content-left li {
    margin: 0.3rem 0 0.3rem 1.5rem;
}

.price-table-content-right {
    padding-left: 100px;
    position: relative;
}

.price-table-content-right::after {
    position: absolute;
    content: '';
    width: 200%;
    min-height: 100%;
    left: 0;
    top: -100px;
    bottom: -100px;
    background-color: var(--main-grey);
    border-radius: 0px 0px 0px 15px;
    z-index: -1;
}

.striped-table {
    width: 100%;
    background-color: white;
}

.striped-table th,
.striped-table td {
    padding: 1rem;
}

.striped-table thead {
    background-color: rgba(51, 117, 22, 1);
    color: white;
    font-size: 14px;
}

.striped-table>tbody>tr:nth-of-type(even)>* {
    background-color: rgba(237, 241, 235, 1);
}

@media (max-width: 1000px) {
    .price-table {
        margin-top: 100px;
    }

    .price-table-content {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .price-table-content-right {
        margin-top: 80px;
        padding-left: 0;
    }

    .price-table-content-left .basic-title::after {
        display: none;
    }

    .price-table-content-right::after {
        border-radius: unset;
        top: -50px;
        bottom: -50px;
        left: -30px;
        right: -30px;
    }
}

@media (max-width: 500px) {
    .price-table {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .striped-table th,
    .striped-table td {
        padding: 0.5rem;
        font-size: 14px;
    }
}

@media (max-width: 400px) {

    .striped-table th,
    .striped-table td {
        padding: 0.3rem;
        font-size: 12px;
    }
}


/* палитра цветов */

.colors {
    padding-top: 50px;
}

.colors .section-lead {
    text-align: center;
}

.colors-content {
    display: grid;
    grid-template-columns: 3fr 5fr;
    grid-gap: 1rem;
}

.colors-content-left,
.colors-content-right {
    height: 100%;
}

.colors-item-vertical,
.colors-item-horizontal {
    border-radius: 5px;
    overflow: hidden;
}

.colors-item-vertical {
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 100%;
}

.colors-item-horizontal {
    display: grid;
}

.colors-item-horizontal:first-of-type {
    grid-template-columns: 3fr 5fr;
    margin-bottom: 1rem;
}

.colors-item-horizontal:last-of-type {
    grid-template-columns: 3fr 1fr;
}

.colors-item-content {
    padding: 1.5rem;
    background: var(--main-grey);
}

.colors-item-title {
    margin: 10px 0;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 36.4px;
}

.colors-item-horizontal:first-of-type .colors-item-title {
    margin-left: -70px;
}

.colors-item-vertical img,
.colors-item-horizontal img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    object-position: right top;
    border-radius: 5px;
}

@media (min-width: 601px) and (max-width: 1000px) {
    .colors-content {
        grid-template-columns: 1fr;
    }

    .colors-item-vertical {
        grid-template-columns: 3fr 4fr;
        grid-template-rows: unset;
    }

    .colors-item-vertical img,
    #pokraska .colors-item-horizontal img {
        max-height: unset;
    }
}

@media (max-width: 600px) {
    .colors .section-lead {
        font-size: 12px;
    }

    .colors-content,
    .colors-item-vertical,
    #pokraska .colors-item-horizontal {
        grid-template-rows: unset;
        grid-template-columns: 1fr;
        height: unset;
    }

    .colors-item-vertical img,
    #pokraska .colors-item-horizontal img {
        height: auto;
        order: 1;
    }

    .colors-item-content {
        order: 2;
        padding: 1.3rem;
    }

    #pokraska .colors-item-title {
        margin-left: 0;
    }
}

/* Lenwood */

.lenwood-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.lenwood-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.lenwood-facts-item {
    background: var(--main-grey);
    padding: 2rem;
    border-radius: 5px;
}

.lenwood-facts-item-title {
    color: rgba(51, 117, 22, 1);
    font-size: 46px;
    font-weight: 900;
    line-height: 64.4px;
}

.lenwood-left {
    position: relative;
}

.lenwood-right {
    z-index: 1;
}

.lenwood-left img {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
}

.lenwood-fact-image-1 {
    width: 184px;
    height: 184px;
    top: 0;
    left: 0
}

.lenwood-fact-image-2 {
    width: 600px;
    height: 600px;
    z-index: -1;
    right: -100px;
    top: 100px;
}

.lenwood-fact-image-3 {
    width: 328px;
    height: 328px;
    left: 0;
    top: 500px;
    border: 16px solid white;
}

@media (min-width: 801px) and (max-width: 1000px) {
    .lenwood-content {
        grid-template-columns: 1fr 2fr;
    }
}

@media (max-width: 900px) {
    .lenwood-content {
        grid-template-columns: 1fr;
        grid-gap: 2rem;
        grid-template-rows: 3fr 2fr;
    }

    .lenwood-left {
        order: 2;
    }

    .lenwood-right {
        order: 1
    }

    .lenwood-fact-image-1 {
        width: 30vw;
        height: 30vw;
    }

    .lenwood-fact-image-2 {
        width: 80vw;
        height: 80vw;
        right: 0;
        top: 40px;
    }

    .lenwood-fact-image-3 {
        width: 50vw;
        height: 50vw;
        bottom: 0;
        top: unset;
    }
}

@media (max-width: 500px) {
    .lenwood-facts {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .lenwood-content {
        grid-template-rows: 1fr 1fr;
    }
}

@media (min-width: 501px) and (max-width: 600px) {
    .lenwood-content {
        grid-template-rows: 4fr 3fr;
    }
}

@media (min-width: 401px) and (max-width: 500px) {
    .lenwood-content {
        grid-template-rows: 2fr 1fr;
    }
}

@media (max-width: 400px) {
    .lenwood-content {
        grid-template-rows: 3fr 1fr;
    }
}

/* подробнее */

.more-details-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 1rem;
}

#pokraska h3.accordion-header {
    margin-bottom: 0;
}

#pokraska .more-details .accordion-header span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-right: 1.5rem;
    color: #B3B5B4;
    z-index: 1;
}

.more-details .accordion-button:not(.collapsed) {
    color: var(--main-dark);
    background-color: transparent;
    font-weight: 700;
    border-bottom: none;
    box-shadow: unset;
}

.more-details .accordion-button {
    border-bottom: 1px solid var(--main-grey);
}

.more-details .accordion-button:focus {
    box-shadow: unset;
}

#pokraska .more-details .accordion-button:not(.collapsed) span {
    position: relative;
    color: white;
}

.more-details .accordion-button:not(.collapsed) span::before {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
    width: 40px;
    height: 40px;
    left: -15px;
    top: -6px;
    border-radius: 50%;
    background-color: #337516;
}

.more-details .accordion-item {
    border-bottom: none;
}

.more-details .accordion-body {
    border-bottom: 1px solid var(--main-grey);
    margin-left: 40px;
}

.question-cta {
    display: grid;
    overflow: hidden;
    border-radius: 10px;
}

.question-cta-title {
    padding: 1.5rem 0;
    background: rgba(51, 117, 22, 1);
    font-size: 22px;
    line-height: 30.8px;
    text-align: center;
    color: white;
    text-transform: uppercase;
}

.question-cta-title span {
    display: block;
    font-weight: 900;
}

.question-cta-messengers,
.question-cta-form {
    padding: 2rem;
    background: var(--main-grey);
}

.question-cta-messengers {
    border-bottom: 1px solid rgba(223, 228, 225, 1);
}

.question-cta-messengers-icons {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr;
}

.question-cta form {
    display: grid;
    grid-gap: 1rem;
}

@media (max-width: 1100px) {
    .more-details-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {

    .question-cta-messengers,
    .question-cta-form {
        padding: 1rem;
    }
}

/* отзывы */

section.client-reviews {
    margin: 250px 0 0 0;
    position: relative;
    padding-bottom: 100px;
}

.client-reviews .basic-title,
.client-reviews .basic-title-subtitle {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

section.client-reviews::before {
    width: 200vw;
    height: 200vw;
    position: absolute;
    content: '';
    background-color: var(--main-grey);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    z-index: -3;
    top: -150px;
    left: -100vw;
    right: -100vw;
    margin: 0 auto;
}

.client-reviews .swiper-slide {
    height: auto;
    background-color: white;
}

.client-reviews .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-reviews .swiper-button-next,
.client-reviews .swiper-button-prev {
    top: unset;
    margin: 0;
}

.client-reviews .swiper-button-prev,
.client-reviews .swiper-button-next {
    margin-top: 2rem;
    width: 80px;
    height: 10px;
}

.client-reviews .swiper-button-prev {
    right: 51vw;
    left: unset;
}

.client-reviews .swiper-button-next {
    left: 51vw;
    right: unset;
}

.client-reviews .swiper-button-prev::after,
.client-reviews .swiper-button-next::after {
    content: '';
    width: 100%;
    background-repeat: no-repeat;
    height: 100%;
}

.client-reviews .carousel-inner {
    padding: 1rem;
}

.client-reviews .carousel-item img {
    width: 100%;
}

.client-reviews .carousel-control-prev,
.client-reviews .carousel-control-next {
    width: 90%;
    top: 100%;
    transform: translateY(-50%);
}

@media screen and (min-width: 576px) {
    .client-reviews .carousel-inner {
        display: grid;
        grid-auto-columns: calc((100% - 2*1rem)/3);
        grid-auto-flow: column;
        grid-gap: 1rem;
        padding: 1rem 0 2rem 0;
        overflow: hidden;

    }

    .client-reviews .carousel-item {
        display: block;
        margin-right: 0;
    }
}

/* последний блок с формой */

.paint-bottom-cta {
    position: relative;
    background: #337516;
    box-shadow: rgba(0, 20, 7, 0.75) 0px -50px 36px -28px inset;
    min-height: 420px;
    margin: 0;
}

.paint-bottom-cta::before {
    position: absolute;
    content: '';
    background-image: url('../img/brown-form-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 50%;
    opacity: 15%;
    width: 100%;
    height: 100%;
}

.paint-bottom-cta-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 2rem;
    padding: 5rem 0;
}

.paint-bottom-cta-content-left * {
    color: white;
}

.paint-bottom-cta-content-left {
    position: relative;
}

.paint-bottom-cta-content-left::after {
    position: absolute;
    content: '';
    height: 400px;
    width: 400px;
    border-radius: 50%;
    top: -100px;
    left: -80px;
    background: radial-gradient(black 15%, transparent 70%);
    opacity: 40%;
}

.paint-bottom-cta .basic-title {
    line-height: 50.6px;
}

.paint-bottom-cta-content-left .basic-title,
.paint-bottom-cta-content-left .basic-title-subtitle,
.paint-bottom-cta-content-left p {
    position: relative;
    z-index: 1;
}

.paint-bottom-cta .basic-title-subtitle {
    font-size: 18px;
    font-weight: 700;
    line-height: 25.2px;
}

.paint-bottom-cta form {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.45) 1px 1px 40px 0px inset;
    min-height: 260px;
    padding: 3rem;
}

.paint-bottom-cta-content form .top-bullets,
.paint-bottom-cta-content form .bottom-bullets {
    position: relative;
}

.paint-bottom-cta-content form .top-bullets::before,
.paint-bottom-cta-content form .top-bullets::after,
.paint-bottom-cta-content form .bottom-bullets::before,
.paint-bottom-cta-content form .bottom-bullets::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='url(%23paint0_radial_80_2094)'/%3E%3Ccircle cx='7.99995' cy='7.99995' r='5' transform='rotate(150 7.99995 7.99995)' fill='url(%23paint1_radial_80_2094)'/%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_80_2094' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(6.5 5.5) rotate(59.9314) scale(10.9772)'%3E%3Cstop offset='0.165' stop-color='%23E7E5E5'/%3E%3Cstop offset='1' stop-color='%23808080'/%3E%3C/radialGradient%3E%3CradialGradient id='paint1_radial_80_2094' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(7.06245 6.43745) rotate(59.9314) scale(6.86078)'%3E%3Cstop offset='0.165' stop-color='%23E7E5E5'/%3E%3Cstop offset='1' stop-color='%23808080'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

.paint-bottom-cta-content form .top-bullets::before,
.paint-bottom-cta-content form .bottom-bullets::before {
    left: -30px;
}

.paint-bottom-cta-content form .top-bullets::after,
.paint-bottom-cta-content form .bottom-bullets::after {
    right: -30px;
}

.paint-bottom-cta-content form .top-bullets::before,
.paint-bottom-cta-content form .top-bullets::after {
    top: -30px;
}

.paint-bottom-cta-content form .bottom-bullets::before,
.paint-bottom-cta-content form .bottom-bullets::after {
    bottom: -60px;
}

#pokraska .paint-bottom-cta form input {
    border-bottom: 1px solid var(--main-dark);
    border-radius: unset;
}

@media (max-width: 1100px) {
    .paint-bottom-cta-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 601px) and (max-width: 800px) {

    .paint-bottom-cta-content form .bottom-bullets::before,
    .paint-bottom-cta-content form .bottom-bullets::after {
        bottom: -30px;
    }
}

@media (max-width: 600px) {
    .paint-bottom-cta form {
        box-shadow: rgba(0, 0, 0, 0.45) 1px 1px 15px 0px inset;
        padding: 1.2rem;
    }

    .paint-bottom-cta-content form .top-bullets::before,
    .paint-bottom-cta-content form .top-bullets::after,
    .paint-bottom-cta-content form .bottom-bullets::before,
    .paint-bottom-cta-content form .bottom-bullets::after {
        width: 8px;
        height: 8px;
    }

    .paint-bottom-cta-content form .top-bullets::before,
    .paint-bottom-cta-content form .bottom-bullets::before {
        left: -10px;
    }

    .paint-bottom-cta-content form .top-bullets::after,
    .paint-bottom-cta-content form .bottom-bullets::after {
        right: -10px;
    }

    .paint-bottom-cta-content form .top-bullets::before,
    .paint-bottom-cta-content form .top-bullets::after {
        top: -10px;
    }

    .paint-bottom-cta-content form .bottom-bullets::before,
    .paint-bottom-cta-content form .bottom-bullets::after {
        bottom: -10px;
    }
}