@layer base, component, mod; :root {
                                 --spacing: 80px;
                                 --font-primary: "Gilroy", sans-serif, -apple-system, blinkmacsystemfont, roboto, ubuntu, "Droid Sans", "Helvetica Neue", arial, sans-serif, "Apple Color Emoji"
                             }

:root {
    --color-primary: #242424;
    --color-primary--rgb: 36, 36, 36;
    --color-alt: #c1f11d;
    --color-alt--rgb: 193, 241, 29;
    --color-grn: #3fc421;
    --color-grn--rgb: 63, 196, 33;
    --color-gry: #5a5a5a;
    --color-gry--rgb: 90, 90, 90;
    --color-brdr: #ddd;
    --color-brdr--rgb: 221, 221, 221;
    --color-brdr-alt: #404040;
    --color-brdr-alt--rgb: 64, 64, 64;
    --color-blck: #1f1f1f;
    --color-blck--rgb: 31, 31, 31;
    --color-blck-two: #323232;
    --color-blck-two--rgb: 50, 50, 50;
    --color-whte: #fff;
    --color-whte--rgb: 255, 255, 255;
    --color-gry-alt: #b2b2b2;
    --color-gry-alt--rgb: 178, 178, 178;
    --color-bg: #ffffff;
    --color-bg--rgb: 255, 255, 255;
    --color-bg-secondary: #eef6fc;
    --color-bg-secondary--rgb: 238, 246, 252;
    --color-bg-third: #222;
    --color-bg-third--rgb: 34, 34, 34;
    --color-success: #259243;
    --color-success--rgb: 37, 146, 67;
    --color-error: #ef4444;
    --color-error--rgb: 239, 68, 68;
    --font-size-default: 14px;
    --index-1: 100;
    --index-2: 200;
    --index-3: 1200;
    --index-4: 1300
}

@layer base {
    * {
        margin: 0;
        padding: 0;
        border: 0;
        font-feature-settings: "liga" off, "clig" off
    }

    *, *:before, *:after {
        box-sizing: border-box
    }

    *:before, *:after {
        display: inline-block
    }

    html, body {
        min-width: 360px;
        scroll-behavior: smooth;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
    }

    body {
        color: var(--color-primary);
        font-size: var(--font-size-default);
        font-family: var(--font-primary);
        line-height: 1;
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }

    ::-webkit-scrollbar {
        width: 6px;
        height: 5px
    }

    ::-webkit-scrollbar-track {
        background: var(--color-scroll-bg)
    }

    ::-webkit-scrollbar-thumb {
        background: var(--color-alt);
        border-radius: 10px
    }

    ::selection {
        color: var(--color-primary);
        background: var(--color-alt)
    }

    input, button, textarea {
        font-size: inherit;
        font-family: var(--font-primary);
        line-height: inherit
    }

    button {
        color: inherit;
        font-family: var(--font-primary);
        background-color: transparent;
        outline: 0;
        cursor: pointer
    }

    div[class*=__text] p:only-of-type, div[class*=__text] p:last-of-type, div[class*=__details] p:only-of-type, div[class*=__details] p:last-of-type, div[class*=__note] p:only-of-type, div[class*=__note] p:last-of-type {
        margin: 0
    }

    [class*=image] img {
        width: 100%;
        object-fit: cover;
        object-position: center
    }

    a {
        display: inline-block;
        color: inherit;
        text-decoration: none
    }

    ul li {
        list-style: none
    }

    img {
        vertical-align: top
    }

    h1, h2, h3, h4, h5, h6 {
        font-weight: inherit;
        font-size: inherit
    }

    address, cite {
        font-style: normal
    }

    fieldset, dl, dd {
        margin: 0;
        padding: 0
    }

    fieldset {
        border: none
    }
} .lock body {
      overflow: hidden;
      touch-action: none;
      overscroll-behavior: none
  }

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

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

@font-face {
    font-weight: 700;
    font-family: Gilroy;
    font-style: normal;
    src: url('../fonts/Gilroy-700.woff2') format("woff2"), url('../fonts/Gilroy-700.woff') format("woff");
    font-display: swap
}

@font-face {
    font-weight: 900;
    font-family: Gilroy;
    font-style: normal;
    src: url('../fonts/Gilroy-900.woff2') format("woff2"), url('../fonts/Gilroy-900.woff') format("woff");
    font-display: swap
}

body:after {
    position: fixed;
    top: 0;
    left: 0;
    z-index: calc(var(--index-3) - 1);
    width: 100%;
    height: 100%;
    background-color: #00000080;
    opacity: 0;
    transition: opacity .8s ease 0s;
    content: "";
    pointer-events: none
}

[data-popup].popup-open {
    pointer-events: none
}

.popup-show body:after {
    opacity: 1
}

@layer component {
    .popup {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 30px 16px;
        visibility: hidden;
        transition: visibility .8s ease 0s;
        pointer-events: none
    }

    .popup_show {
        z-index: var(--index-3);
        overflow: auto;
        visibility: visible;
        pointer-events: auto
    }

    .popup_show .popup__content {
        transform: scale(1);
        visibility: visible
    }

    .popup__wrapper {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 100%
    }

    .popup__content {
        width: 100%;
        max-width: 878px;
        padding: 30px 16px;
        background-color: var(--color-whte);
        border-radius: 16px;
        transform: scale(0);
        visibility: hidden;
        transition: transform .3s ease 0s
    }

    .lock .popup__content {
        visibility: visible
    }
} .popup__content {
      display: flex;
      justify-content: space-between;
      gap: 16px
  }

.popup__close {
    --size: 50px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    border-radius: 50%;
    background: var(--color-bg-secondary);
    transition: all .3s ease-in 0s;
    display: flex;
    justify-content: center;
    align-items: center
}

.popup__close:before {
    content: "";
    --size: 24px;
    width: var(--size);
    height: var(--size);
    background: var(--color-primary);
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    transition: all .3s ease-in 0s
}

.team-popup {
    display: flex;
    flex-direction: column;
    gap: 26px
}

.team-popup__top {
    display: flex;
    gap: 24px
}

.team-popup__img {
    --size: 100px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size)
}

.team-popup__img {
    position: relative
}

.team-popup__img:before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 50%;
    border: 4px solid var(--color-grn)
}

.team-popup__img img, .team-popup__img picture {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%
}

.team-popup__info {
    display: flex;
    flex-direction: column
}

.team-popup__name {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.24px
}

.team-popup__work {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: .42px;
    color: var(--color-gry)
}

.team-popup__link {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: .42px;
    color: var(--color-gry);
    transition: all .3s ease-in 0s;
    display: flex;
    align-items: center;
    gap: 12px;
    outline: none
}

.team-popup__link:before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: var(--color-grn);
    --size: 24px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size)
}

.team-popup__quote {
    position: relative;
    padding-top: 40px
}

.team-popup__quote:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    --size: 41px;
    width: var(--size);
    height: var(--size);
    background: var(--color-grn);
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat
}

.team-popup__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -.16px
}

.team-popup__block {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.team-popup__category {
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -.16px;
    color: var(--color-gry)
}

.team-popup__list {
    display: flex;
    flex-direction: column;
    gap: 19px
}

.team-popup__item {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -.16px
}

.team-popup__item:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    --size: 10px;
    width: var(--size);
    height: var(--size);
    background: var(--color-grn);
    border-radius: 50%
}

.achievement-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.achievement-block__img {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    aspect-ratio: 358/160;
    margin: 0 -16px
}

.achievement-block__img img, .achievement-block__img picture {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover
}

.achievement-block__top {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.achievement-block__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.achievement-block__tag {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    padding: 6px 8px;
    background: var(--bg);
    color: var(--color);
    max-width: max-content;
    border-radius: 8px
}

.achievement-block__star {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -.14px;
    gap: 11px
}

.achievement-block__star {
    color: #f39c10
}

.achievement-block__star:before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: #f39c10;
    --size: 16px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    transform: translateY(-2px)
}

.achievement-block__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: .6px
}

.achievement-block__subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: .6px
}

.achievement-block__link {
    max-width: max-content
}

.achievement-block__list {
    display: flex;
    flex-direction: column;
    gap: 0px
}

.achievement-block__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: .48px;
    position: relative;
    padding-left: 30px
}

.achievement-block__item:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 12px;
    --size: 5px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: var(--color-primary)
}

.achievement-block__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: .48px
}

.popup--success .popup__content {
    max-width: 520px;
    padding: 30px !important
}

.success-block__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center
}

.success-block__btn {
    --size: 59px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-alt);
    border-radius: 50%;
    margin: 0 auto
}

.success-block__btn:before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: var(--color-primary);
    --size: 20px;
    width: var(--size);
    height: var(--size)
}

.success-block__info {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.success-block__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: .84px
}

.success-block__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -.2px;
    color: var(--color-gry)
}

.success-block__link {
    margin: 0 auto;
    width: 100%;
    max-width: 100%
}

input[type=text], input[type=email], input[type=tel], textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

@layer component {
    .field {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 16px
    }

    .field__label {
        display: flex;
        font-weight: 500;
        font-size: 14px;
        line-height: 1.42
    }

    .field__label .j-textarea-count {
        margin-left: auto;
        font-weight: 400;
        color: #717d8e
    }

    .field__label span {
        color: var(--color-error)
    }

    .field__wrapper {
        position: relative
    }

    .field .resize-handle {
        position: absolute;
        right: 16px;
        bottom: 16px;
        width: 20px;
        height: 20px;
        background: #717d8e;
        cursor: grab;
        z-index: 2;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        mask: var(--icon) center center/contain no-repeat
    }

    .input {
        display: block;
        width: 100%;
        border: 1px solid #d4d8dd;
        border-radius: 12px;
        background: var(--color-whte);
        font-weight: 500;
        line-height: 1.25;
        padding: 14px;
        transition: border-color .3s ease-in 0s;
        font-size: 16px
    }

    .input::placeholder {
        opacity: .5;
        color: currentColor
    }

    .input._form-focus {
        border-color: var(--color-alt)
    }

    .input._form-error, .input._form-focus._form-error {
        border-color: var(--color-error)
    }

    textarea.input {
        resize: none;
        min-height: 88px;
        padding-bottom: 38px
    }

    .form__error {
        padding-left: 16px;
        color: var(--color-error);
        margin-top: 4px
    }
} .input[placeholder]:not([data-placeholder-nohiden])::placeholder {
      transition: opacity .3s
  }

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
    opacity: 0
}

.j-textarea-wrapper textarea::selection {
    color: var(--color-primary);
    background: var(--color-whte)
}

@layer component {
    .select {
        position: relative;
        min-width: 0
    }

    .select._select-open .select__value {
        background: var(--color-whte)
    }

    .select._select-open .select__value:after {
        content: "";
        background: var(--color-primary)
    }

    .select._select-open .select__content {
        color: var(--color-primary)
    }

    .select__body {
        position: relative
    }

    .select__title {
        width: 100%;
        color: inherit;
        text-align: left;
        cursor: pointer
    }

    .select__value {
        display: flex;
        gap: 6px;
        align-items: center;
        min-width: 0;
        padding: 8px 12px;
        border-radius: 8px 8px 0 0;
        transition: all .1s linear 0s
    }

    .select__value > * {
        flex: 1 1 auto
    }

    .select__value:after {
        display: flex;
        --size: 24px;
        flex: 0 0 var(--size);
        width: var(--size);
        height: var(--size);
        align-items: center;
        align-self: stretch;
        justify-content: center;
        transition: all .3s ease 0s;
        mask: url(../../img/icons/select.svg) center center/contain no-repeat;
        -webkit-mask: url(../../img/icons/select.svg) center center/contain no-repeat;
        background: rgba(var(--color-whte--rgb), .5);
        content: ""
    }

    ._select-open .select__value:after {
        transform: rotate(-180deg)
    }

    .select__value._select-pseudo-label:before {
        opacity: .5;
        content: attr(data-pseudo-label)
    }

    .select__content {
        flex: 1 1 auto;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        letter-spacing: .48px;
        color: var(--color-whte);
        transition: all .3s ease-in 0s
    }

    .select__text {
        flex: 1 1 auto;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis
    }

    .select__input {
        width: 100%;
        height: 100%;
        background-color: transparent
    }

    .select__options {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 100%;
        color: var(--color-primary);
        background-color: var(--color-bg);
        border-top: 0;
        border-radius: 0 0 8px 8px;
        overflow: hidden
    }

    .select__scroll {
        max-height: 200px;
        overflow-x: hidden;
        overflow-y: auto
    }

    .select__option {
        width: 100%;
        padding: 10px 12px;
        color: inherit;
        text-align: left;
        cursor: pointer;
        transition: all .3s ease-in 0s
    }

    .select__option._select-selected {
        background-color: var(--color-alt)
    }

    .select__row {
        display: inline-flex;
        align-items: center
    }

    .select--show-top .select__options {
        top: auto;
        bottom: calc(100% - 1px);
        padding: 5px 0 10px;
        border: 1px solid var(--color-bg);
        border-bottom: 0;
        border-radius: 4px 4px 0 0
    }

    ._select-tag {
        cursor: pointer
    }
} @layer component {
    .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px
    }

    .pagination__arrow {
        background: var(--color-whte);
        min-width: 40px;
        min-height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        padding: 8px
    }

    .pagination__arrow.pagination__arrow--next {
        transform: rotate(180deg)
    }

    .pagination__arrow:before {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: var(--color-blck);
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .pagination__list {
        display: flex;
        align-items: center;
        gap: 8px
    }

    .pagination__item {
        background: var(--color-whte);
        min-width: 40px;
        min-height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        font-weight: 600;
        font-size: 16px;
        line-height: 1.5;
        padding: 8px
    }

    .pagination__item.active {
        background: var(--color-alt)
    }
} @layer base {
    @font-face {
        font-family: swiper-icons;
        src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA) format("woff");
        font-weight: 400;
        font-style: normal
    }:root {
        --swiper-theme-color: #007aff
    }

    :host {
        position: relative;
        display: block;
        margin-left: auto;
        margin-right: auto;
        z-index: 1
    }

    .swiper {
        margin-left: auto;
        margin-right: auto;
        position: relative;
        overflow: hidden;
        list-style: none;
        padding: 0;
        z-index: 1;
        display: block
    }

    .swiper-vertical > .swiper-wrapper {
        flex-direction: column
    }

    .swiper-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: flex;
        transition-property: transform;
        transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
        box-sizing: content-box
    }

    .swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
        transform: translateZ(0)
    }

    .swiper-horizontal {
        touch-action: pan-y
    }

    .swiper-vertical {
        touch-action: pan-x
    }

    .swiper-slide {
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        position: relative;
        transition-property: transform;
        display: block
    }

    .swiper-slide-invisible-blank {
        visibility: hidden
    }

    .swiper-autoheight, .swiper-autoheight .swiper-slide {
        height: auto
    }

    .swiper-autoheight .swiper-wrapper {
        align-items: flex-start;
        transition-property: transform, height
    }

    .swiper-backface-hidden .swiper-slide {
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

    .swiper-3d.swiper-css-mode .swiper-wrapper {
        perspective: 1200px
    }

    .swiper-3d .swiper-wrapper {
        transform-style: preserve-3d
    }

    .swiper-3d {
        perspective: 1200px
    }

    .swiper-3d .swiper-slide, .swiper-3d .swiper-cube-shadow {
        transform-style: preserve-3d
    }

    .swiper-css-mode > .swiper-wrapper {
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none
    }

    .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none
    }

    .swiper-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start
    }

    .swiper-css-mode.swiper-horizontal > .swiper-wrapper {
        scroll-snap-type: x mandatory
    }

    .swiper-css-mode.swiper-vertical > .swiper-wrapper {
        scroll-snap-type: y mandatory
    }

    .swiper-css-mode.swiper-free-mode > .swiper-wrapper {
        scroll-snap-type: none
    }

    .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: none
    }

    .swiper-css-mode.swiper-centered > .swiper-wrapper:before {
        content: "";
        flex-shrink: 0;
        order: 9999
    }

    .swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: center center;
        scroll-snap-stop: always
    }

    .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
        -webkit-margin-start: var(--swiper-centered-offset-before);
        margin-inline-start: var(--swiper-centered-offset-before)
    }

    .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
        height: 100%;
        min-height: 1px;
        width: var(--swiper-centered-offset-after)
    }

    .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
        -webkit-margin-before: var(--swiper-centered-offset-before);
        margin-block-start: var(--swiper-centered-offset-before)
    }

    .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
        width: 100%;
        min-width: 1px;
        height: var(--swiper-centered-offset-after)
    }

    .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10
    }

    .swiper-3d .swiper-slide-shadow {
        background: rgba(0, 0, 0, .15)
    }

    .swiper-3d .swiper-slide-shadow-left {
        background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
    }

    .swiper-3d .swiper-slide-shadow-right {
        background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
    }

    .swiper-3d .swiper-slide-shadow-top {
        background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
    }

    .swiper-3d .swiper-slide-shadow-bottom {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
    }

    .swiper-lazy-preloader {
        width: 42px;
        height: 42px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -21px;
        margin-top: -21px;
        z-index: 10;
        transform-origin: 50%;
        box-sizing: border-box;
        border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
        border-radius: 50%;
        border-top-color: transparent
    }

    .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
        animation: swiper-preloader-spin 1s infinite linear
    }

    .swiper-lazy-preloader-white {
        --swiper-preloader-color: #fff
    }

    .swiper-lazy-preloader-black {
        --swiper-preloader-color: #000
    }

    @keyframes swiper-preloader-spin {
        0% {
            transform: rotate(0)
        }
        to {
            transform: rotate(360deg)
        }
    }.swiper .swiper-notification {
         position: absolute;
         left: 0;
         top: 0;
         pointer-events: none;
         opacity: 0;
         z-index: -1000
     }

    .swiper-grid > .swiper-wrapper {
        flex-wrap: wrap
    }

    .swiper-grid-column > .swiper-wrapper {
        flex-wrap: wrap;
        flex-direction: column
    }
} a[data-popup].disabled {
      pointer-events: none
  }

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 0 22px;
    z-index: 5;
    background: var(--color-whte)
}

.header.header--two .menu__top-menu {
    color: var(--color-primary)
}

.header.header--two .menu__top-menu:before {
    content: "";
    background: var(--color-primary)
}

.header.header--two .menu__top-search {
    background: var(--color-primary)
}

.header.header--two .menu__top-select .select__value:after {
    content: "";
    background: var(--color-primary)
}

.header.header--two .menu__top-select .select__content {
    color: var(--color-primary)
}

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

.menu__top-logo {
    width: 154.003px;
    height: 25.401px;
    margin-top: 11px
}

.menu__top-logo img, .menu__top-logo picture {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover
}

.menu__top-content {
    display: flex;
    align-items: center;
    gap: 22px;
    position: relative;
    padding-right: 14px
}

.menu__top-search {
    --size: 22px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: var(--color-whte);
    transition: all .3s ease-in 0s
}

.menu__top-menu {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: .48px;
    color: var(--color-whte);
    transition: all .3s ease-in 0s
}

.menu__top-menu:before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: rgba(var(--color-whte--rgb), .5);
    --size: 22px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    transition: all .3s ease-in 0s
}

.menu__catalog {
    position: fixed;
    top: 0;
    right: -100%;
    background: var(--color-bg-secondary);
    transition: all .3s linear 0s;
    padding: 26px 26px 48px;
    height: 100 dvh;
    overflow: auto;
    display: flex;
    flex-direction: column;
    width: 100%
}

.menu__catalog::-webkit-scrollbar {
    display: none
}

.menu__catalog-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px
}

.menu__catalog-close {
    margin-left: auto;
    --size: 50px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--color-whte);
    transition: all .3s ease-in 0s
}

.menu__catalog-close:before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: var(--color-primary);
    transition: all .3s ease-in 0s;
    --size: 24px;
    width: var(--size);
    height: var(--size)
}

.menu__catalog-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1 1 auto
}

.menu__catalog-body {
    flex: 1 1 auto
}

.menu__catalog-list {
    display: flex;
    flex-direction: column
}

.menu__catalog-link {
    font-size: 24px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -.24px;
    transition: all .3s ease-in 0s;
    padding: 3px
}

.menu__catalog-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.menu__catalog-row {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.menu__catalog-column {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.menu__catalog-title {
    font-size: 16px;
    font-style: normal;
    line-height: 125%;
    color: rgba(var(--color-primary--rgb), .5)
}

.menu__catalog-value {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    transition: all .3s ease-in 0s;
    max-width: max-content;
    margin: -3px;
    padding: 3px
}

.menu__catalog-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.menu__catalog-social {
    --size: 44px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--color-alt);
    transition: all .3s ease-in 0s
}

.menu__catalog-social:before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: var(--color-primary);
    transition: all .3s ease-in 0s;
    --size: 18px;
    width: var(--size);
    height: var(--size)
}

.form-search {
    position: fixed;
    left: -100%;
    top: 0;
    transition: all .3s ease-in 0s;
    background: var(--color-bg-secondary)
}

.form-search__inner {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.form-search__top {
    display: flex;
    gap: 12px
}

.form-search__back {
    --size: 72px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-whte);
    border-radius: 20px
}

.form-search__back:before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: var(--color-primary);
    --size: 32px;
    width: var(--size);
    height: var(--size)
}

.form-search__field {
    position: relative;
    width: 100%
}

.form-search__input {
    height: 56px;
    border-radius: 16px;
    border: 1px solid var(--color-whte);
    transition: all .3s ease-in 0s;
    padding: 20px 15px 15px 56px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -.16px;
    color: var(--color-primary)
}

.form-search__input::placeholder {
    color: var(--color-gry);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -.16px
}

.form-search__btn {
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: var(--color-primary);
    --size: 25px;
    width: var(--size);
    height: var(--size);
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%)
}

.form-search__body {
    opacity: 0;
    pointer-events: none;
    height: 0;
    transition: all .3s ease-in 0s;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.form-search__body::-webkit-scrollbar {
    display: none
}

.form-search__body._active {
    opacity: 1;
    pointer-events: all;
    height: auto
}

.form-search__value {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -.22px
}

.form-search__row {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.form-search__column {
    border-radius: 20px;
    padding: 26px;
    background: var(--color-whte);
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-search__description {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-search__title {
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: .66px;
    transition: all .3s ease-in 0s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.form-search__text {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: .48px;
    color: var(--color-gry)
}

.form-search__img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 326/160
}

.form-search__img img, .form-search__img picture {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: all .3s ease-in 0s
}

._menu .menu__catalog {
    right: 0
}

@layer component {
    .footer {
        background: var(--color-bg-third);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 40px 0 20px;
        color: var(--color-gry-alt);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: .42px;
        z-index: 2;
        line-height: 1.57
    }

    .footer__gotop {
        display: none
    }

    .footer__container {
        display: flex;
        position: relative;
        flex-direction: column
    }

    .footer__left {
        display: flex;
        flex-direction: column;
        gap: 12px;
        border-bottom: 1px solid var(--color-brdr-alt);
        padding-bottom: 16px;
        margin-bottom: 16px;
        line-height: 1.57
    }

    .footer__logo {
        display: flex;
        width: 165px;
        height: 27.214px
    }

    .footer__logo img, .footer__logo picture {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 100%;
        max-height: 100%
    }

    .footer__items, .footer__links {
        display: flex;
        flex-direction: column;
        gap: 12px
    }

    .footer__row {
        padding-top: 4px;
        margin-top: 16px;
        border-top: 1px solid var(--color-brdr-alt)
    }

    .footer__label {
        margin-bottom: 4px
    }

    .footer__contact-link {
        color: var(--color-whte);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.57;
        margin-bottom: 16px
    }

    .footer__contact-link + .footer__label {
        margin-top: -12px
    }

    .footer__contact-link br {
        display: block
    }

    .footer__media {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px
    }

    .footer__media-link {
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        --size: 44px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .footer__media-link {
        background: var(--color-alt);
        color: #010002
    }

    .footer__media-link:before {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        mask: var(--icon) center center/contain no-repeat;
        background: currentColor
    }

    .footer__bottom-text {
        flex: 0 0 100%;
        border-top: 1px solid var(--color-brdr-alt);
        padding-top: 16px;
        margin-top: 16px
    }
} @layer component {
    .btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        line-height: 26px;
        letter-spacing: .7px;
        text-transform: uppercase;
        color: var(--color-whte);
        background: var(--color-blck);
        border-radius: 80px;
        padding: 15px;
        transition: all .3s ease-in 0s
    }
} @layer mod {
    .btn--alt {
        color: var(--color-alt)
    }

    .btn--bg {
        background: var(--color-alt);
        color: var(--color-primary)
    }
} .wrapper {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      overflow: hidden;
      background: var(--color-bg-secondary);
      position: relative
  }

@supports (overflow: clip) {
    .wrapper {
        overflow: clip
    }
}

.wrapper:has(.header--two) {
    padding-top: 98px
}

.wrapper > main {
    flex: 1 1 auto
}

.wrapper > * {
    min-width: 0
}

svg {
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent)
}

.text-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.text-block p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: .48px
}

.text-block ul {
    display: flex;
    flex-direction: column;
    gap: 0px
}

.text-block ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: .48px;
    position: relative;
    padding-left: 30px
}

.text-block ul li:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 12px;
    --size: 5px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: var(--color-primary)
}

.text-block h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: .6px
}

.text-block h3 span {
    padding: 0 10px;
    display: inline-flex;
    background: var(--color-alt)
}

@layer base {
    [class*=__container], .container {
        --pad: 16px;
        box-sizing: border-box;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 var(--pad)
    }
} @layer component {
    .intro {
        background: linear-gradient(113deg, #5f90fc 7.1%, #84a7f5 47.13%, #52b2f6 71.8%, #0374be 103.92%)
    }

    .intro__container {
        position: relative;
        padding-top: 220px;
        padding-bottom: 51px
    }

    .intro__inner {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 53px
    }

    .intro__info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: relative;
        max-width: 1054px;
        width: 100%;
        margin: 0 auto
    }

    .intro__title {
        font-weight: 900;
        color: var(--color-whte);
        font-size: 32px;
        line-height: 38px;
        letter-spacing: .64px
    }

    .intro__text {
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: .36px;
        color: var(--color-whte)
    }

    .intro__btn {
        max-width: 100%;
        margin-top: 16px
    }

    .intro__arrow {
        position: absolute;
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: var(--color-whte);
        width: 54.694px;
        height: 42.864px;
        bottom: -87px;
        left: 7.3%;
        transform: rotate(-18.581deg)
    }

    .intro__bottom {
        position: relative;
        height: 252px
    }

    .intro__tag {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: -.16px;
        padding: 12px 16px;
        border-radius: 100px;
        background: var(--color-alt);
        max-width: max-content;
        color: var(--color-blck);
        position: absolute;
        white-space: nowrap
    }

    .intro__tag.intro__tag--one {
        top: 51px;
        left: 19.2%;
        transform: rotate(-11.675deg)
    }

    .intro__tag.intro__tag--two {
        top: 188px;
        left: 18.9%;
        transform: rotate(9.639deg)
    }

    .intro__tag.intro__tag--three {
        transform: rotate(-6.236deg);
        left: 49.3%;
        top: 108px
    }

    .intro__tag.intro__tag--four {
        transform: rotate(-8.691deg);
        top: 131px;
        left: 56%
    }

    .intro__tag.intro__tag--five {
        transform: rotate(6.678deg);
        top: 17px;
        left: 68.1%
    }

    .intro__tag.intro__tag--six {
        transform: rotate(-11.675deg);
        top: 55px;
        right: 1.7%
    }

    .intro__icon {
        background: var(--color-alt);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        width: var(--size);
        height: var(--size);
        position: absolute
    }

    .intro__icon:before {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: var(--color-blck);
        width: var(--size);
        height: var(--size)
    }

    .intro__icon.intro__icon--one {
        --size: 65px;
        top: 108px
    }

    .intro__icon.intro__icon--one:before {
        content: "";
        --size: 36px
    }

    .intro__icon.intro__icon--two {
        --size: 48px;
        top: 200px;
        left: 79.2%
    }

    .intro__icon.intro__icon--two:before {
        content: "";
        --size: 27px
    }

    .intro__icon.intro__icon--three {
        --size: 40px;
        bottom: 209px;
        right: 13.7%
    }

    .intro__icon.intro__icon--three:before {
        content: "";
        --size: 22px
    }

    .intro__decor {
        border-radius: 50%;
        width: var(--size);
        height: var(--size);
        position: absolute
    }

    .intro__decor img, .intro__decor picture {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover
    }

    .intro__decor.intro__decor--one {
        --size: 659px;
        top: -8px;
        left: -88%
    }

    .intro__decor.intro__decor--two {
        --size: 492px;
        top: 348px;
        right: -61%
    }

    .intro__img {
        position: absolute
    }

    .intro__img img, .intro__img picture {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover
    }

    .intro__img.intro__img--one {
        width: 254.04px;
        height: 87.117px;
        top: 118px;
        left: -57px
    }

    .intro__img.intro__img--two {
        width: 258px;
        height: 89px;
        top: 259px;
        right: -157px
    }
} @layer component {
    .target {
        position: relative;
        background: var(--color-whte);
        padding-top: 61px;
        margin-bottom: 60px
    }

    .target__row {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 50px;
        background: var(--color-bg-secondary);
        border-radius: 40px;
        max-width: 1200px;
        width: 100%
    }

    .target__inner {
        display: flex;
        gap: 68px;
        max-width: 1150px;
        margin: 0 auto
    }

    .target__img {
        width: 366.291px;
        height: 580.833px;
        flex: 0 0 366.291px
    }

    .target__img img, .target__img picture {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover
    }

    .target__info {
        align-self: center;
        padding-bottom: 120px;
        display: flex;
        flex-direction: column;
        gap: 15px
    }

    .target__info-description {
        display: flex;
        flex-direction: column;
        gap: 25px
    }

    .target__slogan {
        margin-top: -110px;
        margin-bottom: 66px
    }
} @layer component {
    .text-40 {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px
    }

    .text-18 {
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: .48px
    }

    .text-28 {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }

    .text-gry {
        color: var(--color-gry)
    }

    .text-22 {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: .48px
    }

    .text-50 {
        font-weight: 700;
        font-size: 24px;
        line-height: 42px;
        letter-spacing: .48px
    }

    .text-bg span {
        padding: 0 10px;
        display: inline-flex;
        background: var(--color-alt)
    }

    .text-content {
        font-size: 16px;
        letter-spacing: .48px;
        line-height: 26px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        color: var(--color-gry)
    }

    .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6 {
        display: inline-flex;
        align-self: flex-start;
        background: var(--color-alt);
        font-weight: 600;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: .48px
    }

    .text-content blockquote {
        position: relative;
        padding-top: 40px;
        letter-spacing: -.16px
    }

    .text-content blockquote:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        --size: 41px;
        width: var(--size);
        height: var(--size);
        background: var(--color-grn);
        mask: url(/img/icons/14.svg) center center/contain no-repeat;
        -webkit-mask: url(/img/icons/14.svg) center center/contain no-repeat
    }
} .swiper-pagging {
      display: flex;
      justify-content: center;
      gap: 10px
  }

.swiper-pagging .swiper-pagination-bullet {
    --size: 8px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    border-radius: 50%;
    background: #717d8e;
    opacity: .5;
    cursor: pointer;
    outline: none;
    transition: all .3s ease-in 0s
}

.swiper-pagging .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1
}

@layer component {
    .card-target__inner {
        gap: 14px;
        display: grid;
        grid-template-columns:1fr 48.3636363636%;
        align-items: flex-start
    }

    .card-target__info {
        gap: 12px;
        display: flex;
        flex-direction: column
    }

    .card-target__title {
        font-weight: 700;
        font-size: 20px;
        line-height: 26px;
        letter-spacing: -.2px
    }

    .card-target__content {
        display: flex;
        flex-direction: column;
        gap: 22px
    }

    .card-target__description {
        display: flex;
        flex-direction: column;
        gap: 25px
    }

    .card-target__row {
        display: flex;
        flex-wrap: wrap;
        gap: 68px
    }

    .card-target__column {
        display: flex;
        flex-direction: column;
        gap: 12px
    }

    .card-target__column:nth-child(2n) {
        padding-left: 30px;
        border-left: 1px solid var(--color-brdr)
    }

    .card-target__category {
        color: var(--color-gry);
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: .42px
    }

    .card-target__value {
        background: var(--color-alt);
        margin: 0 -2px;
        padding: 0 2px;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -.24px;
        max-width: max-content
    }

    .card-target__text {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;
        letter-spacing: .54px
    }

    .card-target__link {
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: .48px;
        color: var(--color-blck-two);
        transition: all .3s ease-in 0s;
        max-width: max-content;
        padding-bottom: 6px
    }

    .card-target__link:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        transition: all .3s ease-in 0s;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .card-target__link:before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--color-alt);
        transition: all .3s ease-in 0s;
        top: 100%;
        left: 0
    }

    .card-target__img {
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 358/160
    }

    .card-target__img img, .card-target__img picture {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover
    }
} @layer component {
    .slogan-block {
        width: 1801px;
        height: 190px;
        transform: translate(-42%);
        left: 50%;
        position: relative
    }

    .slogan-block .slogan-block__text {
        font-size: 16px;
        fill: #000;
        text-anchor: start
    }
} @layer component {
    .platform {
        margin-bottom: 60px
    }

    .platform__title {
        margin-bottom: 16px
    }

    .platform__row {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        gap: 10px
    }

    .platform__column {
        background: var(--color-whte);
        transition: all .3s ease-in 0s;
        border-radius: 16px;
        padding: 11px 45px;
        display: flex;
        gap: 28px;
        justify-content: space-between;
        position: relative;
        height: 85px
    }

    .platform__column-info {
        display: flex;
        flex-direction: column;
        gap: 17px
    }

    .platform__column-img {
        align-content: center;
        height: 100%
    }

    .platform__column-img img, .platform__column-img picture {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain
    }

    .platform__column-text {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;
        letter-spacing: .54px;
        margin-top: auto
    }

    .platform__column-arrow {
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size);
        transition: all .3s ease-in 0s
    }
} @layer component {
    .team {
        margin-bottom: 75px
    }

    .team__decor {
        position: relative;
        transform: translate(-50%);
        left: 50%;
        width: 691.486px;
        height: 189.245px
    }

    .team__decor img, .team__decor picture {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover
    }

    .team__top {
        margin-bottom: 53px
    }

    .team__link {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 44px;
        letter-spacing: .54px;
        color: var(--color-blck-two);
        display: flex;
        align-items: center;
        gap: 10px
    }

    .team__link:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .team__inner {
        position: relative;
        z-index: 2;
        margin-top: -15px
    }

    .team__slider {
        overflow: visible
    }

    .team__slide {
        width: 252px
    }

    .team__arrows {
        position: absolute;
        top: 54px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        z-index: 2
    }

    .team__arrow {
        transition: all .3s ease-in 0s;
        --size: 48px;
        width: var(--size);
        height: var(--size);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(var(--color-whte--rgb), .8)
    }

    .team__arrow:before {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        --size: 20px;
        width: var(--size);
        height: var(--size);
        transition: all .3s ease-in 0s
    }

    .team__arrow.swiper-button-disabled {
        pointer-events: none;
        opacity: 0
    }

    .team__pagging {
        margin-top: 61px
    }
} @layer component {
    .team-card {
        display: flex;
        flex-direction: column;
        gap: 13px;
        height: auto
    }

    .team-card__img {
        border-radius: 50%;
        overflow: hidden;
        --size: 157px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size);
        position: relative;
        margin: 0 auto
    }

    .team-card__img:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 4px solid #3fc421
    }

    .team-card__img img, .team-card__img picture {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover
    }

    .team-card__info {
        display: flex;
        flex-direction: column;
        gap: 4px;
        text-align: center
    }

    .team-card__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px
    }

    .team-card__text {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        color: var(--color-gry)
    }

    .team-card__link {
        margin-top: 10px;
        transition: all .3s ease-in 0s;
        opacity: 0;
        pointer-events: none
    }

    .team-card__link:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .team-card__link {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0px;
        gap: 0px;
        color: var(--color-blck-two)
    }
} @layer component {
    .partner {
        position: relative;
        margin-bottom: 180px
    }

    .partner__slogan {
        margin-bottom: 1px;
        transform: translate(-74%)
    }

    .partner__pagging {
        margin-top: 52px
    }

    .partner__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        margin-bottom: 26px
    }

    .partner__link {
        transition: all .3s ease-in 0s;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: var(--color-blck-two)
    }

    .partner__link:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size);
        transition: all .3s ease-in 0s
    }

    .partner__slider {
        overflow: visible
    }

    .partner__slide {
        background: var(--color-whte);
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        border: 1px solid #d8d8d8
    }

    .partner__slide-img {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .partner__slide-img img, .partner__slide-img picture {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain
    }

    .partner__decor {
        position: absolute;
        width: var(--size);
        height: var(--size);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: var(--color-alt)
    }

    .partner__decor:before {
        content: "";
        width: var(--size);
        height: var(--size);
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: var(--color-primary)
    }

    .partner__decor.partner__decor--one {
        top: -17px;
        left: 23%;
        --size: 63px
    }

    .partner__decor.partner__decor--one:before {
        content: "";
        --size: 35px
    }

    .partner__decor.partner__decor--two {
        --size: 48px;
        top: 212px;
        right: 20%
    }

    .partner__decor.partner__decor--two:before {
        content: "";
        --size: 26px
    }
} .loaded .preloader {
      opacity: 0;
      visibility: hidden;
      pointer-events: none
  }

@keyframes slide-top02 {
    0% {
        transform: translateY(80px);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slide-top03 {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.section {
    margin-bottom: var(--spacing)
}

.swiper-arrows {
    display: flex;
    align-items: center;
    gap: 6px
}

.swiper-arrow {
    --size: 36px;
    width: var(--size);
    height: var(--size);
    flex: 0 0 var(--size);
    border-radius: 50%;
    transition: all .3s ease-in 0s;
    background: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center
}

.swiper-arrow:before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background: var(--color-whte);
    --size: 14px;
    width: var(--size);
    height: var(--size)
}

.swiper-arrow.swiper-button-disabled {
    background: var(--color-gry);
    pointer-events: none
}

.outer {
    width: 100%;
    height: 100 dvh;
    overflow: hidden;
    position: relative;
    scroll-behavior: smooth
}

.inner {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    box-sizing: content-box;
    scroll-behavior: smooth
}

@layer component {
    .navigation__inner {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .navigation__list {
        display: flex;
        gap: 8px
    }

    .navigation__link {
        white-space: nowrap;
        height: 100%;
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        letter-spacing: .48px;
        transition: all .3s ease-in 0s;
        padding: 13px 24px;
        border-radius: 70px;
        background: var(--color-whte);
        display: flex;
        align-items: center;
        gap: 13px
    }

    .navigation__link span {
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 0px;
        letter-spacing: .72px;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size);
        display: flex;
        justify-content: center;
        align-items: center
    }

    .navigation__link.active {
        background: var(--color-alt)
    }
} @layer component {
    .about {
        position: relative;
        padding-bottom: 239px
    }

    .about__top {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: var(--spacing)
    }

    .about__row {
        display: flex;
        flex-direction: column;
        gap: 26px
    }

    .about__column.about__column--head {
        padding-bottom: 7px;
        padding-top: 0
    }

    .about__column-items {
        gap: 8px;
        display: flex;
        flex-direction: column-reverse
    }

    .about__column-category {
        color: #5b798f;
        opacity: .6;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: .48px
    }

    .about__column-value {
        letter-spacing: .48px;
        line-height: 32px
    }

    .about__decor {
        position: absolute;
        width: 352.229px;
        height: 189.245px;
        top: auto;
        bottom: 0;
        right: -125px
    }

    .about__decor img, .about__decor picture {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover
    }
} @layer component {
    .contacts {
        font-size: 16px;
        line-height: 1.25;
        letter-spacing: .48px
    }

    .contacts__row {
        display: grid;
        gap: 30px
    }

    .contacts__address {
        background: var(--color-whte);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        gap: 35px;
        padding: 30px 16px
    }

    .contacts__address-item {
        padding-left: 42px;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 4px;
        color: var(--color-gry)
    }

    .contacts__address-item:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 24px;
        height: 24px;
        background: var(--icon) center center/contain no-repeat
    }

    .contacts__address-link {
        font-weight: 700
    }

    .contacts__address-medias {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px
    }

    .contacts__address-media {
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        --size: 44px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .contacts__address-media {
        background: var(--color-alt);
        color: #010002
    }

    .contacts__address-media:before {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        mask: var(--icon) center center/contain no-repeat;
        background: currentColor
    }

    .contacts__form {
        background: var(--color-whte);
        padding: 24px;
        border-radius: 16px;
        display: flex;
        flex-direction: column
    }

    .contacts__form-title {
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 28px;
        letter-spacing: .84px;
        line-height: 1.14;
        font-weight: 700
    }

    .contacts__form-text {
        color: var(--color-gry);
        margin-bottom: 46px
    }

    .contacts__btn {
        font-size: 14px;
        font-weight: 700;
        line-height: 185.714%;
        letter-spacing: .7px;
        padding: 15px
    }
} @layer base {
    .section-head {
        margin-bottom: 40px;
        position: relative
    }

    .section-head__title {
        margin-bottom: 16px
    }

    .section-head__text {
        font-size: 16px;
        line-height: 1.62;
        letter-spacing: .48px;
        font-weight: 500;
        color: var(--color-gry)
    }

    .section-head__decor {
        position: absolute
    }
} @layer component {
    .page-back {
        margin-bottom: 15px
    }

    .page-back__link {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: .42px
    }

    .page-back__link:before {
        content: "";
        -webkit-mask: var(--icon) center center/contain no-repeat;
        mask: var(--icon) center center/contain no-repeat;
        background: currentColor;
        width: 20px;
        height: 20px;
        flex: 0 0 20px
    }
} @layer mod; @layer component {
    .donate__row {
        background: var(--color-whte);
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        justify-content: center;
        align-items: center;
        padding: 40px 16px
    }

    .donate__qr {
        display: block;
        width: 100%;
        height: auto;
        max-width: 258px;
        max-height: 319px
    }

    .donate__qr img {
        width: 100%;
        max-width: 100%;
        object-fit: contain
    }

    .donate__btn {
        margin-bottom: 40px;
        width: 100%
    }

    .donate__items {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px
    }

    .donate__card {
        padding: 1px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--color-bg-secondary);
        border-radius: 5px;
        aspect-ratio: 52/28;
        width: 52px
    }

    .donate__card img {
        width: auto;
        height: auto
    }
} @layer component {
    .direction {
        padding-bottom: 100px
    }

    .direction__top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
        position: relative
    }

    .direction__decor {
        position: absolute;
        top: 42px;
        right: 47px;
        --size: 73px;
        width: var(--size);
        height: var(--size);
        background: var(--color-alt);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%
    }

    .direction__decor:before {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: var(--color-primary);
        --size: 55px;
        width: var(--size);
        height: var(--size)
    }

    .direction__slider {
        overflow: visible
    }

    .direction__slide.swiper-slide-active {
        opacity: 1
    }
} .direction__arrows {
      margin-top: 40px
  }

.direction__arrows .direction__arrow.swiper-button-disabled:before {
    content: "";
    background: rgba(var(--color-primary--rgb), .5);
    pointer-events: none
}

@layer component {
    .objective {
        padding-bottom: 100px
    }

    .objective__top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
        position: relative
    }

    .objective__decor {
        position: absolute;
        top: 6px;
        right: 27px;
        --size: 61px;
        width: var(--size);
        height: var(--size);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: var(--color-alt)
    }

    .objective__decor:before {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: var(--color-primary);
        --size: 38px;
        width: var(--size);
        height: var(--size)
    }

    .objective__row {
        display: grid;
        grid-template-columns:repeat(1, 1fr);
        gap: 16px
    }

    .objective__column {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 24px 30px 0;
        background: var(--color-whte);
        border-radius: 20px;
        border: 1px solid var(--color-brdr);
        transition: all .3s ease-in 0s
    }

    .objective__column-info {
        display: flex;
        flex-direction: column;
        gap: 30px
    }

    .objective__column-text {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: .48px
    }

    .objective__column-img {
        margin: auto auto 0
    }

    .objective__column-img img, .objective__column-img picture {
        width: auto;
        height: 142px;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        transition: all .3s ease-in 0s
    }
} @layer component {
    .staff {
        padding-bottom: 114px
    }

    .staff__decor {
        position: absolute;
        top: 6px;
        right: 27px;
        --size: 95px;
        width: var(--size);
        height: var(--size);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: var(--color-alt)
    }

    .staff__decor:before {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: var(--color-primary);
        --size: 53px;
        width: var(--size);
        height: var(--size)
    }

    .staff__top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 36px;
        position: relative
    }

    .staff__row {
        display: grid;
        grid-template-columns:repeat(1, 1fr);
        gap: 45px 30px
    }

    .staff__column .team-card__link {
        opacity: 1;
        pointer-events: all;
        position: relative;
        max-width: max-content;
        margin: auto auto 0
    }

    .staff__column .team-card__link:before {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        height: 2px;
        background: var(--color-alt);
        transition: all .3s ease-in 0s;
        width: 0
    }

    .staff__showmore {
        margin: 60px auto 0;
        display: flex;
        max-width: max-content;
        padding: 15px
    }
} @layer component {
    .worker {
        margin-bottom: 70px
    }

    .worker__top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 41px;
        position: relative
    }

    .worker__link {
        max-width: max-content;
        margin-top: 13px
    }

    .worker__tabs .tabs__title {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: .48px;
        color: var(--color-blck-two);
        padding: 10px 0;
        position: relative
    }

    .worker__tabs .tabs__title:before {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 0;
        width: 0px;
        height: 2px;
        background: var(--color-blck-two);
        transition: all .3s ease-in 0s
    }

    .worker__tabs .tabs__title._tab-active:before {
        content: "";
        width: 100%
    }

    .worker__tabs .tabs__navigation {
        display: flex;
        gap: 20px;
        margin-bottom: 30px
    }

    .worker-block__cards {
        display: grid;
        grid-template-columns:repeat(1, 1fr);
        gap: 20px
    }

    .worker-block__showmore {
        display: flex;
        max-width: max-content;
        margin: 40px auto 0
    }

    .card-worker {
        border-radius: 16px;
        overflow: hidden;
        background: var(--color-whte);
        display: flex;
        flex-direction: column
    }

    .card-worker__img {
        aspect-ratio: 358/160;
        overflow: hidden
    }

    .card-worker__img img, .card-worker__img picture {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        display: block
    }

    .card-worker__inner {
        padding: 16px 16px 30px;
        display: flex;
        flex-direction: column;
        gap: 16px
    }

    .card-worker__info {
        display: flex;
        flex-direction: column;
        gap: 18px
    }

    .card-worker__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px
    }

    .card-worker__tag {
        background: var(--bg);
        color: var(--color);
        padding: 7px 9px;
        border-radius: 8px;
        font-weight: 600
    }

    .card-worker__title {
        font-weight: 700;
        margin: 2px 0 -2px
    }

    .card-worker__items {
        display: flex;
        flex-wrap: wrap;
        gap: 8px
    }

    .card-worker__item {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        padding: 8px 10px;
        border-radius: 10px;
        background: #f1f2f4
    }

    .card-worker__link {
        margin-top: auto;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: .48px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--color-blck-two);
        position: relative;
        max-width: max-content
    }

    .card-worker__link:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .card-worker__link:before {
        content: "";
        height: 2px;
        width: 0px;
        background: var(--color-alt);
        position: absolute;
        bottom: -4px;
        left: 0;
        transition: all .3s ease-in 0s
    }
} .employment {
      padding-bottom: 120px;
      position: relative
  }

.employment__inner {
    width: 100%;
    margin: 0 auto;
    position: relative
}

.employment__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px
}

.employment__form {
    width: 100%;
    margin: 0 auto
}

.employment__item .input {
    height: 56px;
    border-radius: 16px;
    line-height: 24px;
    font-size: 16px;
    padding: 8px 16px
}

.employment__item .input::placeholder {
    line-height: 24px;
    font-size: 16px
}

.employment__btn {
    width: 100%;
    max-width: 100%
}

.employment__decor {
    position: absolute;
    width: var(--size);
    height: var(--size)
}

.employment__decor img, .employment__decor picture {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.employment__decor.employment__decor--one {
    --size: 52px;
    top: 202px;
    left: -106px
}

.employment__decor.employment__decor--two {
    --size: 52px;
    left: -66px;
    bottom: -15px
}

.employment__decor.employment__decor--three {
    --size: 45px;
    top: 192px;
    right: -25px
}

.employment__decor.employment__decor--four {
    --size: 65px;
    right: -13px;
    bottom: -93px
}

.employment__img {
    position: absolute;
    width: 622.269px;
    height: 344.334px;
    bottom: 148px;
    right: -129px;
    transform: rotate(15.598deg)
}

.employment__img img, .employment__img picture {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

@layer component {
    .news__loadmore {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .news__loadmore .btn {
        font-size: 14px;
        width: 100%;
        line-height: 26px;
        letter-spacing: .7px;
        font-weight: 700
    }

    .news__row {
        display: grid;
        gap: 16px;
        margin-bottom: 40px
    }

    .news-item {
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column
    }

    .news-item__image {
        overflow: hidden;
        display: block;
        width: 100%;
        height: 160px
    }

    .news-item__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .3s ease-in 0s
    }

    .news-item__content {
        padding: 16px 16px 26px;
        background: var(--color-whte);
        display: flex;
        flex-direction: column
    }

    .news-item__tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px
    }

    .news-item__tag {
        padding: 6px 8px;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.14;
        color: var(--color);
        background: var(--bg);
        border-radius: 8px
    }

    .news-item__name {
        margin-bottom: 16px
    }

    .news-item__name {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-weight: 700;
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: -.2px
    }

    .news-item__link {
        display: none;
        align-items: center;
        gap: 10px;
        position: relative;
        font-size: 16px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: .48px;
        color: var(--color-blck-two);
        transition: all .3s ease-in 0s;
        max-width: max-content;
        padding-bottom: 6px
    }

    .news-item__link:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        transition: all .3s ease-in 0s;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .news-item__link:before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--color-alt);
        transition: all .3s ease-in 0s;
        top: 100%;
        left: 0
    }

    .news-item__list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-top: 18px;
        border-top: 1px solid #D6DDE2
    }

    .news-item__list-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        font-weight: 400;
        line-height: 162.5%;
        letter-spacing: .48px
    }

    .news-item__list-item:before {
        content: "";
        background: var(--icon) center center/contain no-repeat;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }
} @layer mod; @layer component {
    .article {
        background: var(--color-whte);
        padding: 16px 0 30px;
        border-radius: 20px
    }

    .article__title {
        margin-bottom: 16px
    }

    .article__image {
        display: block;
        width: 100%;
        overflow: hidden;
        border-radius: 16px;
        margin-bottom: 16px;
        aspect-ratio: 358/160
    }

    .article__image img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover
    }

    .article__icon {
        margin-bottom: 16px;
        width: 115.423px;
        height: 122px;
        display: block
    }

    .article__icon img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .article__tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px
    }

    .article__tag {
        padding: 6px 8px;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.14;
        color: var(--color);
        background: var(--bg);
        border-radius: 8px
    }

    .article__list {
        padding-top: 20px;
        border-top: 1px solid #D6DDE2;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px
    }

    .article__list-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        font-weight: 400;
        line-height: 162.5%;
        letter-spacing: .48px
    }

    .article__list-item:before {
        content: "";
        background: var(--icon) center center/contain no-repeat;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .article__donwload.btn {
        margin-top: 16px;
        gap: 13px;
        padding: 15px 24px;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: .48px
    }

    .article__donwload.btn:before {
        content: "";
        -webkit-mask: var(--icon) center center/contain no-repeat;
        mask: var(--icon) center center/contain no-repeat;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size);
        background: currentColor
    }

    .article__logo {
        margin-bottom: 16px;
        display: block;
        height: 106px;
        width: 196px;
        border-radius: 10px
    }

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

    .article__date {
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        color: #69726d;
        margin-bottom: 16px;
        display: block
    }
} @layer mod {
    .article--project .article__row {
        color: var(--color-gry)
    }

    .article--project .article__row h2, .article--project .article__row h3, .article--project .article__row h4, .article--project .article__row h5, .article--project .article__row h6 {
        color: var(--color-primary)
    }
} @layer component {
    .achievement {
        padding-bottom: 106px
    }

    .achievement__top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 39px;
        position: relative
    }

    .achievement__decor {
        position: absolute;
        top: 52px;
        right: 17px;
        --size: 73px;
        width: var(--size);
        height: var(--size);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: var(--color-alt)
    }

    .achievement__decor:before {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: var(--color-primary);
        --size: 51px;
        width: var(--size);
        height: var(--size)
    }

    .achievement__row {
        display: grid;
        grid-template-columns:repeat(1, 1fr);
        gap: 20px
    }

    .achievement__showmore {
        margin: 40px auto 0;
        display: flex;
        max-width: max-content;
        min-width: 239px
    }

    .achievement-card {
        border-radius: 16px;
        overflow: hidden;
        background: var(--color-whte);
        display: flex;
        flex-direction: column
    }

    .achievement-card__img {
        overflow: hidden;
        aspect-ratio: 358/160
    }

    .achievement-card__img img, .achievement-card__img picture {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        display: block
    }

    .achievement-card__inner {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%
    }

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

    .achievement-card__top {
        display: flex;
        flex-direction: column;
        gap: 9px
    }

    .achievement-card__time {
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
        padding: 6px 8px;
        background: #f1f2f4;
        max-width: max-content;
        border-radius: 8px
    }

    .achievement-card__value {
        font-weight: 600;
        color: #f39c10;
        display: flex;
        align-items: center;
        gap: 11px
    }

    .achievement-card__value:before {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #f39c10;
        --size: 16px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size);
        transform: translateY(-2px)
    }

    .achievement-card__content {
        display: flex;
        flex-direction: column;
        gap: 8px
    }

    .achievement-card__text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .achievement-card__arrow {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: .48px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--color-blck-two);
        position: relative;
        max-width: max-content;
        margin-top: auto
    }

    .achievement-card__arrow:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .achievement-card__arrow:before {
        content: "";
        height: 2px;
        width: 0px;
        background: var(--color-alt);
        position: absolute;
        bottom: -4px;
        left: 0;
        transition: all .3s ease-in 0s
    }
} @layer component {
    .services__row {
        display: grid;
        grid-template-columns:repeat(1, 1fr);
        gap: 22px;
        margin-bottom: 70px
    }

    .services__item:nth-child(2n) {
        background: #2AD886
    }

    .services__item:nth-child(odd) {
        background: #CCBCF4
    }

    .services__item {
        padding: 22px;
        border-radius: 20px;
        flex-direction: column;
        display: flex
    }

    .services__item-info {
        margin-bottom: 20px
    }

    .services__item-link {
        align-items: center;
        gap: 10px;
        position: relative;
        display: flex;
        margin-top: auto;
        font-size: 16px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: .48px;
        color: var(--color-blck-two);
        transition: all .3s ease-in 0s;
        max-width: max-content;
        padding-bottom: 6px
    }

    .services__item-link:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        transition: all .3s ease-in 0s;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .services__item-link:before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--color-alt);
        transition: all .3s ease-in 0s;
        top: 100%;
        left: 0
    }

    .services__loadmore {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .services__loadmore .btn {
        font-size: 14px;
        width: 100%;
        line-height: 26px;
        letter-spacing: .7px;
        font-weight: 700
    }
} @layer component {
    .products__row {
        display: grid;
        gap: 16px;
        grid-template-columns:repeat(1, 1fr);
        margin-bottom: 60px
    }

    .products__item {
        background: var(--color-whte);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        padding: 16px 16px 26px
    }

    .products__item-image {
        display: block;
        overflow: hidden;
        border-radius: 10px;
        width: 196px;
        height: 106px;
        margin-bottom: 16px
    }

    .products__item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .products__item-name {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: .6px;
        margin-bottom: 8px
    }

    .products__item-text {
        color: var(--color-gry);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: .48px
    }

    .products__item-link {
        align-items: center;
        gap: 10px;
        position: relative;
        display: flex;
        margin-top: auto;
        font-size: 16px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: .48px;
        color: var(--color-blck-two);
        transition: all .3s ease-in 0s;
        max-width: max-content;
        padding-bottom: 6px
    }

    .products__item-link:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        transition: all .3s ease-in 0s;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .products__item-link:before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--color-alt);
        transition: all .3s ease-in 0s;
        top: 100%;
        left: 0
    }

    .products__loadmore {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .products__loadmore .btn {
        font-size: 14px;
        width: 100%;
        line-height: 26px;
        letter-spacing: .7px;
        font-weight: 700
    }
} @layer component {
    .projects__tabs .tabs__title {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: .48px;
        color: var(--color-blck-two);
        padding: 10px 0;
        position: relative
    }

    .projects__tabs .tabs__title:before {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 0;
        width: 0px;
        height: 2px;
        background: var(--color-blck-two);
        transition: all .3s ease-in 0s
    }

    .projects__tabs .tabs__title._tab-active:before {
        content: "";
        width: 100%
    }

    .projects__tabs .tabs__navigation {
        display: flex;
        gap: 20px;
        margin-bottom: 30px
    }

    .projects-block__cards {
        display: grid;
        grid-template-columns:repeat(1, 1fr);
        gap: 20px
    }

    .projects-block__card {
        display: flex;
        flex-direction: column-reverse;
        background: var(--color-whte);
        padding: 16px 16px 34px;
        border-radius: 20px;
        justify-content: flex-end
    }

    .projects-block__content {
        display: flex;
        flex-direction: column;
        align-self: stretch
    }

    .projects-block__tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px
    }

    .projects-block__tag {
        padding: 6px 8px;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.14;
        color: var(--color);
        background: var(--bg);
        border-radius: 8px
    }

    .projects-block__name {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px;
        letter-spacing: .6px
    }

    .projects-block__image {
        display: block;
        overflow: hidden;
        aspect-ratio: 326/160;
        width: 100%;
        margin-bottom: 16px;
        border-radius: 16px
    }

    .projects-block__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
        max-height: 100%
    }

    .projects-block__showmore {
        display: flex;
        max-width: max-content;
        margin: 40px auto 0
    }

    .projects-block__link {
        display: none;
        align-items: center;
        gap: 10px;
        position: relative;
        font-size: 16px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: .48px;
        color: var(--color-blck-two);
        transition: all .3s ease-in 0s;
        max-width: max-content;
        padding-bottom: 6px
    }

    .projects-block__link:after {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        background: #40474f;
        transition: all .3s ease-in 0s;
        --size: 24px;
        width: var(--size);
        height: var(--size);
        flex: 0 0 var(--size)
    }

    .projects-block__link:before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--color-alt);
        transition: all .3s ease-in 0s;
        top: 100%;
        left: 0
    }
} @media only screen and (min-width: 479.98px) {
    .achievement-block__link {
        min-width: 328px
    }

    .success-block__link {
        min-width: 289px;
        max-width: max-content
    }
}

@media only screen and (min-width: 620px) {
    .success-block__text {
        padding: 0 60px
    }

    .wrapper:has(.header--two) {
        padding-top: 112px
    }

    @layer component {
        .objective__column-img img, .objective__column-img picture {
            height: 212px
        }
    }@layer component {
    .staff {
        padding-bottom: 200px
    }
}@layer component {
    .staff__row {
        grid-template-columns:repeat(2, 1fr);
        gap: 70px 42px
    }
}@layer component {
    .worker-block__cards {
        grid-template-columns:repeat(2, 1fr);
        gap: 20px
    }
}@layer component {
    .card-worker__img {
        aspect-ratio: 381/240
    }
}@layer component {
    .achievement__row {
        grid-template-columns:repeat(2, 1fr)
    }
}@layer component {
    .achievement-card__img {
        aspect-ratio: 380/240
    }
}
}

@media only screen and (min-width: 767.98px) {
    @layer component {
        .popup {
            padding: 30px 26px
        }
    }@layer component {
    .popup__content {
        border-radius: 30px;
        padding: 36px
    }
}.popup__content {
     gap: 16px
 }

    .team-popup {
        gap: 26px
    }

    .team-popup__top {
        gap: 34px
    }

    .team-popup__img {
        --size: 149px
    }

    .team-popup__info {
        align-self: center
    }

    .team-popup__name {
        font-size: 32px;
        line-height: 42px;
        letter-spacing: -.32px
    }

    .team-popup__work {
        font-size: 22px;
        line-height: 34px;
        letter-spacing: .66px;
        margin-bottom: 16px
    }

    .team-popup__link {
        gap: 16px;
        font-size: 22px;
        line-height: 34px;
        letter-spacing: .66px
    }

    .team-popup__link:before {
        --size: 32px
    }

    .team-popup__quote {
        padding-left: 63px;
        padding-top: 0
    }

    .team-popup__text, .team-popup__category {
        font-size: 22px;
        line-height: 34px;
        letter-spacing: -.22px
    }

    .team-popup__item {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 34px;
        letter-spacing: -.22px
    }

    .team-popup__item:before {
        top: 11px
    }

    .achievement-block {
        gap: 18px
    }

    .achievement-block__img {
        aspect-ratio: 782/384;
        margin: 0 -26px;
        border-radius: 20px 20px 0 0
    }

    .achievement-block__star {
        font-size: 18px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: -.18px
    }

    .achievement-block__title {
        font-size: 32px;
        line-height: 42px;
        letter-spacing: .96px
    }

    .achievement-block__item, .achievement-block__text {
        font-size: 22px;
        font-weight: 500;
        line-height: 38px;
        letter-spacing: .66px
    }

    @layer component {
        .field {
            gap: 16px;
            margin-bottom: 30px
        }
    }@layer component {
    .field__label {
        font-size: 22px;
        line-height: .9
    }
}@layer component {
    .input {
        font-size: 22px;
        line-height: 1.09;
        padding: 26px 24px
    }
}@layer component {
    .pagination {
        gap: 10px
    }
}@layer component {
    .pagination__list {
        gap: 10px
    }
}.header {
     padding: 12px 0 16px
 }

    .menu__top-logo {
        width: 226.005px;
        height: 37.277px;
        margin-top: 6px
    }

    .menu__top-content {
        padding-right: 8px;
        gap: 24px
    }

    .menu__catalog-close {
        --size: 72px
    }

    .menu__catalog-close:before {
        --size: 32px
    }

    .menu__catalog-socials {
        gap: 16px
    }

    .menu__catalog-social {
        --size: 56px
    }

    .menu__catalog-social:before {
        --size: 24px
    }

    .form-search__inner {
        gap: 36px
    }

    .form-search__input {
        height: 72px;
        font-size: 18px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: -.18px;
        color: var(--color-primary);
        border-radius: 20px;
        padding: 20px 15px 15px 68px
    }

    .form-search__input::placeholder {
        font-size: 18px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: -.18px
    }

    .form-search__btn {
        --size: 32px;
        left: 20px
    }

    .form-search__body {
        gap: 36px
    }

    .form-search__img {
        aspect-ratio: 720/220;
        border-radius: 20px
    }

    @layer component {
        .footer {
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
            padding: 60px 0 22px;
            font-size: 22px;
            letter-spacing: .66px;
            line-height: 1.45
        }
    }@layer component {
    .footer__gotop {
        bottom: calc(100% + 50px);
        width: 74px;
        position: absolute;
        right: 6px;
        bottom: calc(100% + 53px);
        transform: translateY(-100%);
        background: var(--color-alt);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        height: 74px
    }

    .footer__gotop:before {
        content: "";
        -webkit-mask: var(--icon) center center/contain no-repeat;
        mask: var(--icon) center center/contain no-repeat;
        background: var(--color-primary);
        width: 24px;
        height: 24px
    }
}@layer component {
    .footer__left {
        padding-bottom: 22px;
        margin-bottom: 22px;
        line-height: 1.45
    }
}@layer component {
    .footer__logo {
        width: 249px;
        height: 41px
    }
}@layer component {
    .footer__row {
        padding-top: 22px;
        margin-top: 10px
    }
}@layer component {
    .footer__contact-link br {
        display: none
    }
}@layer component {
    .footer__contact-link {
        font-size: 22px;
        line-height: 145.455%
    }
}@layer component {
    .footer__media {
        gap: 16px
    }
}@layer component {
    .footer__media-link {
        --size: 54px
    }
}@layer component {
    .footer__bottom-text {
        margin-top: 22px;
        padding-top: 22px
    }
}@layer component {
    .btn {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: .9px;
        padding: 25px
    }
}.text-block {
     gap: 18px
 }

    .text-block p, .text-block ul li {
        font-size: 22px;
        font-weight: 500;
        line-height: 38px;
        letter-spacing: .66px
    }

    .text-block h3 span {
        padding: 0 10px
    }

    @layer base {
        [class*=__container], .container {
            --pad: 26px
        }
    }@layer component {
    .intro__container {
        padding-top: 225px;
        padding-bottom: 78px
    }
}@layer component {
    .intro__inner {
        gap: 189px
    }
}@layer component {
    .intro__info {
        text-align: center;
        gap: 10px
    }
}@layer component {
    .intro__title br {
        display: none
    }
}@layer component {
    .intro__title {
        font-size: 50px;
        line-height: 58px;
        letter-spacing: 0px
    }
}@layer component {
    .intro__text {
        font-size: 28px;
        line-height: 42px;
        letter-spacing: 0px
    }
}@layer component {
    .intro__btn {
        min-width: 368px;
        max-width: max-content;
        margin: 28px auto 0
    }
}@layer component {
    .intro__arrow {
        width: 80.406px;
        height: 62.889px;
        bottom: -119px;
        left: 12.3%;
        transform: rotate(0)
    }
}@layer component {
    .intro__bottom {
        height: 394px
    }
}@layer component {
    .intro__tag {
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        letter-spacing: -.24px;
        padding: 14px 24px
    }
}@layer component {
    .intro__tag.intro__tag--one {
        top: 76px;
        left: 15.5%
    }
}@layer component {
    .intro__tag.intro__tag--two {
        top: 320px;
        left: 17.7%;
        transform: rotate(9.639deg)
    }
}@layer component {
    .intro__tag.intro__tag--three {
        transform: rotate(-6.236deg);
        left: 24.8%;
        top: 187px
    }
}@layer component {
    .intro__tag.intro__tag--four {
        transform: rotate(8.921deg);
        top: 282px;
        left: 66%
    }
}@layer component {
    .intro__tag.intro__tag--five {
        transform: rotate(6.678deg);
        top: 10px;
        left: 44.1%
    }
}@layer component {
    .intro__tag.intro__tag--six {
        transform: rotate(-11.675deg);
        top: 77px;
        right: 1%
    }
}@layer component {
    .intro__icon.intro__icon--one {
        --size: 94px;
        top: 180px;
        left: -5px
    }

    .intro__icon.intro__icon--one:before {
        content: "";
        --size: 53px
    }
}@layer component {
    .intro__icon.intro__icon--two {
        --size: 48px;
        top: 139px;
        left: 60.6%
    }

    .intro__icon.intro__icon--two:before {
        content: "";
        --size: 32px
    }
}@layer component {
    .intro__icon.intro__icon--three {
        --size: 58px;
        bottom: 37px;
        right: 40.3%
    }

    .intro__icon.intro__icon--three:before {
        content: "";
        --size: 32px
    }
}@layer component {
    .intro__decor.intro__decor--one {
        top: -168px;
        left: -55%;
        --size: 1043px
    }
}@layer component {
    .intro__decor.intro__decor--two {
        --size: 1043px;
        top: 22px;
        right: -65%
    }
}@layer component {
    .intro__img.intro__img--one {
        width: 344px;
        height: 117.967px;
        left: -189px;
        top: 98px
    }
}@layer component {
    .intro__img.intro__img--two {
        width: 581.824px;
        height: 199.524px;
        top: 441px;
        right: -356px
    }
}@layer component {
    .target {
        padding-top: 149px;
        margin-top: -40px;
        border-radius: 40px;
        margin-bottom: 100px
    }
}@layer component {
    .target__row {
        margin: 0 -26px;
        width: calc(100% + 52px);
        border-radius: 30px;
        padding: 26px
    }
}@layer component {
    .target__info-description {
        gap: 32px
    }
}@layer component {
    .target__slogan {
        margin-top: -64px;
        margin-bottom: 88px
    }
}@layer component {
    .text-40 {
        font-size: 32px;
        line-height: 42px;
        letter-spacing: .96px
    }
}@layer component {
    .text-18 {
        font-size: 22px;
        line-height: 34px;
        letter-spacing: .66px;
        font-weight: 500
    }
}@layer component {
    .text-28 {
        font-size: 32px;
        line-height: 52px;
        letter-spacing: .96px
    }
}@layer component {
    .text-22 {
        font-size: 22px;
        font-weight: 400;
        line-height: 32px;
        letter-spacing: .66px
    }
}@layer component {
    .text-50 {
        font-size: 32px;
        line-height: 52px;
        letter-spacing: .64px
    }
}@layer component {
    .text-bg span {
        padding: 0 10px
    }
}@layer component {
    .text-content {
        font-size: 22px;
        line-height: 38px;
        letter-spacing: .66px;
        gap: 26px
    }
}@layer component {
    .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6 {
        padding: 0 10px;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        letter-spacing: .66px
    }
}@layer component {
    .text-content blockquote {
        padding-left: 63px;
        padding-top: 0
    }
}@layer component {
    .text-content blockquote {
        letter-spacing: -.22px;
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px
    }
}@layer component {
    .card-target__inner {
        gap: 16px
    }
}@layer component {
    .card-target__info {
        gap: 16px
    }
}@layer component {
    .card-target__title {
        font-size: 26px;
        line-height: 34px;
        letter-spacing: -.26px
    }
}@layer component {
    .card-target__description {
        gap: 30px
    }
}@layer component {
    .card-target__row {
        gap: 40px
    }
}@layer component {
    .card-target__column:nth-child(2n) {
        padding-left: 30px
    }
}@layer component {
    .card-target__column {
        gap: 16px
    }
}@layer component {
    .card-target__category {
        font-size: 22px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: .66px
    }
}@layer component {
    .card-target__value {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 42px;
        letter-spacing: -.32px
    }
}@layer component {
    .card-target__img {
        aspect-ratio: 376/300;
        border-radius: 20px
    }
}@layer component {
    .slogan-block {
        transform: translate(-48%)
    }
}@layer component {
    .slogan-block .slogan-block__text {
        font-size: 22px
    }
}@layer component {
    .platform {
        margin-bottom: 69px
    }
}@layer component {
    .platform__title {
        margin-bottom: 26px
    }
}@layer component {
    .platform__row {
        gap: 20px
    }
}@layer component {
    .platform__column {
        height: 113px;
        border-radius: 30px
    }
}@layer component {
    .team {
        margin-bottom: 28px
    }
}@layer component {
    .team__decor {
        width: 1318.172px;
        height: 360.755px
    }
}@layer component {
    .team__link {
        gap: 12px
    }
}@layer component {
    .team__inner {
        margin-top: -12px
    }
}@layer component {
    .team-card__info {
        gap: 12px
    }
}@layer component {
    .team-card__title {
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: 34px;
        letter-spacing: .78px
    }
}@layer component {
    .team-card__text {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: .54px
    }
}@layer component {
    .partner__slogan {
        margin-bottom: 68px;
        transform: translate(-69%)
    }
}@layer component {
    .partner__top {
        margin-bottom: 26px
    }
}@layer component {
    .partner__link {
        font-size: 18px;
        font-weight: 500;
        line-height: 44px;
        letter-spacing: .54px;
        gap: 10px
    }
}@layer component {
    .partner__slide {
        border-radius: 20px
    }
}@layer component {
    .navigation__link {
        font-size: 22px;
        padding: 17px 27px
    }
}@layer component {
    .about {
        padding-bottom: 477px
    }
}@layer component {
    .about__top {
        gap: 20px
    }
}@layer component {
    .about__row {
        gap: 26px
    }
}@layer component {
    .about__column-value {
        line-height: 52px;
        letter-spacing: .64px
    }
}@layer component {
    .about__decor {
        width: 671.449px;
        height: 360.755px;
        right: -150px;
        top: auto;
        bottom: 56px
    }
}@layer component {
    .contacts {
        font-size: 22px;
        line-height: 145.455%;
        letter-spacing: .66px
    }
}@layer component {
    .contacts__address {
        gap: 40px;
        padding: 30px 26px
    }
}@layer component {
    .contacts__address-item {
        padding-left: 50px
    }
}@layer component {
    .contacts__address-item:before {
        width: 32px;
        height: 32px
    }
}@layer component {
    .contacts__address-medias {
        gap: 16px
    }
}@layer component {
    .contacts__address-media {
        --size: 54px
    }
}@layer component {
    .contacts__form {
        padding: 26px
    }
}@layer component {
    .contacts__form-text {
        margin-bottom: 34px
    }
}@layer component {
    .contacts__btn {
        font-size: 18px;
        line-height: 144.444%;
        padding: 25px;
        letter-spacing: .9px
    }
}@layer base {
    .section-head {
        margin-bottom: 60px
    }
}@layer base {
    .section-head__title {
        margin-bottom: 20px
    }
}@layer base {
    .section-head__text {
        font-size: 22px;
        line-height: 145.455%;
        letter-spacing: .66px
    }
}@layer component {
    .page-back {
        margin-bottom: 40px
    }
}@layer component {
    .page-back__link:before {
        width: 24px;
        height: 24px;
        flex: 0 0 24px
    }
}@layer component {
    .page-back__link {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 44px;
        gap: 12px;
        letter-spacing: .54px
    }
}@layer component {
    .donate__row {
        border-radius: 30px;
        padding: 40px
    }
}@layer component {
    .donate__btn {
        max-width: 368px;
        margin-bottom: 60px
    }
}@layer component {
    .direction {
        padding-bottom: 200px
    }
}@layer component {
    .direction__top {
        gap: 20px;
        margin-bottom: 60px
    }
}@layer component {
    .direction__slide .card-target__info {
        gap: 8px
    }
}@layer component {
    .direction__slide .card-target__row {
        gap: 47px
    }
}@layer component {
    .direction__slide .card-target__column:nth-child(2n) {
        padding-left: 47px
    }
}@layer component {
    .direction__slide .card-target__content {
        gap: 33px
    }
}@layer component {
    .direction__slide .card-target__text {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: .66px
    }
}@layer component {
    .objective {
        padding-bottom: 200px
    }
}@layer component {
    .objective__top {
        gap: 20px;
        margin-bottom: 60px
    }
}@layer component {
    .objective__row {
        grid-template-columns:repeat(2, 1fr);
        gap: 20px
    }
}@layer component {
    .objective__column {
        gap: 40px
    }
}@layer component {
    .objective__column-text {
        line-height: 30px;
        letter-spacing: .66px
    }
}@layer component {
    .staff__top {
        gap: 20px;
        margin-bottom: 54px
    }
}@layer component {
    .staff__showmore {
        min-width: 368px;
        margin-top: 105px;
        padding: 20px
    }
}@layer component {
    .worker {
        margin-bottom: 120px
    }
}@layer component {
    .worker__top {
        gap: 20px;
        margin-bottom: 61px
    }
}@layer component {
    .worker__link {
        margin-top: 10px;
        min-width: 368px
    }
}@layer component {
    .worker__tabs .tabs__title:before {
        bottom: 1px;
        height: 4px
    }
}@layer component {
    .worker__tabs .tabs__navigation {
        margin-bottom: 38px
    }
}@layer component {
    .worker-block__showmore {
        min-width: 368px;
        margin: 60px auto 0
    }
}@layer component {
    .card-worker {
        border-radius: 20px
    }
}@layer component {
    .card-worker__inner {
        padding: 27px 26px;
        gap: 40px
    }
}@layer component {
    .card-worker__info {
        gap: 14px
    }
}@layer component {
    .card-worker__tag {
        font-size: 16px;
        line-height: 16px;
        padding: 8px 10px
    }
}@layer component {
    .card-worker__title {
        margin: 14px 0 0;
        font-size: 26px;
        line-height: 34px;
        letter-spacing: -.26px
    }
}@layer component {
    .card-worker__item {
        font-size: 16px;
        line-height: 16px;
        padding: 8px 10px;
        font-weight: 600
    }
}.employment {
     padding-bottom: 188px
 }

    .employment__top {
        gap: 16px;
        padding-right: 100px;
        margin-bottom: 41px
    }

    .employment__item .input {
        height: 76px;
        border-radius: 20px;
        line-height: 24px;
        font-size: 22px;
        padding: 26px 24px
    }

    .employment__item .input::placeholder {
        line-height: 24px;
        font-size: 22px
    }

    .employment__btn {
        margin: 0 16px;
        width: calc(100% - 32px)
    }

    @layer component {
        .news__loadmore .btn {
            font-size: 18px;
            font-style: normal;
            line-height: 26px;
            letter-spacing: .9px;
            width: 368px
        }
    }@layer component {
    .news__row {
        gap: 20px;
        margin-bottom: 80px;
        grid-template-columns:repeat(2, 1fr)
    }
}@layer component {
    .news-item__image {
        height: 240px
    }
}@layer component {
    .news-item__content {
        padding: 26px 26px 30px;
        flex: 1 1 auto
    }
}@layer component {
    .news-item__tags {
        margin-bottom: 16px
    }
}@layer component {
    .news-item__tag {
        padding: 8px 10px;
        font-size: 16px;
        line-height: 1
    }
}@layer component {
    .news-item__name {
        font-size: 26px;
        line-height: 1.3;
        letter-spacing: -.26px
    }
}@layer component {
    .news-item__list-item {
        line-height: 1.5
    }
}@layer component {
    .article {
        padding: 26px 0 30px
    }
}@layer component {
    .article__title {
        margin-bottom: 26px
    }
}@layer component {
    .article__image {
        margin-bottom: 26px;
        aspect-ratio: 782/384;
        border-radius: 20px
    }
}@layer component {
    .article__icon {
        margin-bottom: 30px;
        width: 232px;
        height: 245.22px
    }
}@layer component {
    .article__tags {
        margin-bottom: 16px
    }
}@layer component {
    .article__tag {
        padding: 8px 10px;
        font-size: 16px;
        line-height: 1
    }
}@layer component {
    .article__list-item {
        line-height: 1.5
    }
}@layer component {
    .article__donwload.btn {
        margin-top: 46px;
        gap: 16px;
        font-size: 22px;
        letter-spacing: 1.1px
    }
}@layer component {
    .article__logo {
        margin-bottom: 26px;
        border-radius: 16px
    }
}@layer component {
    .article__date {
        margin-bottom: 26px
    }
}@layer mod {
    .article--service {
        position: relative
    }

    .article--service:before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 266px;
        height: 212px;
        z-index: 2;
        display: block;
        background: url(/img/icons/bg-m.webp) center center/100% 100% no-repeat
    }
}@layer component {
    .achievement {
        padding-bottom: 200px
    }
}@layer component {
    .achievement__top {
        gap: 20px;
        margin-bottom: 59px
    }
}@layer component {
    .achievement__showmore {
        min-width: 368px;
        margin: 100px auto 0
    }
}@layer component {
    .achievement-card {
        border-radius: 20px
    }
}@layer component {
    .achievement-card__inner {
        padding: 26px;
        gap: 30px
    }
}@layer component {
    .achievement-card__info {
        gap: 16px
    }
}@layer component {
    .achievement-card__value {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: -.18px
    }
}@layer component {
    .achievement-card__content {
        gap: 18px
    }
}@layer component {
    .achievement-card__text {
        -webkit-line-clamp: 2
    }
}@layer component {
    .services__row {
        grid-template-columns:repeat(2, 1fr);
        margin-bottom: 80px;
        gap: 20px
    }
}@layer component {
    .services__item {
        padding: 26px;
        min-height: 414px;
        border-radius: 30px
    }
}@layer component {
    .services__item-name {
        margin-bottom: 8px
    }
}@layer component {
    .services__loadmore .btn {
        font-size: 18px;
        font-style: normal;
        line-height: 26px;
        letter-spacing: .9px;
        width: 368px
    }
}@layer component {
    .products__row {
        grid-template-columns:repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 71px
    }
}@layer component {
    .products__item {
        padding: 26px;
        border-radius: 30px;
        min-height: 450px
    }
}@layer component {
    .products__item-image {
        border-radius: 16px;
        margin-bottom: 26px
    }
}@layer component {
    .products__item-name {
        font-size: 26px;
        line-height: 130%;
        letter-spacing: -.26px;
        margin-bottom: 16px
    }
}@layer component {
    .products__item-text {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: .66px
    }
}@layer component {
    .products__loadmore .btn {
        font-size: 18px;
        font-style: normal;
        line-height: 26px;
        letter-spacing: .9px;
        width: 368px
    }
}@layer component {
    .projects__tabs .tabs__title:before {
        bottom: 1px;
        height: 4px
    }
}@layer component {
    .projects__tabs .tabs__navigation {
        margin-bottom: 38px
    }
}@layer component {
    .projects-block__cards {
        grid-template-columns:repeat(2, 1fr)
    }
}@layer component {
    .projects-block__tags {
        margin-bottom: 16px
    }
}@layer component {
    .projects-block__tag {
        padding: 8px 10px;
        font-size: 16px;
        line-height: 1
    }
}@layer component {
    .projects-block__showmore {
        min-width: 368px;
        margin: 60px auto 0
    }
}
}

@media only screen and (min-width: 991.98px) {
    @layer component {
        .popup__content {
            border-radius: 16px;
            padding: 30px 30px 30px 50px
        }
    }.popup__content {
         gap: 30px
     }

    .team-popup {
        gap: 40px
    }

    .team-popup__top {
        gap: 24px
    }

    .team-popup__img {
        --size: 104px
    }

    .team-popup__info {
        gap: 4px
    }

    .team-popup__name {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -.28px
    }

    .team-popup__work {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px;
        margin-bottom: 0
    }

    .team-popup__link {
        gap: 8px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }

    .team-popup__link:before {
        --size: 20px
    }

    .team-popup__text {
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: -.2px
    }

    .team-popup__category {
        font-size: 16px;
        font-weight: 500;
        line-height: 36px;
        letter-spacing: -.16px
    }

    .team-popup__item {
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: -.2px
    }

    .team-popup__item:before {
        top: 8px
    }

    .popup--achievement .popup__content {
        padding: 30px
    }

    .achievement-block {
        gap: 18px;
        max-width: 639px
    }

    .achievement-block__img {
        aspect-ratio: 639/300;
        margin: 0;
        border-radius: 20px
    }

    .achievement-block__star {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        letter-spacing: -.16px
    }

    .achievement-block__title {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: .84px
    }

    .achievement-block__link {
        min-width: 289px
    }

    .achievement-block__item, .achievement-block__text {
        font-size: 20px;
        font-weight: 500;
        line-height: 34px;
        letter-spacing: -.2px
    }

    .header {
        padding: 25px 0;
        background: transparent
    }

    .menu__top-logo {
        width: 178.487px;
        height: 29.438px;
        margin-top: 0
    }

    .menu__top-content {
        padding-right: 0;
        gap: 28px
    }

    .menu__catalog {
        min-width: 420px;
        width: 30vw;
        padding: 30px 37px
    }

    .menu__catalog-close {
        --size: 50px
    }

    .menu__catalog-close:before {
        --size: 24px
    }

    .menu__catalog-socials {
        gap: 10px
    }

    .menu__catalog-social {
        --size: 44px
    }

    .menu__catalog-social:before {
        --size: 18px
    }

    .form-search {
        opacity: 0;
        pointer-events: none;
        width: 0;
        left: -358px;
        top: -6px;
        position: absolute;
        background: transparent
    }

    .form-search__inner {
        gap: 4px
    }

    .form-search__back {
        display: none
    }

    .form-search__input {
        height: 50px;
        border-radius: 16px;
        padding: 20px 15px 18px 58px;
        font-size: 16px;
        line-height: normal;
        letter-spacing: .48px
    }

    .form-search__input::placeholder {
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        letter-spacing: .48px
    }

    .form-search__btn {
        --size: 26px;
        left: 16px
    }

    .form-search__body {
        overflow: auto;
        max-height: 500px;
        gap: 0px
    }

    .form-search__value {
        display: none
    }

    .form-search__row {
        gap: 4px
    }

    .form-search__column {
        background: var(--color-bg-secondary);
        border-radius: 16px;
        padding: 16px
    }

    .form-search__description {
        gap: 8px
    }

    .form-search__img {
        aspect-ratio: 348/220
    }

    ._search .form-search {
        width: 380px;
        opacity: 1;
        pointer-events: all
    }

    @layer component {
        .btn {
            padding: 22px 22px 18px;
            line-height: 28px
        }
    }.wrapper:has(.header--two) {
         padding-top: 114px
     }

    .text-block {
        gap: 18px;
        max-width: 639px
    }

    .text-block p, .text-block ul li {
        font-size: 20px;
        font-weight: 500;
        line-height: 34px;
        letter-spacing: -.2px
    }

    .text-block h3 span {
        padding: 3px 10px 0
    }

    @layer base {
        [class*=__container], .container {
            --pad: 60px
        }
    }@layer component {
    .intro__container {
        padding-top: 155px;
        padding-bottom: 70px
    }
}@layer component {
    .intro__inner {
        gap: 161px
    }
}@layer component {
    .intro__info {
        gap: 11px
    }
}@layer component {
    .intro__title {
        line-height: 72px;
        font-size: 62px;
        letter-spacing: 1.24px
    }
}@layer component {
    .intro__text {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: .6px
    }
}@layer component {
    .intro__btn {
        min-width: 288px;
        margin: 36px auto 0
    }
}@layer component {
    .intro__arrow {
        width: 80.385px;
        height: 54.737px;
        bottom: -39px;
        left: 23.3%
    }
}@layer component {
    .intro__bottom {
        height: 229px
    }
}@layer component {
    .intro__tag {
        font-size: 18px;
        letter-spacing: -.18px;
        padding: 10px 20px
    }
}@layer component {
    .intro__tag.intro__tag--one {
        top: 22px;
        left: 11.2%;
        transform: rotate(-11.675deg)
    }
}@layer component {
    .intro__tag.intro__tag--two {
        top: 116px;
        left: 22.7%;
        transform: rotate(9.639deg)
    }
}@layer component {
    .intro__tag.intro__tag--three {
        transform: rotate(-6.236deg);
        left: 38.3%;
        top: 0
    }
}@layer component {
    .intro__tag.intro__tag--four {
        transform: rotate(-8.691deg);
        top: 131px;
        left: 56%
    }
}@layer component {
    .intro__tag.intro__tag--five {
        transform: rotate(6.678deg);
        top: 17px;
        left: 68.1%
    }
}@layer component {
    .intro__tag.intro__tag--six {
        transform: rotate(-11.675deg);
        top: 55px;
        right: 1.7%
    }
}@layer component {
    .intro__icon.intro__icon--one {
        --size: 94px;
        top: 56px
    }

    .intro__icon.intro__icon--one:before {
        content: "";
        --size: 53px
    }
}@layer component {
    .intro__icon.intro__icon--two {
        --size: 48px;
        top: 100px;
        left: 45.6%
    }

    .intro__icon.intro__icon--two:before {
        content: "";
        --size: 27px
    }
}@layer component {
    .intro__icon.intro__icon--three {
        --size: 58px;
        bottom: 15px;
        right: 6.7%
    }

    .intro__icon.intro__icon--three:before {
        content: "";
        --size: 32px
    }
}@layer component {
    .intro__img.intro__img--one {
        width: 878.125px;
        height: 301.133px;
        top: 190px;
        left: -501px
    }
}@layer component {
    .intro__img.intro__img--two {
        width: 804px;
        height: 275.714px;
        top: 137px;
        right: -491px
    }
}@layer component {
    .target {
        padding-top: 32px;
        padding-bottom: 105px;
        margin-bottom: 124px
    }
}@layer component {
    .target__row {
        margin: 0 auto;
        border-radius: 40px;
        padding: 50px
    }
}@layer component {
    .target__info {
        padding-top: 98px;
        gap: 28px
    }
}@layer component {
    .target__info-description {
        gap: 35px
    }
}@layer component {
    .target__slogan {
        margin-top: -87px;
        margin-bottom: 53px
    }
}@layer component {
    .text-40 {
        letter-spacing: -.4px;
        line-height: 50px;
        font-size: 40px
    }
}@layer component {
    .text-18 {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: .54px
    }
}@layer component {
    .text-28 {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: .84px
    }
}@layer component {
    .text-22 {
        font-size: 22px;
        line-height: 36px;
        letter-spacing: .66px;
        font-weight: 500
    }
}@layer component {
    .text-50 {
        font-size: 50px;
        line-height: 124%;
        letter-spacing: 1px
    }
}@layer component {
    .text-bg span {
        padding: 3px 10px 0
    }
}@layer component {
    .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6 {
        padding: 3px 10px 0;
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px;
        letter-spacing: .66px
    }
}@layer component {
    .card-target__inner {
        gap: 41px
    }
}@layer component {
    .card-target__info {
        gap: 56px
    }
}@layer component {
    .card-target__title {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -.4px;
        margin-bottom: 20px;
        padding-top: 3px
    }
}@layer component {
    .card-target__description {
        max-height: 280px;
        overflow: auto;
        padding-right: 25px;
        gap: 30px
    }

    .card-target__description::-webkit-scrollbar {
        width: 4px;
        height: 5px;
        border-radius: 10px
    }

    .card-target__description::-webkit-scrollbar-track {
        background: var(--color-scroll-bg);
        border-radius: 10px
    }

    .card-target__description::-webkit-scrollbar-thumb {
        background: rgba(var(--color-primary--rgb), .2);
        border-radius: 10px
    }
}@layer component {
    .card-target__description .card-target__text {
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
        letter-spacing: .54px
    }
}@layer component {
    .card-target__row {
        gap: 50px
    }
}@layer component {
    .card-target__column:nth-child(2n) {
        padding-left: 50px
    }
}@layer component {
    .card-target__column {
        gap: 4px
    }
}@layer component {
    .card-target__category {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px;
        font-weight: 600
    }
}@layer component {
    .card-target__value {
        font-size: 40px;
        font-weight: 700;
        line-height: 50px;
        letter-spacing: -.4px
    }
}@layer component {
    .card-target__img {
        aspect-ratio: 532/558
    }
}@layer component {
    .slogan-block {
        transform: translate(-47%)
    }
}@layer component {
    .slogan-block .slogan-block__text {
        font-size: 20px
    }
}@layer component {
    .platform {
        margin-bottom: 92px
    }
}@layer component {
    .platform__title {
        text-align: center
    }
}@layer component {
    .team {
        margin-bottom: 75px
    }
}@layer component {
    .team__decor {
        width: 1520.514px;
        height: 417.476px;
        transform: translate(-50%)
    }
}@layer component {
    .team__link {
        display: none
    }
}@layer component {
    .team__inner {
        margin-top: -109px
    }
}@layer component {
    .team__title {
        text-align: center
    }
}@layer component {
    .team__pagging {
        margin-top: 42px
    }
}@layer component {
    .team-card__info {
        gap: 4px
    }
}@layer component {
    .team-card__title {
        font-size: 20px;
        font-weight: 700;
        line-height: 28px;
        letter-spacing: .6px
    }
}@layer component {
    .team-card__text {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: .48px
    }
}@layer component {
    .team-card__link {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: .48px;
        gap: 10px
    }
}@layer component {
    .partner__slogan {
        margin-bottom: 69px
    }
}@layer component {
    .partner__pagging {
        display: none !important
    }
}@layer component {
    .partner__top {
        margin-bottom: 60px
    }
}@layer component {
    .partner__title {
        text-align: center;
        width: 100%
    }
}@layer component {
    .partner__link {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: .48px;
        gap: 10px
    }
}@layer component {
    .partner__swiper {
        display: grid;
        grid-template-columns:repeat(4, 1fr);
        gap: 30px
    }
}@layer component {
    .partner__slide {
        transition: all .3s ease-in 0s;
        height: 158px;
        width: 100%
    }
}.loaded .fade-up {
     transform: translateY(80px);
     opacity: 0
 }

    .loaded .fade-up._watcher-view {
        animation: slide-top02 .5s cubic-bezier(.25, .46, .45, .94) both
    }

    .loaded .fade-opacity {
        opacity: 0
    }

    .loaded .fade-opacity._watcher-view {
        animation: slide-top03 1s linear both
    }

    .swiper-arrows {
        display: none
    }

    @layer component {
        .navigation__list {
            flex-wrap: wrap
        }
    }@layer component {
    .navigation__link {
        padding: 14px 24px;
        font-size: 16px
    }
}@layer component {
    .about {
        padding-bottom: 143px
    }
}@layer component {
    .about__container {
        position: relative
    }
}@layer component {
    .about__top {
        gap: 20px;
        max-width: calc(100% - 455px)
    }
}@layer component {
    .about__row {
        gap: 0px
    }
}@layer component {
    .about__column {
        padding: 43px 0 37px
    }
}@layer component {
    .about__column:not(:last-child) {
        border-bottom: 1px solid rgba(118, 141, 158, .2)
    }
}@layer component {
    .about__column-items {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        gap: 18px
    }
}@layer component {
    .about__column-text {
        max-width: 400px
    }
}@layer component {
    .about__column-value {
        letter-spacing: .8px;
        line-height: 72px
    }
}@layer component {
    .about__decor {
        width: 534.52px;
        height: 287.186px;
        right: -189px;
        top: 1px;
        bottom: auto
    }
}@layer component {
    .direction {
        padding-bottom: 218px
    }
}@layer component {
    .direction__top {
        gap: 20px;
        margin-bottom: 90px;
        padding-right: 455px
    }
}@layer component {
    .direction__slide {
        padding: 50px;
        background: var(--color-whte);
        border-radius: 30px;
        width: calc(100% - 30px);
        opacity: .4;
        transition: opacity .3s ease-in 0s;
        height: auto
    }
}@layer component {
    .direction__slide .card-target__info {
        gap: 34px;
        padding-right: 31px
    }
}.direction__arrows {
     display: flex;
     gap: 8px;
     margin-top: 40px
 }

    .direction__arrows .direction__arrow {
        --size: 24px;
        border-radius: 0;
        background: transparent
    }

    .direction__arrows .direction__arrow:before {
        content: "";
        --size: 24px;
        background: var(--color-primary);
        transition: all .3s ease-in 0s
    }

    @layer component {
        .objective__top {
            gap: 20px;
            margin-bottom: 90px;
            padding-right: 455px
        }
    }@layer component {
    .objective__row {
        grid-template-columns:repeat(3, 1fr);
        gap: 20px
    }
}@layer component {
    .objective__column {
        gap: 59px
    }

    .objective__column:not(:hover) {
        margin-top: 58px
    }
}@layer component {
    .objective__column-img img, .objective__column-img picture {
        height: 232px
    }
}@layer component {
    .staff {
        padding-bottom: 174px
    }
}@layer component {
    .staff__top {
        gap: 20px;
        margin-bottom: 90px;
        padding-right: 455px
    }
}@layer component {
    .staff__row {
        grid-template-columns:repeat(3, 1fr);
        gap: 60px 30px
    }
}@layer component {
    .staff__showmore {
        min-width: 289px;
        margin-top: 81px
    }
}@layer component {
    .worker {
        margin-bottom: 100px
    }
}@layer component {
    .worker__top {
        gap: 20px;
        margin-bottom: 79px;
        padding-right: 455px
    }
}@layer component {
    .worker__link {
        margin-top: 10px;
        min-width: 288px
    }
}@layer component {
    .worker__tabs .tabs__title:before {
        bottom: 3px;
        height: 2px
    }
}@layer component {
    .worker__tabs .tabs__navigation {
        margin-bottom: 27px;
        flex-wrap: wrap
    }
}@layer component {
    .worker-block__showmore {
        min-width: 288px;
        margin: 70px auto 0
    }
}.employment {
     padding-bottom: 257px
 }

    .employment__inner {
        max-width: 577px
    }

    .employment__top {
        text-align: center;
        gap: 20px;
        padding-right: 0;
        margin-bottom: 50px
    }

    .employment__form {
        max-width: 329px
    }

    .employment__item .input {
        height: 56px;
        border-radius: 16px;
        line-height: 24px;
        font-size: 16px;
        padding: 8px 16px
    }

    .employment__item .input::placeholder {
        line-height: 24px;
        font-size: 16px
    }

    .employment__btn {
        margin: 0;
        width: 100%
    }

    @layer component {
        .achievement {
            padding-bottom: 180px
        }
    }@layer component {
    .achievement__top {
        gap: 20px;
        margin-bottom: 81px;
        padding-right: 455px
    }
}@layer component {
    .achievement__showmore {
        min-width: 289px;
        margin: 84px auto 0
    }
}@layer component {
    .achievement-card__img {
        aspect-ratio: 413/242
    }
}@layer component {
    .achievement-card__info {
        gap: 22px
    }
}@layer component {
    .achievement-card__value {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -.16px
    }
}@layer component {
    .achievement-card__title {
        padding-right: 30px
    }
}@layer component {
    .achievement-card__text {
        -webkit-line-clamp: 3
    }
}@layer component {
    .projects__tabs .tabs__title:before {
        bottom: 3px;
        height: 2px
    }
}@layer component {
    .projects__tabs .tabs__navigation {
        margin-bottom: 27px;
        flex-wrap: wrap
    }
}@layer component {
    .projects-block__showmore {
        min-width: 288px;
        margin: 70px auto 0
    }
}
}

@media only screen and (min-width: 991.98px) and (any-hover: hover) {
    @layer component {
        .objective__column:hover .objective__column-img img, .objective__column:hover .objective__column-img picture {
            height: 290px
        }
    }
}

@media only screen and (min-width: 1119.98px) {
    @layer component {
        .direction__slide {
            width: calc(100% - 75px)
        }
    }@layer component {
    .staff__row {
        gap: 60px 91px;
        grid-template-columns:repeat(4, 1fr)
    }
}@layer component {
    .worker-block__cards {
        grid-template-columns:repeat(3, 1fr);
        gap: 48px 30px
    }
}@layer component {
    .card-worker__img {
        aspect-ratio: 406/371
    }
}@layer component {
    .card-worker__inner {
        padding: 30px;
        gap: 40px
    }
}@layer component {
    .card-worker__info {
        gap: 22px
    }
}@layer component {
    .card-worker__tag {
        font-size: 14px;
        line-height: 16px;
        padding: 7px 9px
    }
}@layer component {
    .card-worker__title {
        margin: 2px 0 -2px;
        line-height: 32px;
        font-size: 28px;
        letter-spacing: -.28px
    }
}@layer component {
    .card-worker__item {
        padding: 9px 10px;
        font-size: 14px
    }
}@layer component {
    .achievement__row {
        grid-template-columns:repeat(3, 1fr)
    }
}@layer component {
    .achievement-card__inner {
        padding: 30px
    }
}
}

@media only screen and (min-width: 1365.98px) {
    @layer component {
        .field {
            gap: 4px;
            margin-bottom: 16px
        }
    }@layer component {
    .field__label {
        line-height: 1.42;
        font-size: 14px
    }
}@layer component {
    .input {
        padding: 14px;
        line-height: 1.25;
        font-size: 16px
    }
}@layer component {
    .pagination {
        gap: 8px
    }
}@layer component {
    .pagination__list {
        gap: 8px
    }
}@layer component {
    .pagination__item {
        font-weight: 600
    }
}@layer component {
    .footer {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        padding: 60px 0 22px;
        font-size: 16px;
        line-height: 1.25;
        letter-spacing: .48px
    }
}@layer component {
    .footer__gotop {
        bottom: calc(100% + 53px)
    }
}@layer component {
    .footer__container {
        gap: 38px;
        flex-direction: row
    }
}@layer component {
    .footer__left {
        flex: 0 0 31.3771517997%;
        border: none;
        padding: 0;
        margin: 0;
        line-height: 1.5;
        gap: 2px
    }
}@layer component {
    .footer__logo {
        width: 196px;
        height: 32.327px
    }
}@layer component {
    .footer__text:not(:last-child) {
        margin-bottom: 15px
    }
}@layer component {
    .footer__items {
        justify-content: flex-end;
        gap: 40px;
        flex: 1 1 auto;
        flex-direction: row;
        gap: 72px;
        padding-right: 41px
    }
}@layer component {
    .footer__row {
        padding: 0;
        margin: 0;
        border: 0
    }
}@layer component {
    .footer__contact-link br {
        display: block
    }
}@layer component {
    .footer__contact-link {
        font-size: 16px;
        line-height: 1.5
    }
}@layer component {
    .footer__media {
        gap: 10px
    }
}@layer component {
    .footer__media-link {
        --size: 44px
    }
}@layer component {
    .footer__bottom-text {
        padding-top: 21px;
        text-align: center;
        margin-top: 42px
    }
}@layer component {
    .intro__decor.intro__decor--one {
        left: -22%
    }
}@layer component {
    .intro__decor.intro__decor--two {
        right: -35%
    }
}@layer component {
    .text-content {
        gap: 20px
    }
}@layer component {
    .card-target__info {
        padding-right: 82px
    }
}@layer component {
    .card-target__title {
        padding-right: 50px
    }
}@layer component {
    .card-target__description {
        padding-right: 58px
    }
}@layer component {
    .platform__title {
        margin-bottom: 57px
    }
}@layer component {
    .platform__row {
        grid-template-columns:repeat(3, 1fr);
        gap: 30px
    }
}@layer component {
    .platform__column {
        border-radius: 20px;
        padding: 20px 28px 28px;
        height: auto
    }
}@layer component {
    .platform__column-img {
        min-height: 112px
    }
}@layer component {
    .partner__swiper {
        grid-template-columns:repeat(5, 1fr)
    }
}@layer component {
    .contacts {
        font-size: 16px;
        line-height: 1.25;
        letter-spacing: .48px
    }
}@layer component {
    .contacts__row {
        gap: 20px;
        grid-template-columns:repeat(2, 1fr)
    }
}@layer component {
    .contacts__address {
        padding: 41px 30px
    }
}@layer component {
    .contacts__address-item {
        padding-left: 42px
    }
}@layer component {
    .contacts__address-item:before {
        width: 24px;
        height: 24px
    }
}@layer component {
    .contacts__address-medias {
        gap: 10px
    }
}@layer component {
    .contacts__address-media {
        --size: 44px
    }
}@layer component {
    .contacts__form {
        padding: 24px
    }
}@layer component {
    .contacts__form-title {
        text-align: center;
        letter-spacing: .48px
    }
}@layer component {
    .contacts__form-text {
        text-align: center;
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
        max-width: 428px
    }
}@layer component {
    .contacts__btn {
        font-size: 14px;
        line-height: 185.714%;
        letter-spacing: .7px;
        padding: 15px
    }
}@layer base {
    .section-head {
        margin-bottom: 80px
    }
}@layer base {
    .section-head__text {
        font-size: 22px;
        line-height: 1.63;
        letter-spacing: .66px;
        max-width: 801px
    }
}@layer component {
    .page-back {
        margin-bottom: 15px
    }
}@layer component {
    .page-back__link {
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        gap: 16px;
        letter-spacing: .48px
    }
}@layer mod {
    .page-back--contacts {
        margin-bottom: 80px
    }
}@layer component {
    .donate .section-head {
        margin-bottom: 50px
    }
}@layer component {
    .donate__row {
        padding: 50px 40px;
        max-width: 338px
    }
}@layer component {
    .donate__btn {
        width: 100%;
        max-width: 100%
    }
}@layer component {
    .news__loadmore .btn {
        width: 289px
    }
}@layer component {
    .news__row {
        grid-template-columns:repeat(3, 1fr);
        gap: 80px 20px
    }

    .news__row.news__row--smallgap {
        gap: 30px
    }
}@layer component {
    .news-item__image {
        height: 370px
    }
}@layer component {
    .news-item__content {
        padding: 30px
    }
}@layer component {
    .news-item__tags {
        margin-bottom: 22px
    }
}@layer component {
    .news-item__tag {
        padding: 6px 8px;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.14
    }
}@layer component {
    .news-item__name {
        margin-bottom: 22px
    }
}@layer component {
    .news-item__name {
        font-size: 28px;
        line-height: 114.286%;
        letter-spacing: -.28px
    }
}@layer component {
    .news-item__link {
        display: flex;
        margin-top: auto;
        padding-top: 40px
    }
}@layer component {
    .news-item__list-item {
        line-height: 162.5%
    }
}@layer mod {
    .news-item--wide {
        grid-column: span 2
    }
}@layer component {
    .article {
        border-radius: 40px;
        padding: 60px 0
    }
}@layer component {
    .article__inner {
        max-width: 960px
    }
}@layer component {
    .article__title {
        margin-bottom: 20px
    }
}@layer component {
    .article__image {
        margin-bottom: 20px;
        border-radius: 20px;
        aspect-ratio: 960/500
    }
}@layer component {
    .article__icon {
        margin-bottom: 20px
    }
}@layer component {
    .article__tags {
        margin-bottom: 22px
    }
}@layer component {
    .article__tag {
        padding: 6px 8px;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.14
    }
}@layer component {
    .article__list-item {
        line-height: 162.5%
    }
}@layer component {
    .article__donwload.btn {
        margin-top: 20px;
        font-size: 16px;
        gap: 13px
    }
}@layer component {
    .article__logo {
        border-radius: 10px;
        margin-bottom: 20px
    }
}@layer component {
    .article__date {
        margin-bottom: 20px
    }
}@layer mod {
    .article--service:before {
        content: "";
        background: url(/img/icons/bg.webp) center center/100% 100% no-repeat;
        width: 500.946px;
        height: 592.385px
    }
}@layer component {
    .services__row {
        grid-template-columns:repeat(1, 1fr);
        gap: 30px
    }
}@layer component {
    .services__item {
        gap: 24px;
        position: relative;
        border-radius: 30px;
        padding: 53px 40px;
        min-height: 300px
    }
}@layer component {
    .services__item-image {
        position: absolute;
        height: 100%;
        width: auto;
        right: 104px;
        top: 0
    }
}@layer component {
    .services__item-name {
        line-height: 80%;
        margin-bottom: 0;
        max-width: 527px
    }
}@layer component {
    .services__item-info {
        margin-bottom: 0;
        max-width: 527px;
        line-height: 1.44
    }
}@layer component {
    .services__item-link {
        display: flex
    }
}@layer component {
    .services__loadmore .btn {
        width: 289px
    }
}@layer component {
    .products__row {
        gap: 30px;
        grid-template-columns:repeat(3, 1fr);
        margin-bottom: 80px
    }
}@layer component {
    .products__item {
        padding: 20px;
        border-radius: 20px;
        min-height: 0px
    }
}@layer component {
    .products__item-image {
        margin-bottom: 24px;
        border-radius: 10px
    }
}@layer component {
    .products__item-name {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px;
        margin-bottom: 8px
    }
}@layer component {
    .products__item-text {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 24px;
        letter-spacing: .48px
    }
}@layer component {
    .products__item-link {
        display: flex
    }
}@layer component {
    .products__loadmore .btn {
        width: 289px
    }
}@layer component {
    .projects-block__cards {
        gap: 30px;
        grid-template-columns:repeat(1, 1fr)
    }
}@layer component {
    .projects-block__card {
        flex-direction: row;
        padding: 50px;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 41px;
        border-radius: 30px
    }
}@layer component {
    .projects-block__tags {
        margin-bottom: 22px
    }
}@layer component {
    .projects-block__tag {
        padding: 6px 8px;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.14;
        margin-bottom: 16px
    }
}@layer component {
    .projects-block__name {
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 36px;
        -webkit-line-clamp: 4;
        letter-spacing: .84px
    }
}@layer component {
    .projects-block__image {
        aspect-ratio: unset;
        margin-bottom: 0;
        width: 532px;
        flex: 0 0 532px;
        height: 256px;
        border-radius: 20px
    }
}@layer component {
    .projects-block__link {
        display: flex;
        margin-top: auto
    }
}
}

@media (max-width: 991.98px) {
    :root {
        --spacing: 60px
    }
}

@media (max-width: 767.98px) {
    :root {
        --spacing: 40px
    }
}

@media (any-hover: hover) {
    .popup__close:hover {
        background: var(--color-grn)
    }

    .popup__close:hover:before {
        content: "";
        background: var(--color-whte)
    }

    .team-popup__link:hover {
        color: var(--color-grn)
    }

    @layer component {
        .field .resize-handle {
            transition: color .3s ease-in 0s
        }

        .field .resize-handle:hover {
            color: var(--color-alt)
        }
    }@layer component {
    .select__option:hover {
        background: var(--color-alt)
    }
}@layer component {
    .pagination__arrow {
        transition: background .3s ease-in 0s
    }

    .pagination__arrow:hover {
        background: var(--color-alt)
    }
}@layer component {
    .pagination__item {
        transition: background .3s ease-in 0s
    }

    .pagination__item:hover {
        background: var(--color-alt)
    }
}.header.header--two .menu__top-menu:hover {
     color: var(--color-grn)
 }

    .header.header--two .menu__top-menu:hover:before {
        content: "";
        background: var(--color-grn)
    }

    .header.header--two .menu__top-search:hover {
        background: var(--color-grn)
    }

    .header.header--two .menu__top-select:hover .select__value:after {
        content: "";
        background: var(--color-grn)
    }

    .header.header--two .menu__top-select:hover .select__content {
        color: var(--color-grn)
    }

    .menu__top-search:hover {
        background: var(--color-alt)
    }

    .menu__top-menu:hover {
        color: var(--color-alt)
    }

    .menu__top-menu:hover:before {
        content: "";
        background: var(--color-alt)
    }

    .menu__catalog-close:hover, .menu__catalog-link:hover, .menu__catalog-value:hover {
        background: var(--color-alt)
    }

    .form-search__column:hover .form-search__title {
        color: var(--color-alt)
    }

    .form-search__column:hover .form-search__img img, .form-search__column:hover .form-search__img picture {
        transform: scale(1.1)
    }

    @layer component {
        .footer__link {
            transition: color .3s ease-in 0s
        }

        .footer__link:hover {
            color: var(--color-alt)
        }
    }@layer component {
    .footer__contact-link {
        transition: opacity .3s ease-in 0s
    }

    .footer__contact-link:hover {
        color: var(--color-alt)
    }
}@layer component {
    .btn:hover {
        color: var(--color-alt)
    }
}@layer mod {
    .btn--alt:hover {
        color: var(--color-primary);
        background: var(--color-alt)
    }
}@layer mod {
    .btn--bg:hover {
        color: var(--color-whte);
        background: var(--color-primary)
    }
}.swiper-pagging .swiper-pagination-bullet:hover {
     opacity: 1
 }

    @layer component {
        .card-target__link:hover:before {
            content: "";
            width: 100%
        }
    }@layer component {
    .platform__column:hover {
        box-shadow: 0 12px 28px #c0ccd499
    }
}@layer component {
    .platform__column:hover .platform__column-arrow {
        background: var(--color-alt)
    }
}@layer component {
    .team__arrow:hover {
        background: var(--color-alt)
    }

    .team__arrow:hover:before {
        content: "";
        background: var(--color-whte)
    }
}@layer component {
    .team-card:hover .team-card__link {
        opacity: 1;
        pointer-events: all
    }
}@layer component {
    .partner__link:hover {
        color: var(--color-alt)
    }

    .partner__link:hover:after {
        content: "";
        background: var(--color-alt)
    }
}@layer component {
    .partner__slide:hover {
        box-shadow: 0 12px 28px #c0ccd499
    }
}.swiper-arrow:hover {
     background: var(--color-alt)
 }

    @layer component {
        .navigation__link:hover {
            background: var(--color-alt)
        }
    }@layer component {
    .contacts__address-link:is(a) {
        transition: color .3s ease-in 0s
    }

    .contacts__address-link:is(a):hover {
        color: var(--color-alt)
    }
}@layer component {
    .page-back__link {
        transition: color .3s ease-in 0s
    }

    .page-back__link:hover {
        color: var(--color-alt)
    }
}.direction__arrows .direction__arrow:hover {
     background: transparent
 }

    .direction__arrows .direction__arrow:hover:before {
        background: var(--color-alt)
    }

    @layer component {
        .staff__column .team-card__link:hover:before {
            content: "";
            width: 100%
        }
    }@layer component {
    .worker__tabs .tabs__title:hover:before {
        content: "";
        width: 100%
    }
}@layer component {
    .card-worker__link:hover:before {
        content: "";
        width: 100%
    }
}@layer component {
    .news-item:hover .news-item__image img {
        transform: scale(1.1)
    }
}@layer component {
    .news-item__link:hover:before {
        content: "";
        width: 100%
    }
}@layer component {
    .achievement-card__arrow:hover:before {
        content: "";
        width: 100%
    }
}@layer component {
    .services__item-link:hover:before {
        content: "";
        width: 100%
    }
}@layer component {
    .products__item-link:hover:before {
        content: "";
        width: 100%
    }
}@layer component {
    .projects__tabs .tabs__title:hover:before {
        content: "";
        width: 100%
    }
}@layer component {
    .projects-block__link:hover:before {
        content: "";
        width: 100%
    }
}
}

@media only screen and (max-width: 767.98px) {
    .team-popup__top {
        flex-direction: column
    }

    .team-popup__info {
        gap: 8px
    }

    .team-popup__quote:before {
        --size: 32px
    }

    .achievement-block__top {
        margin: 8px 0
    }

    .menu__catalog {
        padding: 30px 24px 40px
    }

    .form-search__top {
        gap: 8px
    }

    .form-search__back {
        --size: 56px;
        border-radius: 16px
    }

    .form-search__back:before {
        --size: 24px
    }

    .form-search__value {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: -.16px
    }

    .form-search__column {
        padding: 16px;
        border-radius: 16px;
        gap: 16px
    }

    .form-search__description {
        gap: 8px
    }

    @layer component {
        .intro__tag.intro__tag--four {
            display: none
        }
    }@layer component {
    .intro__tag.intro__tag--five {
        display: none
    }
}@layer component {
    .intro__tag.intro__tag--six {
        display: none
    }
}@layer component {
    .text-content blockquote:before {
        --size: 32px
    }
}@layer component {
    .card-target__text {
        font-size: 14px;
        line-height: 155.556%
    }
}@layer component {
    .team__link {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px
    }
}@layer component {
    .team-card__img {
        --size: 108px
    }
}@layer component {
    .team-card__info {
        padding: 0 30px
    }
}@layer component {
    .about__text {
        line-height: 26px
    }
}@layer component {
    .about__column-text {
        line-height: 26px
    }
}@layer component {
    .direction__text {
        line-height: 26px
    }
}@layer component {
    .direction__slide .card-target__text {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: .48px
    }
}@layer component {
    .objective__text {
        line-height: 26px
    }
}@layer component {
    .objective__column {
        min-height: 264px
    }
}@layer component {
    .staff__text {
        line-height: 26px
    }
}@layer component {
    .worker__text {
        line-height: 26px
    }
}@layer component {
    .card-worker__title {
        font-size: 20px;
        margin: 0 0 -4px;
        line-height: 26px;
        letter-spacing: -.2px
    }
}.employment__title {
     padding-right: 50px
 }

    .employment__item {
        gap: 1px;
        margin-bottom: 30px
    }

    .employment__item .field__label {
        font-size: 16px
    }

    @layer component {
        .achievement__text {
            line-height: 26px
        }
    }@layer component {
    .services__item-link {
        font-size: 0;
        gap: 0px
    }
}
}

@media only screen and (max-width: 991.98px) {
    .popup--achievement .popup__content {
        padding: 0 26px 40px
    }

    .popup--achievement .popup__close {
        position: absolute;
        --pad: 26px;
        top: var(--pad);
        right: var(--pad)
    }

    .achievement-block__subtitle {
        font-size: 18px
    }

    @layer component {
        .select._select-open .select__value {
            border-radius: 20px 20px 0 0
        }
    }@layer component {
    .select__value {
        border-radius: 20px;
        background: var(--color-whte);
        padding: 20px;
        gap: 12px
    }
}@layer component {
    .select__value:after {
        --size: 32px;
        background: var(--color-primary)
    }
}@layer component {
    .select__content {
        color: var(--color-primary);
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: .66px
    }
}@layer component {
    .select__options {
        border-radius: 0 0 20px 20px
    }
}@layer component {
    .select__option {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: .66px;
        padding: 23px 26px
    }
}.header__container {
     padding: 0 16px
 }

    .menu__top-search {
        --size: 41px;
        background: var(--color-blck)
    }

    .menu__top-menu span {
        display: none
    }

    .menu__top-menu:before {
        --size: 32px;
        background: var(--color-blck)
    }

    .menu__catalog-top {
        margin-bottom: 90px
    }

    .menu__catalog-link {
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: 64px;
        letter-spacing: -.32px
    }

    .menu__catalog-bottom {
        gap: 30px
    }

    .menu__catalog-column {
        gap: 14px
    }

    .menu__catalog-title {
        font-size: 22px;
        line-height: 90%
    }

    .menu__catalog-value {
        font-size: 22px;
        line-height: 109%
    }

    .form-search {
        height: 100 dvh;
        overflow: auto;
        width: 100%;
        padding: 26px
    }

    .form-search::-webkit-scrollbar {
        display: none
    }

    .form-search__title {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: .96px
    }

    .form-search__text {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: .66px
    }

    ._search .form-search {
        left: 0
    }

    .text-block h3 {
        font-size: 18px
    }

    @layer component {
        .intro {
            position: relative;
            z-index: 2;
            border-radius: 0 0 30px 30px
        }
    }@layer component {
    .intro__decor.intro__decor--one {
        display: none
    }
}@layer component {
    .intro__decor.intro__decor--two {
        display: none
    }
}@layer component {
    .target__row {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        gap: 64px 30px
    }
}@layer component {
    .target__inner {
        flex-direction: column;
        gap: 55px
    }
}@layer component {
    .target__img {
        width: 415px;
        height: 588px;
        aspect-ratio: 415/588;
        flex: none;
        margin: 0 auto
    }
}@layer component {
    .target__info-text br {
        display: none
    }
}@layer component {
    .card-target__inner {
        display: flex;
        flex-direction: column-reverse
    }
}@layer component {
    .team__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        margin-bottom: 44px
    }
}@layer component {
    .team__arrows {
        display: none
    }
}@layer component {
    .team-card__link {
        opacity: 1;
        pointer-events: all;
        margin-top: auto
    }
}@layer component {
    .partner__slider {
        height: 345px
    }
}@layer component {
    .partner__slide {
        width: 232px;
        height: 157px !important
    }
}@layer component {
    .partner__decor {
        display: none
    }
}.inner::-webkit-scrollbar {
     width: 0px;
     height: 5px
 }

    .inner::-webkit-scrollbar-track {
        background: var(--color-scroll-bg)
    }

    .inner::-webkit-scrollbar-thumb {
        background: var(--color-alt);
        border-radius: 10px
    }

    @layer component {
        .navigation__list {
            overflow: auto;
            margin: 0 -26px;
            padding: 0 26px
        }

        .navigation__list::-webkit-scrollbar {
            display: none
        }
    }@layer component {
    .about__column.about__column--head {
        display: none
    }
}@layer component {
    .direction__decor {
        display: none
    }
}@layer component {
    .direction__slider .direction__swiper {
        flex-direction: column;
        gap: 50px
    }
}@layer component {
    .direction__slide .card-target__img {
        aspect-ratio: 782/300;
        width: 100%
    }
}@layer component {
    .direction__slide .card-target__title {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 52px;
        letter-spacing: -.32px
    }

    .direction__slide .card-target__title br {
        display: none
    }
}.direction__arrows {
     display: none
 }

    @layer component {
        .objective__decor {
            display: none
        }
    }@layer component {
    .objective__column.objective__column--big {
        grid-column-start: span 2
    }
}@layer component {
    .staff__decor {
        display: none
    }
}@layer component {
    .staff__column {
        gap: 24px
    }
}@layer component {
    .worker__tabs .tabs__title {
        font-size: 22px;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: .66px;
        padding: 10px 0 16px
    }
}@layer component {
    .worker__tabs .tabs__navigation {
        overflow: auto;
        margin: 0 -26px 38px;
        padding: 0 26px
    }

    .worker__tabs .tabs__navigation::-webkit-scrollbar {
        display: none
    }
}@layer component {
    .card-worker__link {
        display: none
    }
}.employment__item textarea {
     border-radius: 16px !important;
     padding: 20px 16px !important
 }

    .employment__item .j-textarea-count {
        font-size: 18px;
        line-height: 20px
    }

    .employment__decor {
        display: none
    }

    @layer component {
        .achievement__decor {
            display: none
        }
    }@layer component {
    .achievement-card__title {
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: 34px;
        letter-spacing: .78px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }
}@layer component {
    .achievement-card__text {
        font-size: 18px;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: .54px
    }
}@layer component {
    .achievement-card__arrow {
        display: none
    }
}@layer component {
    .projects__tabs .tabs__title {
        font-size: 22px;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: .66px;
        padding: 10px 0 16px
    }
}@layer component {
    .projects__tabs .tabs__navigation {
        overflow: auto;
        margin: 0 -26px 38px;
        padding: 0 26px
    }

    .projects__tabs .tabs__navigation::-webkit-scrollbar {
        display: none
    }
}
}

@media only screen and (max-width: 991.98px) and (max-width: 767.98px) {
    .popup--achievement .popup__content {
        padding: 0 16px 30px
    }

    .popup--achievement .popup__close {
        --pad: 16px
    }

    @layer component {
        .select._select-open .select__value {
            border-radius: 8px 8px 0 0
        }
    }@layer component {
    .select__value {
        padding: 8px 12px;
        border-radius: 8px;
        gap: 6px
    }
}@layer component {
    .select__value:after {
        --size: 24px
    }
}@layer component {
    .select__content {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: .48px
    }
}@layer component {
    .select__options {
        border-radius: 0 0 8px 8px
    }
}@layer component {
    .select__option {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: .48px;
        padding: 10px 12px
    }
}.menu__top-search {
     --size: 28px
 }

    .menu__top-menu:before {
        --size: 22px
    }

    .menu__catalog-top {
        margin-bottom: 45px
    }

    .menu__catalog-link {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 34px;
        letter-spacing: -.16px
    }

    .menu__catalog-bottom {
        gap: 16px
    }

    .menu__catalog-column {
        gap: 4px
    }

    .menu__catalog-title {
        font-size: 16px;
        font-style: normal;
        line-height: 125%;
        color: rgba(var(--color-primary--rgb), .5)
    }

    .menu__catalog-value {
        font-size: 16px;
        line-height: 125%
    }

    .form-search {
        padding: 16px
    }

    .form-search__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px
    }

    .form-search__text {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: .48px
    }

    @layer component {
        .intro {
            border-radius: 0
        }
    }@layer component {
    .intro__decor.intro__decor--one {
        display: flex
    }
}@layer component {
    .intro__decor.intro__decor--two {
        display: flex
    }
}@layer component {
    .target__row {
        margin: 0 -16px;
        padding: 16px;
        width: calc(100% + 32px);
        border-radius: 20px 20px 0 0;
        grid-template-columns:repeat(1, 1fr);
        gap: 30px
    }
}@layer component {
    .target__inner {
        gap: 52px
    }
}@layer component {
    .target__img {
        width: 228px;
        height: 324px
    }
}@layer component {
    .team__top {
        margin-bottom: 31px
    }
}@layer component {
    .partner__slider {
        height: 196px
    }
}@layer component {
    .partner__slide {
        width: 136px;
        height: 93px !important
    }
}@layer component {
    .direction__slide .card-target__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px;
        letter-spacing: -.2px
    }
}@layer component {
    .objective__column.objective__column--big {
        grid-column-start: span 1
    }
}@layer component {
    .staff__column {
        gap: 14px
    }
}@layer component {
    .worker__tabs .tabs__title {
        font-size: 16px;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: .48px;
        padding: 10px 0
    }
}@layer component {
    .worker__tabs .tabs__navigation {
        margin: 0 -26px 27px
    }
}.employment__item textarea {
     border-radius: 16px !important;
     padding: 8px 16px !important
 }

    .employment__item .j-textarea-count {
        line-height: 20px;
        font-size: 14px
    }

    @layer component {
        .achievement-card__title {
            font-size: 20px;
            line-height: 26px;
            letter-spacing: .6px
        }
    }@layer component {
    .achievement-card__text {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: .48px
    }
}@layer component {
    .projects__tabs .tabs__title {
        font-size: 16px;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: .48px;
        padding: 10px 0
    }
}@layer component {
    .projects__tabs .tabs__navigation {
        margin: 0 -26px 27px
    }
}
}

@media only screen and (max-width: 479.98px) {
    .achievement-block__link {
        max-width: 100%;
        width: 100%;
        margin-top: 12px
    }

    @layer component {
        .staff__showmore {
            max-width: 100%
        }
    }@layer component {
    .worker-block__showmore {
        width: 100%;
        max-width: 100%
    }
}@layer component {
    .achievement__showmore {
        max-width: 100%
    }
}@layer component {
    .projects-block__showmore {
        width: 100%;
        max-width: 100%
    }
}
}

@media only screen and (max-width: 1365.98px) {
    @layer component {
        .platform__column.platform__column--big {
            grid-column-start: span 2
        }
    }@layer component {
    .platform__column-info {
        margin: 0 auto;
        justify-content: center
    }
}@layer component {
    .platform__column-text {
        display: none
    }
}@layer component {
    .platform__column-arrow {
        background: #afca0b;
        transform: rotate(-45deg);
        position: absolute;
        --pad: 20px;
        top: var(--pad);
        right: var(--pad)
    }
}@layer base {
    .section-head__decor {
        display: none
    }
}@layer mod {
    .page-back--contacts {
        display: none
    }
}.employment__img {
     display: none
 }

    @layer component {
        .services__item-image {
            width: 115.423px;
            height: 122px;
            margin-bottom: 26px
        }
    }@layer component {
    .products__item-link {
        font-size: 0;
        gap: 0px;
        display: none
    }
}
}

@media only screen and (max-width: 1365.98px) and (max-width: 767.98px) {
    @layer component {
        .platform__column-arrow {
            --pad: 9px
        }
    }
}

@media only screen and (max-width: 991.98px) and (max-width: 620px) {
    @layer component {
        .direction__slide .card-target__img {
            aspect-ratio: 358/160
        }
    }
}

@media only screen and (max-width: 620px) {
    @layer component {
        .worker__link {
            max-width: 100%
        }
    }
}
