@charset "UTF-8";
* {
    padding: 0;
    margin: 0;
    border: 0
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

a {
    -webkit-tap-highlight-color: transparent
}

div {
    -webkit-tap-highlight-color: transparent
}

aside, footer, header, nav, section {
    display: block
}

body, html {
    height: 100%;
    min-width: 320px;
    font-family: "Golos Text", sans-serif;
    font-size: 16px
}

body {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

button, input, textarea {
    font-family: "Golos Text", sans-serif;
    font-size: inherit
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer;
    background-color: inherit
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a, a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit
}

label {
    display: block
}

input:focus::-webkit-input-placeholder {
    color: transparent
}

input:focus:-moz-placeholder {
    color: transparent
}

input:focus::-moz-placeholder {
    color: transparent
}

input:focus:-ms-input-placeholder {
    color: transparent
}

textarea:focus::-webkit-input-placeholder {
    color: transparent
}

textarea:focus:-moz-placeholder {
    color: transparent
}

textarea:focus::-moz-placeholder {
    color: transparent
}

textarea:focus:-ms-input-placeholder {
    color: transparent
}

header {
    z-index: 100;
    position: fixed;
    width: 100%;
    background: #eef1f7
}

header.fix {
    border-bottom: 2px solid rgba(33, 33, 33, .06)
}

.fix .header__logo .iso_logo {
    display: none
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0;
    white-space: nowrap;
    position: relative
}

.header__logo {
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    margin-right: 60px
}

.header__logo a:hover {
    opacity: .9
}

.header__logo-link {
    display: block;
    margin-bottom: 15px;
}

.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto
}

.header__nav.mouse .header__menu-item {
    position: relative
}

.header__nav.mouse .header__menu-item:hover .header__menu-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto
}

.header__nav.mouse .header__menu-item:hover .header__menu-link {
    color: #2c60d1
}

.header__nav.mouse .header__menu-item:hover .header__touch-arrow {
    background-color: #2c60d1
}

.header__nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100 - 64px);
    overflow-y: scroll;
    overflow-x: hidden;
    background: #eef1f6
}

.header__nav .header__menu-dropdown.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto
}

.header__nav .header__menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__nav .header__touch-arrow {
    display: inline-block;
    margin-left: 12px;
    width: 16px;
    height: 9px;
    margin-top: 3px;
    -webkit-mask-image: url(../img/arrow.svg);
    mask-image: url(../img/arrow.svg);
    background-color: rgba(0, 0, 0, .87);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.header__nav .header__touch-arrow:hover {
    cursor: pointer
}

.header__nav .header__touch-arrow.open {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background-color: #2c60d1
}

.header__menu-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px
}

.header__menu-item {
    position: relative
}

.header__menu-item:hover {
    cursor: pointer
}

.header__menu-link {
    color: rgba(0, 0, 0, .87);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__menu-link:active {
    color: #1745a9
}

.header__menu-link--arrow.open {
    color: #2c60d1
}

.header__menu-dropdown {
    position: absolute;
    top: 40px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 45px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 395px;
    min-width: 240px;
    padding: 30px 25px;
    background: #fff;
    -webkit-box-shadow: 0 8px 24px rgba(76, 86, 107, .16);
    box-shadow: 0 8px 24px rgba(76, 86, 107, .16);
    border-radius: 16px;
    transition: all .5s;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    z-index: 2
}

.header__menu-dropdown::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 20px
}

.header__menu-dropdown-link {
    color: rgba(0, 0, 0, .871);
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.header__menu-dropdown-link:hover {
    color: rgba(102, 102, 102, .8705882353)
}

.header__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0px;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    margin-left: 50px
}

.header__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.header__phone-link {
    color: rgba(0, 0, 0, .87);
    -webkit-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s
}

.header__phone-link:hover {
    color: rgba(102, 102, 102, .8705882353)
}

.header__email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.header__email-link {
    color: rgba(0, 0, 0, .87);
    -webkit-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s
}

.header__email-link:hover {
    color: rgba(102, 102, 102, .8705882353)
}

.header__button {
    margin-left: 24px
}

.burger {
    position: relative;
    width: 25px;
    height: 20px;
    display: none
}

.burger:hover {
    cursor: pointer
}

.burger span {
    display: block;
    background-color: #2c60d1;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.burger::after, .burger::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #2c60d1;
    height: 2px;
    width: 100%;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.burger::before {
    top: 0
}

.burger::after {
    bottom: 0
}

.burger.active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

.burger.active::before {
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg)
}

.burger.active::after {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg)
}

.aw-footer__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px 0 43px;
    border-bottom: 1px solid rgba(33, 33, 33, .06)
}

.footer__logo {
    width: 260px;
    margin-bottom: 12px;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.footer__logo:hover {
    opacity: .6
}

.footer__logo-image {
    width: 100%
}

.footer__description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 28px;
    white-space: nowrap
}

.footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px
}

.footer__socials-item {
    width: 37px;
    height: 37px;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.footer__socials-item:hover {
    opacity: .6
}

.footer__socials-vk {
    background: url(../img/footer/icon-vk.svg) center center no-repeat;
    background-size: contain
}

.footer__socials-tg {
    background: url(../img/footer/icon-tg.svg) center center no-repeat;
    background-size: contain
}

.footer__socials-in {
    background: url(../img/footer/icon-in.svg) center center no-repeat;
    background-size: contain
}

.footer__socials-star {
    background: url(../img/footer/icon-star.svg) center center no-repeat;
    background-size: contain
}

.footer__socials-habr {
    background: url(../img/footer/habr.png) center center no-repeat;
    background-size: contain
}

.footer__socials-youtube {
    background: url(../img/footer/icon-youtube.svg) center center no-repeat;
    background-size: contain
}

.footer__menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 65px;
    grid-template-columns:1fr 1fr 65px;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows:1fr 1fr;
    row-gap: 44px;
    -webkit-column-gap: 76px;
    -moz-column-gap: 76px;
    column-gap: 76px;
    justify-items: end
}

.footer__menu-link {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    white-space: nowrap
}

.footer__menu-link:hover {
    opacity: .6
}

.footer__bottom {
    padding: 34px 0;
    margin-bottom: 80px;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px
}

.footer__bottom-policy {
    margin-left: auto
}

.footer__bottom-policy-link {
    color: rgba(0, 0, 0, .87)
}

.footer__bottom-personal-link {
    color: rgba(0, 0, 0, .87)
}

.btn {
    display: inline-block;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .16px;
    background-color: #2c60d1;
    border-radius: 24px;
    padding: 10px 20px 12px;
    color: #fff;
    -webkit-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s;
    white-space: nowrap
}

.btn:hover {
    background-color: #4f80ea
}

.btn:active {
    background: #1745a9
}

.btn-light {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .16px;
    color: #2c60d1;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.btn-light:hover {
    color: #4f80ea
}

.btn-light:hover svg {
    fill: #4f80ea
}

.btn-light:active {
    color: #1745a9
}

.btn-light:active svg {
    fill: #1745a9
}

.btn-light svg {
    -webkit-transition: fill .3s;
    -o-transition: fill .3s;
    transition: fill .3s;
    margin-left: 12px;
    fill: #2c60d1
}

.btn-arrow::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 16px;
    margin-left: 11px;
    background: url(../img/arrow-right.svg) center center no-repeat
}

.title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 51px;
    line-height: 56px;
    color: rgba(0, 0, 0, .87);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 48px
}

.title--clients {
    font-size: 36px;
    line-height: 48px;
    text-align: center
}

.title--clients span {
    color: #2c60d1
}

.btn-up {
    position: fixed;
    display: none;
    right: 40px;
    bottom: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url(../img/arrow-top.svg) center center / 35% no-repeat, #2c60d1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.btn-up:hover {
    cursor: pointer;
    opacity: .6
}

.btn-up.show {
    display: block;
    z-index: 1000;
}

@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");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-pointer-events {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-backface-hidden .swiper-slide {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    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: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.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-horizontal.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}

.swiper-centered > .swiper-wrapper::before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    order: 9999
}

.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-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.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-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center
}

.container {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 64px
}

.container-min {
    margin: 0 auto;
    max-width: 1058px;
    padding: 0 25px
}

.wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr auto;
    grid-template-rows:1fr auto;
    -ms-grid-columns: 100%;
    grid-template-columns:100%;
    min-height: 100vh;
    overflow: hidden;
    background: #eef1f7
}

html {
    scroll-behavior: smooth
}

body._lock {
    overflow: hidden
}

main {
    margin-top: 100px
}

.hero {
    margin-top: 130px;
    margin-bottom: 88px;
    position: relative
}

.hero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.hero__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 600;
    font-size: 94px;
    line-height: 96px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, .87);
    text-align: center;
    margin-bottom: 38px;
    max-width: 867px;
    z-index: 1
}

.hero__description {
    text-align: center;
    margin-bottom: 40px;
    max-width: 867px;
    color: rgba(0, 0, 0, .87);
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    z-index: 1
}

.hero__button {
    margin-bottom: 144px;
    z-index: 1
}

.hero__btn {
    font-size: 24px;
    line-height: 28px;
    padding: 14px 24px 18px;
    border-radius: 32px
}

.hero__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    z-index: 1;
    width: 100%
}

.hero__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 32px 45px 44px;
    gap: 12px;
    width: 421.33px;
    height: 224px;
    background: #fff;
    border-radius: 16px
}

.hero__item:nth-child(1) .hero__item-title {
    max-width: 190px
}

.hero__item:nth-child(2) .hero__item-title {
    max-width: 200px
}

.hero__item:nth-child(3) .hero__item-title {
    max-width: 240px
}

.hero__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: #2c60d1;
    z-index: 1
}

.hero__item-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    z-index: 1
}

.hero__animation-left {
    position: absolute;
    left: -405px;
    top: -240px;
    pointer-events: none;
    z-index: 0
}

.hero__animation-right {
    position: absolute;
    top: -160px;
    right: -405px;
    pointer-events: none
}

.trust {
    margin-bottom: 50px
}

.trust__title {
    margin-bottom: 70px
}

.trust__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 70px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 84px
}

.trust__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.trust__item.hidden {
    display: none
}

.trust__item:nth-child(1) {
    justify-self: flex-start
}

.trust__item:nth-child(4) {
    justify-self: flex-end
}

.trust__item:nth-child(5) {
    justify-self: flex-start
}

.trust__item:nth-child(8) {
    justify-self: flex-end
}

.trust__item:nth-child(9) {
    justify-self: flex-start
}

.trust__item:nth-child(12) {
    justify-self: flex-end
}

.trust__item:nth-child(13) {
    justify-self: flex-start
}

.trust__item:nth-child(16) {
    justify-self: flex-end
}

.trust__item:nth-child(17) {
    justify-self: flex-start
}

.trust__item:nth-child(20) {
    justify-self: flex-end
}

.trust__item:nth-child(21) {
    justify-self: flex-start
}

.trust__item:nth-child(24) {
    justify-self: flex-end
}
.trust__item.b24.switch {
    flex: 0 1 calc(15% - 20px);
}
.trust__wrapper.b24.switch {
    background: #fff;
    border-radius: 15px;
}
.trust__items.b24.switch {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-bottom: 84px;
}
.trust__item.b24.switch img {
    filter: grayscale(0%);
}
.trust__image.b24.switch {
    max-width: 80%;
}
.trust__image {
    max-width: 100%;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s
}

.trust__image:hover {
    opacity: .7
}

.trust__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.trust__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.trust__description {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: rgba(0, 0, 0, .87);
    display: none
}

.trust__description.show {
    display: block;
    text-align: center
}

.trust__btn--readmore.hidden {
    display: none
}

.trust__info {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: rgba(0, 0, 0, .87)
}

.trust__info-link {
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    color: #2c60d1
}

.trust__info-link:hover {
    color: #4f80ea
}

.services__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px
}

.services__items--three {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.services__item {
    width: 25%;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-transition: -webkit-box-shadow .5s;
    transition: -webkit-box-shadow .5s;
    -o-transition: box-shadow .5s;
    transition: box-shadow .5s;
    transition: box-shadow .5s, -webkit-box-shadow .5s
}

.services__item:hover {
    -webkit-box-shadow: 0 8px 24px rgba(76, 86, 107, .24);
    box-shadow: 0 8px 24px rgba(76, 86, 107, .24)
}

.services__item--three {
    width: calc(33.333% - 16px)
}

.services__icon {
    margin-bottom: 28px;
    height: 44px
}

.services__icon img {
    height: 100%
}

.services__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 24px
}

.services__description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 66px
}

.services__button {
    margin-top: auto
}

.services__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.project-evaluation {
    margin-bottom: 88px
}

.project-evaluation__wrapper {
    background: #2c60d1;
    border-radius: 16px;
    padding: 52px 84px;
    position: relative;
    overflow: hidden
}

.project-evaluation__wrapper::before {
    content: "";
    position: absolute;
    left: -493px;
    top: -407px;
    display: block;
    width: 782px;
    height: 925px;
    background: url(../img/project-evaluation/left-network.svg) no-repeat;
    background-size: contain;
    pointer-events: none
}

.project-evaluation__wrapper::after {
    content: "";
    position: absolute;
    right: -324px;
    top: -402px;
    display: block;
    width: 788px;
    height: 934px;
    background: url(../img/project-evaluation/right-network.svg) no-repeat;
    background-size: contain;
    pointer-events: none
}

.project-evaluation__wrapper--psmall {
    padding: 37px
}

.project-evaluation__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
    position: relative;
    gap: 44px
}

.project-evaluation__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: .25px;
    color: #fff;
    margin-bottom: 12px
}

.project-evaluation__description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: #fff;
    max-width: 666px
}

.project-evaluation__description--itc {
    max-width: 700px
}

.project-evaluation__description--itc ul {
    margin-left: 30px
}

.project-evaluation__description--itc li {
    list-style: initial
}

.project-evaluation__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    z-index: 50;
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.project-evaluation__btn {
    display: inline-block;
    background: #fff;
    border-radius: 32px;
    padding: 14px 24px 18px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: .16px;
    color: #2c60d1;
    -webkit-transition: color .5s, -webkit-box-shadow .3s;
    transition: color .5s, -webkit-box-shadow .3s;
    -o-transition: color .5s, box-shadow .3s;
    transition: color .5s, box-shadow .3s;
    transition: color .5s, box-shadow .3s, -webkit-box-shadow .3s;
    white-space: nowrap
}

.project-evaluation__btn:hover {
    color: #4f80ea;
    -webkit-box-shadow: #1745a9;
    box-shadow: #1745a9;
    -webkit-box-shadow: 0 0 8px 11px rgba(34, 60, 80, .1);
    box-shadow: 0 0 8px 11px rgba(34, 60, 80, .1)
}

.project-evaluation__btn:active {
    color: #1745a9
}

.cases {
    margin-bottom: 88px
}

.cases__title {
    margin-bottom: 40px
}

.cases__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px
}

.cases__item {
    width: calc(50% - 12px);
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-transition: -webkit-box-shadow .5s;
    transition: -webkit-box-shadow .5s;
    -o-transition: box-shadow .5s;
    transition: box-shadow .5s;
    transition: box-shadow .5s, -webkit-box-shadow .5s
}

.cases__item:hover {
    -webkit-box-shadow: 0 8px 24px rgba(76, 86, 107, .24);
    box-shadow: 0 8px 24px rgba(76, 86, 107, .24)
}

.cases__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 36px
}

.cases__top-icon {
    margin-right: 24px
}

.cases__top-category {
    margin-right: auto;
    max-width: 198px;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.cases__top-label {
    padding: 6px 16px;
    background: #eff4ff;
    border-radius: 24px;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: #2c60d1
}

.cases__content-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 24px;
    max-width: 510px
}

.cases__content-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 15px
}

.cases__content-time::before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-right: 8px;
    background: url(../img/cases/icon-time.svg) center center no-repeat
}

.cases__content-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 80px
}

.cases__button {
    margin-top: auto
}

.cases__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.cases__link::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.cases-content {
    margin-bottom: 88px
}

.cases-content__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 51px;
    line-height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 46px
}

.cases-content__category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px
}

.cases-content__category-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px
}

.cases-content__category-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cases-content__category-item--last {
    padding: 6px 16px;
    background: rgba(44, 96, 209, .06);
    border-radius: 24px
}

.cases-content__category-item-icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px
}

.cases-content__category-item-icon-img {
    max-width: 100%
}

.cases-content__category-item-title {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.cases-content__category-item-title--last {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    letter-spacing: .5px;
    color: #2c60d1
}

.cases-content__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    margin-bottom: 44px
}

.cases-content__item {
    padding: 32px 24px 44px;
    background: #fff;
    border-radius: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
}

.cases-content__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: #2c60d1;
    margin-bottom: 12px
}

.cases-content__item-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.cases-content__topimage {
    border-radius: 16px;
    width: 100%;
    margin-bottom: 44px;
    max-width: 1312px
}

.cases-content__topimage-img {
    max-width: 100%
}

.cases-content__inner {
    margin: 0 auto;
    max-width: 1008px;
    background: #fff;
    border-radius: 24px;
    padding: 56px 64px
}

.cases-content__inner h1 {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 20px
}

.cases-content__inner p {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87)
}

.cases-content__inner p:not(:last-child) {
    margin-bottom: 20px
}

.cases-content__inner h2 {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 20px
}

.cases-content__inner h3 {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 16px
}

.cases-content__inner ul {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-left: 30px;
    margin-bottom: 20px
}

.cases-content__inner ul li {
    list-style: inside;
    list-style-position: outside
}

.cases-content__image {
    width: 100%;
    margin-bottom: 36px
}

.cases-content__img {
    max-width: 100%;
    margin-bottom: 12px
}

.cases-content__image-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .4px;
    color: rgba(0, 0, 0, .87)
}

.cases-content__box {
    margin-bottom: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0 0 32px;
    border-left: 2px solid #2c60d1;
    margin-top: 28px
}

.cases-content__box p {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87)
}

.cases-content__box-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cases-content__box-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 68px;
    flex: 0 0 68px;
    border-radius: 50%
}

.cases-content__box-avatar-img {
    border-radius: 50%
}

.cases-content__box-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 4px
}

.cases-content__box-more-name {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87)
}

.cases-content__box-more-job {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: #2c60d1
}

.cases--slider .cases__slider {
    position: relative
}

.cases--slider .cases__slider-container {
    overflow: hidden;
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px
}

.cases--slider .cases__slider-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    height: 100%
}

.cases--slider .cases__slider-item {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.cases--slider .cases__slider-arrow-prev {
    position: absolute;
    width: 18px;
    height: 33px;
    background: url(../img/cases/arrow.svg) center center no-repeat;
    left: -42px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.cases--slider .cases__slider-arrow-prev:hover {
    cursor: pointer
}

.cases--slider .cases__slider-arrow-next {
    position: absolute;
    width: 18px;
    height: 33px;
    background: url(../img/cases/arrow.svg) center center no-repeat;
    right: -42px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg)
}

.cases--slider .cases__slider-arrow-next:hover {
    cursor: pointer
}

.why {
    margin-bottom: 88px
}

.why__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 48px
}

.why__item {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    padding: 32px 45px;
    width: calc(33.333% - 32px);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.why__icon {
    margin-bottom: 16px
}

.why__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 12px;
    max-width: 345px
}

.why__description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .5)
}

.mass-media {
    margin-bottom: 88px
}

.mass-media__wrapper {
    position: relative
}

.mass-media__slider {
    position: relative
}

.mass-media__slider-container {
    overflow: hidden;
    width: 100%;
    margin: -10px;
    padding: 10px;
    border-radius: 16px
}

.mass-media__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    height: 100%
}

.mass-media__item {
    width: calc(33.333% - 16px);
    height: auto;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-transition: -webkit-box-shadow .5s;
    transition: -webkit-box-shadow .5s;
    -o-transition: box-shadow .5s;
    transition: box-shadow .5s;
    transition: box-shadow .5s, -webkit-box-shadow .5s
}

.mass-media__item:hover {
    -webkit-box-shadow: 0 8px 24px rgba(76, 86, 107, .24);
    box-shadow: 0 8px 24px rgba(76, 86, 107, .24)
}

.mass-media__logo {
    margin-bottom: 40px
}

.mass-media__description {
    margin-bottom: 34px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.mass-media__button {
    margin-top: auto
}

.mass-media__button-link::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.mass-media__arrow-left {
    width: 17px;
    height: 32px;
    background: url(../img/mass-media/arrow-left.svg) center center no-repeat;
    position: absolute;
    left: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.mass-media__arrow-left:hover {
    cursor: pointer;
    opacity: .6
}

.mass-media__arrow-right {
    width: 17px;
    height: 32px;
    background: url(../img/mass-media/arrow-right.svg) center center no-repeat;
    position: absolute;
    right: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.mass-media__arrow-right:hover {
    cursor: pointer;
    opacity: .6
}

.contacts {
    margin-bottom: 88px
}

.contacts__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px
}

.contacts__column:nth-child(1) {
    max-width: 533px
}

.contacts__column:nth-child(2) {
    max-width: 548px
}

.contacts__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 16px
}

.contacts__title--right {
    margin-bottom: 38px
}

.contacts__form-input {
    padding: 16px 12px;
    background: #fff;
    border-radius: 8px;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 16px;
    width: 100%;
    border: 2px solid transparent;
    -webkit-transition: border .3s;
    -o-transition: border .3s;
    transition: border .3s;
    outline: 0
}

.contacts__form-input:hover {
    border: 2px solid #5387f9
}

.contacts__form-input:active {
    border: 2px solid #2c60d1;
    caret-color: #2c60d1
}

.contacts__form-input:focus {
    border: 2px solid #2c60d1;
    caret-color: #2c60d1
}

.contacts__form-input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-input::-moz-placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-input:-ms-input-placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-input::-ms-input-placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-input::placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-input:nth-child(1) {
    width: calc(50% - 8px);
    margin-right: 12px
}

.contacts__form-input:nth-child(2) {
    width: calc(50% - 8px)
}

.contacts__form-input--error {
    color: #f44336;
    border: 2px solid #f44336
}

.contacts__form-input--error::-webkit-input-placeholder {
    color: #f44336
}

.contacts__form-input--error::-moz-placeholder {
    color: #f44336
}

.contacts__form-input--error:-ms-input-placeholder {
    color: #f44336
}

.contacts__form-input--error::-ms-input-placeholder {
    color: #f44336
}

.contacts__form-input--error::placeholder {
    color: #f44336
}

.contacts__form-textarea {
    padding: 16px 12px;
    background: #fff;
    border-radius: 8px;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 26px;
    width: 100%;
    min-height: 200px;
    resize: vertical;
    border: 2px solid transparent;
    -webkit-transition: border .3s;
    -o-transition: border .3s;
    transition: border .3s;
    outline: 0
}

.contacts__form-textarea:hover {
    border: 2px solid #5387f9
}

.contacts__form-textarea:active {
    border: 2px solid #2c60d1;
    caret-color: #2c60d1
}

.contacts__form-textarea:focus {
    border: 2px solid #2c60d1;
    caret-color: #2c60d1
}

.contacts__form-textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-textarea::-moz-placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-textarea:-ms-input-placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-textarea::-ms-input-placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-textarea::placeholder {
    color: rgba(0, 0, 0, .32)
}

.contacts__form-file {
    margin-bottom: 38px
}

.contacts__form-file-label {
    display: inline-block
}

.contacts__form-file-label:hover {
    cursor: pointer
}

.contacts__form-file-label span {
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .16px;
    color: #2c60d1
}

.contacts__form-file-label span:hover {
    opacity: .7
}

.contacts__form-file-label.add span::before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    -webkit-mask-image: url(../img/contacts/icon-attach.svg);
    mask-image: url(../img/contacts/icon-attach.svg);
    background-color: #2c60d1;
    width: 20px;
    height: 24px
}

.contacts__form-file-label.file-list span::after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    -webkit-mask-image: url(../img/contacts/icon-trash.svg);
    mask-image: url(../img/contacts/icon-trash.svg);
    background-color: #2c60d1;
    width: 20px;
    height: 21px
}

.contacts__form-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px
}

.contacts__form-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .32)
}

.contacts__form-description-link {
    color: #2c60d1
}

.contacts__email {
    white-space: nowrap
}

.contacts__email-link {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    color: rgba(0, 0, 0, .87);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.contacts__email-link::before {
    content: "";
    display: inline-block;
    width: 55px;
    height: 38px;
    margin-right: 29px;
    background: url(../img/contacts/icon-mail.svg) center center no-repeat;
    background-size: contain
}

.contacts__email-link:hover {
    opacity: .6
}

.contacts__phone {
    white-space: nowrap
}

.contacts__phone-link {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    color: rgba(0, 0, 0, .87);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.contacts__phone-link::before {
    content: "";
    display: inline-block;
    width: 54px;
    height: 54px;
    margin-right: 29px;
    background: url(../img/contacts/icon-phone.svg) center center no-repeat;
    background-size: contain
}

.contacts__phone-link:hover {
    opacity: .6
}

.breadcrumbs {
    margin-top: 50px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .25px;
    margin-bottom: 32px
}

.breadcrumbs__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 5px
}

.breadcrumbs__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.breadcrumbs__item:not(:last-child) .breadcrumbs__link {
    color: rgba(0, 0, 0, .32)
}

.breadcrumbs__item:not(:last-child) .breadcrumbs__link:hover {
    color: rgba(0, 0, 0, .87)
}

.breadcrumbs__item:not(:last-child) .breadcrumbs__link::after {
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSIxMCIgdmlld0JveD0iMCAwIDYgMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wLjczOTY2NSAwLjIwMDQwOEMwLjQzNjEzMiAwLjQ4MjI2IDAuNDE4NTU2IDAuOTU2ODA5IDAuNzAwNDA4IDEuMjYwMzRMNC4yMjY1MiA1TDAuNzAwNDA4IDguNzM5NjdDMC40MTg1NTYgOS4wNDMyIDAuNDM2MTMyIDkuNTE3NzUgMC43Mzk2NjUgOS43OTk2QzEuMDQzMiAxMC4wODE1IDEuNTE3NzUgMTAuMDYzOSAxLjc5OTYgOS43NjAzNEw1Ljc5OTYgNS41MTAzNEM2LjA2NjggNS4yMjI1OCA2LjA2NjggNC43Nzc0MyA1Ljc5OTYgNC40ODk2NkwxLjc5OTYgMC4yMzk2NjVDMS41MTc3NSAtMC4wNjM4NjgxIDEuMDQzMiAtMC4wODE0NDQgMC43Mzk2NjUgMC4yMDA0MDhaIiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjMyIi8+Cjwvc3ZnPgo=);
    display: inline-block;
    margin-left: 13px
}

.breadcrumbs__link {
    color: rgba(0, 0, 0, .87);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.breadcrumbs__link:hover {
    color: rgba(102, 102, 102, .8705882353)
}

.gain {
    margin-bottom: 132px
}

.gain__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    letter-spacing: -.25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 16px
}

.gain__sub-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 40px
}

.gain__button {
    text-align: center;
    margin-bottom: 68px
}

.gain__btn {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: .16px
}

.gain__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 48px;
    -moz-column-gap: 48px;
    column-gap: 48px
}

.gain__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.gain__item-icon {
    margin-bottom: 20px;
    max-width: 46px;
    max-height: 46px
}

.gain__item-image {
    max-width: 100%
}

.gain__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 12px;
    text-align: center;
    max-width: 260px
}

.gain__item-description {
    text-align: center;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .5)
}

.fits {
    margin-bottom: 88px
}

.fits__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px
}

.fits__items--itc {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 24px;
    margin-bottom: 24px
}

.fits__item {
    padding: 32px 24px 44px;
    background: #fff;
    border-radius: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.fits__item--itc {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(33.333% - 16px);
    flex: 1 1 calc(33.333% - 16px)
}

.fits__item--itc.hide {
    display: none
}

.fits__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: #2c60d1;
    margin-bottom: 12px;
    text-align: center;
    max-width: 302px
}
.fits__item.tp{
    align-items: flex-start;
}
.fits__item-img {
    margin-left: 16px;
}
.fits__item-img img {
    width: 48px;
    height: 48px;
}
.fits__item-title--itc {
    max-width: 100%
}

.fits__item-title--nowidth {
    max-width: 100%
}

.fits__item-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.fits__button {
    text-align: center
}

.fits__items.tp {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 24px;
    margin-bottom: 24px
}

.fits__item.tp, .fits__item.third {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(33.333% - 16px);
    flex: 1 1 calc(33.333% - 16px)
}

.integration__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.integration__item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px 32px;
    transition: box-shadow .5s, -webkit-box-shadow .5s;
}

.integration__item:nth-child(1) {
    flex: 0 1 29%;
}

.integration__item:nth-child(2) {
    flex: 0 1 69.5%;
}

.integration__item:nth-child(3) {
    flex: 0 1 39%;
}

.integration__item:nth-child(4) {
    flex: 0 1 59.5%;
}

.integration__item:nth-child(5) {
    flex: 0 1 100%;
}
.integration__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .25px;
    color: #2c60d1;
    margin-bottom: 12px;
    text-align: left;
    max-width: 302px
}

.integration__item-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
}

.integration__item-description ul {
    list-style: none;
    padding-left: 0;
}

.integration__item-description li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 18px;
}

.integration__item-description li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: white;
    font-size: 13px;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 13px;
    border-radius: 50%;
}

.suitable__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.suitable__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px 32px;
    transition: box-shadow .5s;
    flex: 1 1 49%;
    height: 180px;
}

.suitable__item-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.suitable__item-title span{vertical-align: middle;text-align: center;}

.suitable__item-title:before {
    content: '\2713';
    margin-right: 8px;
    background-color: #007bff;
    color: white;
    font-size: 13px;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 13px;
    border-radius: 50%;
}
.suitable__item-title span {font-size: 20px;}

.support__item-description {
    font-family: "Commissioner";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
}

.support__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.support__item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px 32px;
    transition: box-shadow .5s, -webkit-box-shadow .5s;
}

.support__item-title {font-weight: bold; font-size: 20px;margin-bottom: 15px;}
.support__item-description.supp {padding-bottom: 20px;}

.support__item-description ul {
    list-style: none;
    padding-left: 0;
}

.support__item-description li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 25px;
    font-size: 20px;
    line-height: 24px;
}

.support__item-description li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: white;
    font-size: 13px;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 13px;
    border-radius: 50%;
}

.how-working {
    margin-bottom: 88px
}

.how-working__items {
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 48px;
    -moz-column-gap: 48px;
    column-gap: 48px
}
.how-working__items.b24 {flex-wrap: wrap;row-gap: 40px;}

.how-working__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0
}
.how-working__item.b24 {flex: 1 1 30%;-webkit-box-flex: 1;}
.how-working__item-count {
    width: 56px;
    height: 56px;
    background: #2c60d1;
    border: 3px solid #2c60d1;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 16px
}
.how-working__item-count.b24 {border-radius: 10%;width: 48px;height:48px;}
.how-working .subtitle {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 30px;
    text-align: center;
}
.how-working .subtitle.two {margin-top: 80px;}
.how-working__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 16px
}
.how-working__item-title{color: #2c60d1}
.how-working__item-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.how-working__item-description--fs20 {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px
}

.how-working__bottom {
    text-align: center
}

.how-working__bottom-bracket {
    margin-bottom: 24px
}

.how-working__bottom-bracket svg {
    max-width: 100%
}

.how-working__bottom-price {
    padding: 16px 24px 20px;
    background: #fff;
    border-radius: 40px;
    display: inline-block;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .25px;
    color: #2c60d1
}

.how-working__item.b24.integration {flex: 1 0 18%;}
.how-working__items.b24.integration {flex-wrap: wrap;row-gap: 20px;column-gap: 20px;}

.competencies {
    margin-bottom: 88px
}

.competencies__slider {
    overflow: hidden;
    width: 100%
}

.competencies__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 48px;
    width: 100%;
    height: 100%
}

.competencies__item {
    padding: 24px 24px 36px;
    background: #fff;
    border-radius: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.competencies__item-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    margin-bottom: 18px;
}

.competencies__item-top-avatar {
    margin-top: -32px;
    margin-left: -24px;
    margin-right: -24px;
}

.competencies__item-top-image {
    border-radius: 10px 10px 0 0;
    max-width: 100%;
    aspect-ratio: 9 / 7;
    object-fit: cover;
}

.competencies__item-top-name {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 4px
}

.competencies__item-top-job {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    margin-top: 24px;
}

.competencies__item-content-block:not(:last-child) {
    margin-bottom: 24px
}

.competencies__item-content-title {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .32);
    margin-bottom: 16px
}

.competencies__item-content-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.competencies__button {
    text-align: center
}

.customization {
    margin-bottom: 88px
}

.customization_item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 12px
}

.customization_item-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.customization__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 64px;
    line-height: 72px;
    letter-spacing: -.25px;
    color: rgba(0, 0, 0, .87);
    text-align: center;
    margin-bottom: 10px
}

.customization__subtitle {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 40px
}

.customization__button {
    text-align: center
}

.customization__btn {
    margin-bottom: 40px
}

.customization__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px
}

.customization__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    padding: 24px;
    background: rgba(44, 96, 209, .06);
    border-radius: 16px
}

.compound {
    margin-bottom: 88px
}

.compound__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px
}

.compound__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    padding: 24px 24px 32px;
    background: rgba(44, 96, 209, .06);
    border-radius: 16px;
    width: 0
}

.compound__item-icon {
    margin-bottom: 18px;
    max-width: 49px
}

.compound__item-image {
    max-width: 100%
}

.compound__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 8px
}

.compound__item-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.escort-support {
    margin-bottom: 88px
}

.escort-support--itc {
    margin-bottom: 0
}

.escort-support__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    letter-spacing: -.25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 16px
}

.escort-support__title--itc {
    font-size: 51px;
    line-height: 58px;
    margin-bottom: 40px
}

.escort-support__sub-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 40px
}

.escort-support__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px
}

.escort-support__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px
}

.escort-support__item {
    padding: 24px;
    background: rgba(44, 96, 209, .06);
    border-radius: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 32%;
    flex: 1 1 32%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.escort-support__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87)
}

.implementation {
    margin-bottom: 88px
}

.implementation__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    letter-spacing: -.25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 16px
}

.implementation__sub-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 40px
}

.implementation__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px
}

.implementation__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px
}

.implementation__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    padding: 24px;
    background: rgba(44, 96, 209, .06);
    border-radius: 16px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87)
}

.implementation__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87)
}

.stages {
    margin-bottom: 88px
}

.stages__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.stages__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%
}

.stages__item-count {
    width: 56px;
    height: 56px;
    background: #2c60d1;
    border: 3px solid #2c60d1;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 16px
}

.stages__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 16px;
    max-width: 360px
}

.stages__item-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.grade {
    margin-bottom: 88px
}

.grade__wrapper {
    background: #fff;
    padding: 40px 44px 28px;
    border-radius: 16px
}

.grade__head-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px
}

.grade__head-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.grade__head-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 52px;
    width: 100%
}

.grade__content-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 2px solid rgba(33, 33, 33, .06);
    padding-bottom: 16px;
    margin-bottom: 28px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: rgba(0, 0, 0, .87)
}

.grade__content-spoller {
    margin-bottom: 44px
}

.grade__content-spoller.open .grade__content-spoller-body {
    display: block
}

.grade__content-spoller.open .grade__content-spoller-head-title::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.grade__content-spoller-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.grade__content-spoller-head-count {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    height: 36px;
    background: #2c60d1;
    border-radius: 28px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 500;
    margin-right: 24px
}

.grade__content-spoller-head-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: rgba(0, 0, 0, .87);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 40px;
    position: relative
}

.grade__content-spoller-head-title:hover {
    cursor: pointer
}

.grade__content-spoller-head-title::after {
    content: "";
    background: red;
    position: absolute;
    top: 2px;
    right: -25px;
    height: 9px;
    width: 16px;
    margin-top: 15px;
    margin-left: 20px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-mask-image: url(../img/arrow.svg);
    mask-image: url(../img/arrow.svg);
    background-color: #2c60d1
}

.grade__content-spoller-head-term {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: #2c60d1;
    margin-left: auto
}

.grade__content-spoller-body {
    margin-left: 60px;
    display: none
}

.grade__content-spoller-body-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.grade__content-spoller-body-row:not(:last-child) {
    margin-bottom: 32px
}

.grade__content-spoller-body-text {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87)
}

.grade__content-spoller-body-text p:not(:last-child) {
    padding-bottom: 20px
}

.grade__content-spoller-body-term {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87)
}

.grade__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: rgba(0, 0, 0, .87)
}

.grade__bottom-count {
    color: #2c60d1
}

.price {
    margin-bottom: 88px
}

.price__filter {
    display: none;
    position: relative;
    margin-bottom: 12px
}

.price__table-col-0 {
    width: 415px
}

.price__table-col-1 {
    max-width: 100px
}

.price__table-col-2 {
    max-width: 100px
}

.price__table-col-3 {
    max-width: 100px
}

.price__table-col-4 {
    max-width: 100px
}

.price__num-price {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: #2c60d1;
    white-space: nowrap
}

.price__yes {
    display: inline-block;
    background: url(../img/price/icon-yes.svg) center center no-repeat;
    width: 20px;
    height: 20px
}

.price__no {
    display: inline-block;
    background: url(../img/price/icon-no.svg) center center no-repeat;
    width: 20px;
    height: 20px
}

.price .select-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #fff
}

.price .select-btn .btn-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .16px;
    color: rgba(0, 0, 0, .87)
}

.price .select-btn .arrow-dwn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 16px;
    height: 9px;
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    -webkit-mask-image: url(../img/arrow.svg);
    mask-image: url(../img/arrow.svg);
    background: #6e93f7;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.price .select-btn.open .arrow-dwn {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.price .select-btn.open ~ .list-items {
    display: block
}

.price .list-items {
    position: absolute;
    margin-top: 4px;
    border-radius: 8px;
    padding: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    display: none;
    width: 100%
}

.price .list-items .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    height: 50px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding: 0 15px;
    border-radius: 8px
}

.price table {
    width: 100%;
    border-collapse: collapse
}

.price table thead th {
    padding: 0 45px 24px 0
}

.price table th {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87);
    text-align: left
}

.price table th:first-child {
    padding: 32px 24px
}

.price table tbody tr:first-child td:first-child {
    border-radius: 16px 0 0 0
}

.price table tbody tr:first-child td:last-child {
    border-radius: 0 16px 0 0
}

.price table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px
}

.price table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0
}

.price table tbody tr:nth-child(odd) {
    background: #fff
}

.price table tbody tr:first-child {
    border-radius: 16px 0 0 0
}

.price table tbody tr:last-child {
    border-radius: 16px 0 0 0
}

.price table tbody tr:nth-child(even) {
    background: #eef1f7
}

.price table tbody td {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    padding: 17px 20px 17px 0;
    height: 96px
}

.price table tbody td:first-child {
    padding-left: 24px;
    padding-right: 24px
}

.blog {
    margin-bottom: 88px
}

.blog__filter {
    margin-bottom: 48px;
    white-space: nowrap
}

.blog__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.blog__select-text {
    display: none;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .16px;
    color: rgba(0, 0, 0, .87)
}

.blog__select-arrow {
    display: none;
    width: 16px;
    height: 9px;
    background: url(../img/blog/arrow-bottom.svg) center center no-repeat;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.blog__select-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 56px;
    -moz-column-gap: 56px;
    column-gap: 56px
}

.blog__select-dropdown-item {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: #2c60d1;
    cursor: pointer
}

.blog__select-dropdown-item.active {
    color: #fff;
    padding: 6px 16px;
    background: #2c60d1;
    border-radius: 24px
}

.blog__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px
}

.blog__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 32px;
    width: calc(33.3333% - 16px);
    background: #fff;
    border-radius: 16px;
    min-height: 302px;
    -webkit-transition: -webkit-box-shadow .5s;
    transition: -webkit-box-shadow .5s;
    -o-transition: box-shadow .5s;
    transition: box-shadow .5s;
    transition: box-shadow .5s, -webkit-box-shadow .5s
}

.blog__item:hover {
    -webkit-box-shadow: 0 8px 24px rgba(76, 86, 107, .24);
    box-shadow: 0 8px 24px rgba(76, 86, 107, .24)
}

.blog__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: rgba(0, 0, 0, .87)
}
.blog__item-bottom {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
}
.blog__item-date,
.blog__item-readmore-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .16px;
    color: #2c60d1;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    -webkit-tap-highlight-color: transparent
}

.blog__item-readmore-link::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 17px;
    margin-left: 11px;
    background: url(../img/blog/arrow.svg) center center no-repeat
}

.blog__item-readmore-link::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.blog__item-readmore-link:hover {
    color: #4f80ea
}

.blog__loadmore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.blog-content {
    margin-bottom: 88px
}

.blog-content__wrapper img {
    cursor: pointer;
}

.blog-content__company {
    text-align: center;
    margin-bottom: 16px
}

.blog-content__company img {
    width: 100%;
    max-width: 270px
}

.blog-content__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 51px;
    line-height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 40px
}

.blog-content__title--media {
    margin-bottom: 24px
}

.blog-content__category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px
}

.blog-content__category--media {
    margin-bottom: 28px
}

.blog-content__category-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px
}

.blog-content__category-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.blog-content__category-item--last {
    padding: 6px 16px;
    background: rgba(44, 96, 209, .06);
    border-radius: 24px
}

.blog-content__category-item-icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px
}

.blog-content__category-item-icon-img {
    max-width: 100%
}

.blog-content__category-item-title {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.blog-content__category-item-title--last {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    letter-spacing: .5px;
    color: #2c60d1
}

.blog-content__category-item-title--sourse a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.blog-content__list-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 18px
}

.blog-content__list-items {
    counter-reset: myCounter;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 24px;
    margin-bottom: 48px
}

.blog-content__list-item {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px
}

.blog-content__list-item:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    counter-increment: myCounter;
    content: counter(myCounter);
    color: #fff;
    background: #2c60d1;
    border-radius: 50%;
    width: 28px;
    height: 28px
}

.blog-content__list-item-link {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87);
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.blog-content__list-item-link:hover {
    color: #2c60d1
}

.blog-content__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    margin-bottom: 44px
}

.blog-content__item {
    padding: 32px 24px 44px;
    background: #fff;
    border-radius: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
}

.blog-content__item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: #2c60d1;
    margin-bottom: 12px
}

.blog-content__item-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.blog-content__topimage {
    display: none;
    border-radius: 16px;
    width: 100%;
    margin-bottom: 44px;
    max-width: 1312px
}

.blog-content__topimage-img {
    max-width: 100%
}

.blog-content__inner {
    margin: 0 auto;
    max-width: 1008px;
    background: #fff;
    border-radius: 24px;
    padding: 56px 64px
}

.blog-content__inner h1 {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 20px
}

.blog-content__inner p {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87)
}

.blog-content__inner p:not(:last-child) {
    margin-bottom: 20px
}

.blog-content__inner h2 {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 20px
}

.blog-content__inner h3 {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 16px
}

.blog-content__inner ul, .blog-content__inner ol {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-left: 30px;
    margin-bottom: 20px
}

.blog-content__inner ul li {
    list-style: inside;
    list-style-position: outside
}

.blog-content__image {
    width: 100%;
    margin-bottom: 36px
}

.blog-content__image--review {
    margin-bottom: 0;
    text-align: center;
    padding: 0 70px
}

.blog-content__image--review img {
    max-width: 100%
}

.blog-content__img {
    max-width: 100%;
    margin-bottom: 12px
}

.blog-content__image-description {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .4px;
    color: rgba(0, 0, 0, .87)
}

.blog-content__box {
    margin-bottom: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0 0 32px;
    border-left: 2px solid #2c60d1;
    margin-top: 28px
}

.blog-content__box p {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87)
}

.blog-content__box-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.blog-content__box-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 68px;
    flex: 0 0 68px
}

.blog-content__box-avatar-img {
    border-radius: 50%
}

.blog-content__box-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 4px
}

.blog-content__box-more-name {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87)
}

.blog-content__box-more-job {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: #2c60d1
}

.blog-page {
    margin-bottom: 88px
}

.blog-page__title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 51px;
    line-height: 56px;
    text-align: center;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 48px
}

.blog-page__slider {
    position: relative
}

.blog-page__slider-container {
    overflow: hidden;
    width: 100%
}

.blog-page__slider-wrapper {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog-page__slider-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 302px;
    background: #fff;
    border-radius: 16px;
    padding: 32px
}

.blog-page__slider-item-title {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: rgba(0, 0, 0, .87)
}

.blog-page__slider-item-readmore-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .16px;
    color: #2c60d1;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.blog-page__slider-item-readmore-link::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 16px;
    margin-left: 11px;
    background: url(../img/blog/arrow.svg) center center no-repeat;
    background-size: contain
}

.blog-page__slider-item-readmore-link::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.blog-page__slider-item-readmore-link:hover {
    color: #4f80ea
}

.blog-page__slider-arrow-prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -40px;
    width: 18px;
    height: 33px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/blog/arrow-slider-prev.svg);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.blog-page__slider-arrow-prev:hover {
    opacity: .6
}

.blog-page__slider-arrow-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: -40px;
    width: 18px;
    height: 33px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/blog/arrow-slider-next.svg);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.blog-page__slider-arrow-next:hover {
    opacity: .6
}

.widget-reviews {
    margin-bottom: 88px
}

.widget-reviews__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px
}

.widget-reviews__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(50% - 12px);
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    -webkit-transition: -webkit-box-shadow .5s;
    transition: -webkit-box-shadow .5s;
    -o-transition: box-shadow .5s;
    transition: box-shadow .5s;
    transition: box-shadow .5s, -webkit-box-shadow .5s;
    min-height: 460px
}

.widget-reviews__item:hover {
    cursor: pointer;
    -webkit-box-shadow: 0 8px 24px rgba(76, 86, 107, .24);
    box-shadow: 0 8px 24px rgba(76, 86, 107, .24)
}

.widget-reviews__item-description {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 24px
}

.widget-reviews__item-readmore {
    margin-bottom: 28px;
    margin-top: auto
}

.widget-reviews__item-readmore-link {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .16px;
    color: #2c60d1;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.widget-reviews__item-readmore-link:hover {
    color: #4f80ea
}

.widget-reviews__item-readmore-link::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 17px;
    margin-left: 11px;
    background: url(../img/review/icon-arrow-right.svg) center center no-repeat;
    background-size: contain
}

.widget-reviews__item-readmore-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0
}

.widget-reviews__item-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid rgba(33, 33, 33, .06);
    padding-top: 18px
}

.widget-reviews__item-name {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .15px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 4px
}

.widget-reviews__item-job {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.widget-reviews__item-logo {
    max-width: 150px
}

.widget-reviews__item-logo-img {
    max-width: 100%
}

.widget-reviews__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.widget-reviews__slider {
    position: relative
}

.widget-reviews__slider-container {
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px
}

.widget-reviews__slider-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0
}

.widget-reviews__slider-item {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.widget-reviews__button-prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -40px;
    width: 18px;
    height: 33px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    background: url(../img/review/arrow-prev.svg);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.widget-reviews__button-prev:hover {
    opacity: .6
}

.widget-reviews__button-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: -40px;
    width: 18px;
    height: 33px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    background: url(../img/review/arrow-next.svg);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.widget-reviews__button-next:hover {
    opacity: .6
}

.contact-details {
    margin-bottom: 52px
}

.contact-details__description {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 40px
}

.contact-details__description span {
    color: #2c60d1
}

.contact-details__map {
    width: 100%;
    margin-bottom: 40px
}

.contact-details__map img {
    max-width: 100%
}

.contact-details__addres {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 17px;
    -moz-column-gap: 17px;
    column-gap: 17px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .87)
}

.contact-details__addres::before {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    content: "";
    display: inline-block;
    width: 31px;
    height: 26px;
    background: url(../img/contacts/icon-map.svg) center center no-repeat;
    background-size: contain
}

.about {
    margin-bottom: 88px
}

.about__wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 48px 56px 56px 56px
}

.about__wrapper--mb {
    margin-bottom: 24px
}

.about__wrapper--bottom {
    background: url(../img/about/bg-network.svg) left -215px bottom -410px no-repeat, #fff
}

.about__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 51px;
    line-height: 58px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 48px;
    grid-area: title
}

.text-center {
    text-align: center
}

.about__h2 {
    font-size: 36px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: .25px;
    margin-bottom: 20px
}

.about__columns {
    display: -ms-grid;
    display: grid;
    grid-template-areas:"title title" "column-one column-two";
    -webkit-column-gap: 44px;
    -moz-column-gap: 44px;
    column-gap: 44px;
    -ms-grid-columns: auto 44px 200px;
    grid-template-columns:auto 200px
}

.about__column:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: column-one
}

.about__column:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    grid-area: column-two
}

.about__text p {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87)
}

.about__text p:not(:last-child) {
    margin-bottom: 20px
}

.about__info-columns { /*display:-webkit-box;display:-ms-flexbox;display:flex;*/
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.about__avatar {
    width: 220px;
    margin-bottom: 20px
}

.about__avatar-img {
    max-width: 100%;
    border-radius: 50%
}

.about__name {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .87);
    margin-bottom: 4px
}

.about__job {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .25px;
    color: #2c60d1
}

.about__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 48px;
    margin: 30px 0 68px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.about__item {
    width: calc(33.3333% - 32px)
}

.about__item-icon {
    margin-bottom: 10px;
    text-align: center
}

.about__item-description {
    font-size: 24px;
    line-height: 32px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .25px;
    text-align: center
}

.about__chat-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 35px;
    row-gap: 20px;
    margin-bottom: 48px
}

.about__chat-item {
    background: #ecf2ff;
    border-radius: 20px;
    padding: 15px 20px;
    font-size: 20px;
    font-family: Golos Text;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px;
    position: relative
}

.about__chat-item--left {
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start
}

.about__chat-item--left::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -8px;
    width: 28px;
    height: 30px;
    background: url(../img/about/chat-left.svg) no-repeat
}

.about__chat-item--right {
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end
}

.about__chat-item--right::before {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -8px;
    width: 28px;
    height: 30px;
    background: url(../img/about/chat-right.svg) no-repeat
}

.about-box {
    margin-bottom: 88px
}

.about-box__wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 37px 180px;
    position: relative;
    overflow: hidden
}

.about-box__wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/about/left-network.svg) center center no-repeat;
    width: 197px;
    height: 146px
}

.about-box__wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../img/about/right-network.svg) center center no-repeat;
    width: 308px;
    height: 146px
}

.about-box__button {
    z-index: 10
}

.about-box__wrapper--columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 63px 138px;
    position: relative;
    overflow: hidden;
    row-gap: 16px
}

.about-box__wrapper--columns::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/career/left-bg.svg) center center no-repeat;
    width: 289px;
    height: 199px
}

.about-box__wrapper--columns::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../img/career/right-bg.svg) center center no-repeat;
    width: 333px;
    height: 199px;
    pointer-events: none
}

.about-box__inner {
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: rgba(0, 0, 0, .87);
    z-index: 1;
    position: relative
}

.about-box__inner span {
    color: #2c60d1
}

.about-box__text {
    font-size: 28px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    z-index: 10
}

.career__title {
    text-align: center;
    font-size: 51px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 58px;
    margin-bottom: 24px
}

.career__title span {
    color: #2c60d1
}

.career__description {
    text-align: center;
    font-size: 20px;
    font-family: Golos Text;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px;
    margin-bottom: 44px
}

.career__info {
    border-radius: 16px;
    background: #fff;
    padding: 44px 64px 56px;
    margin-bottom: 24px
}

.career__info-title {
    color: #2c60d1;
    font-size: 28px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 24px
}

.career__info-description {
    color: rgba(0, 0, 0, .87);
    font-size: 20px;
    font-family: Golos Text;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px
}

.career__photo img {
    max-width: 100%;
    border-radius: 16px
}

.career__photo--bottom {
    margin-bottom: 88px
}

.career__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
    margin-bottom: 24px
}

.career__item {
    width: calc(50% - 14px);
    border-radius: 16px;
    background: #fff;
    padding: 32px
}

.career__item-icon {
    margin-bottom: 10px
}

.career__item-title {
    color: rgba(0, 0, 0, .87);
    font-size: 24px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: .25px;
    margin-bottom: 12px
}

.career__item-description {
    color: #000000;
    font-size: 18px;
    font-family: Golos Text;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .25px
}

.career__referral-wrapper {
    padding: 56px 64px;
    border-radius: 24px;
    background: #fff;
    margin-bottom: 24px
}

.career__referral-wrapper p {
    color: rgba(0, 0, 0, .87);
    font-size: 20px;
    font-family: Golos Text;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px;
    margin-bottom: 44px
}

.career__referral-wrapper-top {
    padding: 56px 64px;
    margin-bottom: 24px;
    border-radius: 24px;
    background: #fff;
    font-family: Commissioner;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: .25px
}

.career__referral-photo-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    margin-bottom: 24px
}

.career__referral-photo-items img {
    width: calc(50% - 12px);
    max-width: 100%;
    border-radius: 16px
}

.career__referral-h2 {
    color: rgba(0, 0, 0, .87);
    font-size: 36px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: .25px;
    margin-bottom: 16px
}

.career__referral-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px
}

.career__referral-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px
}

.career__referral-item-count {
    border-radius: 28px;
    width: 32px;
    height: 32px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--primary-main, #2c60d1)
}

.career__referral-item-description {
    color: rgba(0, 0, 0, .87);
    font-size: 20px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: .15px
}

.vacancies__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 12px;
    margin-bottom: 44px
}

.vacancies__item {
    width: calc(50% - 12px);
    padding: 36px 36px 28px;
    border-radius: 16px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.vacancies__item-title {
    color: #2c60d1;
    font-size: 36px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: .25px;
    margin-bottom: 24px
}

.vacancies__item-elements {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 44px;
    -moz-column-gap: 44px;
    column-gap: 44px;
    row-gap: 24px;
    margin-bottom: 36px
}

.vacancies__item-elem {
    width: calc(50% - 22px)
}

.vacancies__item-elem-title {
    color: rgba(0, 0, 0, .32);
    font-size: 18px;
    font-family: Golos Text;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .25px;
    margin-bottom: 4px
}

.vacancies__item-elem-description {
    color: rgba(0, 0, 0, .87);
    font-size: 18px;
    font-family: Golos Text;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .25px
}

.vacancies__item-button {
    margin-top: auto;
    position: relative
}

.vacancies__item-banner {
    padding: 72px 36px;
    background: url(../img/career/banner-bg.svg) right bottom no-repeat, #fff;
    background-size: contain
}

.vacancies__item-banner-title {
    color: rgba(0, 0, 0, .87);
    font-size: 36px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: .25px;
    margin-bottom: 44px
}

.developer-box {
    margin-bottom: 88px
}

.developer-box__wrapper {
    border-radius: 24px;
    background: #fff;
    padding: 56px 64px 84px;
    color: rgba(0, 0, 0, .87);
    font-size: 20px;
    font-family: Golos Text;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px
}

.developer-box__wrapper p:not(:last-child) {
    margin-bottom: 30px
}

.developer-box__wrapper ul {
    margin-left: 20px
}

.developer-box__wrapper li {
    list-style: initial
}

.developer-box__wrapper li:not(:last-child) {
    margin-bottom: 10px
}

.developer-box__video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 65px
}

.developer-box__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0
}

.developer-box__spoller-title {
    color: rgba(0, 0, 0, .87);
    font-size: 28px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.developer-box__spoller-title:hover {
    opacity: .7
}

.developer-box__spoller-title.active::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.developer-box__spoller-title::after {
    content: "";
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    display: block;
    width: 25px;
    height: 25px;
    background: url(../img/career/icon-arrow.svg) no-repeat;
    background-size: contain;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.developer-box__spoller-body {
    display: none;
    margin-bottom: 40px
}

.developer-box__spoller-body.show {
    display: block !important
}

.contacts--developer .contacts__columns {
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px
}

.contacts--developer .contacts__column:nth-child(1) {
    max-width: 533px
}

.contacts--developer .contacts__column:nth-child(2) {
    max-width: 100%
}

.contacts--developer ol {
    counter-reset: myCounter
}

.contacts--developer li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    color: rgba(0, 0, 0, .87);
    font-size: 20px;
    font-family: Commissioner;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: .15px
}

.contacts--developer li:not(:last-child) {
    margin-bottom: 28px
}

.contacts--developer li:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    color: #fff;
    font-weight: 700;
    background: #2c60d1;
    display: inline-block;
    text-align: center;
    margin-right: 16px;
    line-height: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.tabs {
    margin-bottom: 24px
}

.tabs__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.tabs__title {
    cursor: pointer;
    -webkit-box-flex: 33.333%;
    -ms-flex: 33.333%;
    flex: 33.333%;
    padding: 6px 16px;
    color: #2c60d1;
    text-align: center;
    font-size: 20px;
    font-family: Golos Text;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px;
    border-radius: 24px
}

.tabs__title.active {
    background-color: #2c60d1;
    color: #fff
}

.tabs__body {
    margin: 20px 0
}

.buy-1s {
    margin-bottom: 88px
}

.buy-1s__content {
    margin-bottom: 24px
}

.buy-1s__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px
}

.buy-1s__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(33.333% - 16px);
    border-radius: 16px;
    background: var(--surface, #fff);
    padding: 28px 32px 18px
}

.buy-1s__item-image {
    margin-bottom: 36px
}

.buy-1s__item-image img {
    max-width: 100%
}

.buy-1s__item-title {
    color: rgba(0, 0, 0, .87);
    font-family: Commissioner;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 24px
}

.buy-1s__item-description {
    color: rgba(0, 0, 0, .87);
    font-family: Golos Text;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px;
    margin-bottom: 48px
}

.buy-1s__item-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.buy-1s__item-bottom-price {
    color: #2c60d1;
    font-family: Commissioner;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px
}

.itc-info__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px
}

.itc-info__item {
    width: calc(50% - 12px);
    padding: 32px 24px;
    text-align: center;
    border-radius: 16px;
    background: rgba(44, 96, 209, .06)
}

.itc-info__item-title {
    color: rgba(0, 0, 0, .87);
    font-family: Commissioner;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: .25px;
    margin-bottom: 12px
}

.itc-info__item-description {
    color: rgba(0, 0, 0, .87);
    font-family: Golos Text;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .25px
}

.itc-info__button {
    text-align: center
}

.itc-rate {
    margin-bottom: 88px
}

.itc-spoller__title {
    color: rgba(0, 0, 0, .87);
    font-family: Commissioner;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
    cursor: pointer
}

.itc-spoller__title::after {
    content: "";
    display: inline-block;
    height: 9px;
    width: 16px;
    margin-left: 16px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-mask-image: url(../img/arrow.svg);
    mask-image: url(../img/arrow.svg);
    background-color: #2c60d1
}

.itc-spoller__title.active::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.itc-spoller__title--mb0 {
    margin-bottom: 0
}

.itc-spoller__body {
    display: none
}

.itc-spoller__body.show {
    display: block !important;
    margin-bottom: 48px
}

.itc-spoller__table-info {
    color: rgba(0, 0, 0, .5);
    font-family: Commissioner;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: .15px;
    padding-bottom: 16px
}

.itc-spoller__table-title {
    color: rgba(0, 0, 0, .87);
    font-family: Commissioner;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: .15px;
    padding-top: 16px;
    padding-bottom: 8px
}

.itc-spoller__table-title:first-child {
    padding-left: 24px;
    border-radius: 16px 0 0 0
}

.itc-spoller__table-title:last-child {
    border-radius: 0 16px 0 0
}

.itc-spoller__table-title--fw {
    color: rgba(0, 0, 0, .87);
    font-family: Commissioner;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: .15px
}

.itc-spoller__table-body-left-el {
    padding: 32px 24px;
    max-width: 400px
}

.itc-spoller__table-body-left-el--w100 {
    max-width: 100%
}

.itc-spoller__box table {
    width: 100%;
    border-collapse: collapse
}

.itc-spoller__box thead {
    background: #fff
}

.itc-spoller__box tbody {
    color: rgba(0, 0, 0, .87);
    font-family: Golos Text;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px
}

.itc-spoller__box tbody tr:nth-child(even) {
    background: #fff
}

.itc-spoller__box .last-table tr td:nth-child(2) {
    padding: 32px 24px;
    max-width: 380px;
    vertical-align: top
}

.itc-spoller__box .last-table tr td:nth-child(3) {
    padding: 32px 24px;
    max-width: 380px;
    vertical-align: top
}

.itc-spoller__box tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px
}

.itc-spoller__box tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0
}

.itc-spoller__box .last-table tr:nth-child(2) td:first-child {
    border-radius: 16px 0 0 0
}

.itc-spoller__box .last-table tr:nth-child(2) td:last-child {
    border-radius: 0 16px 0 0
}

.itc-spoller__box .last-table a {
    color: #2c60d1;
    font-family: Golos Text;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px
}

.itc-spoller__box .last-table span {
    color: #2c60d1
}

.itc-spoller__box-button {
    display: none
}

.itc-mobile {
    display: none
}

.itc-mobile__select {
    position: relative;
    color: rgba(0, 0, 0, .87);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    max-width: 424px;
    background: #fff;
    border-radius: 8px;
    padding: 16px 12px;
    border: 2px solid transparent;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px
}

.itc-mobile__select:hover {
    cursor: pointer
}

.itc-mobile__select ul {
    display: none;
    position: absolute;
    top: 72px;
    left: 0
}

.itc-mobile__select.open {
    border: 2px solid #2c60d1
}

.itc-mobile__select.open .itc-mobile__select-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.itc-mobile__select.open .itc-mobile__select-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 8px 24px rgba(76, 86, 107, .24);
    box-shadow: 0 8px 24px rgba(76, 86, 107, .24);
    padding: 14px 16px;
    z-index: 10;
    border-radius: 16px
}

.itc-mobile__select-dropdown {
    max-height: 250px;
    overflow-y: scroll
}

.itc-mobile__select-dropdown-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.itc-mobile__select-dropdown-item:hover {
    color: rgba(102, 102, 102, .8705882353)
}

.itc-mobile__select-count {
    margin-left: auto
}

.itc-mobile__select-arrow {
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    width: 16px;
    height: 9px;
    -webkit-mask-image: url(../img/buy-1s/arrow.svg);
    mask-image: url(../img/buy-1s/arrow.svg);
    background-color: #2c60d1
}

.itc-mobile__body-box.hide {
    display: none
}

.itc-mobile__body-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 16px;
    background: #fff;
    padding: 12px;
    gap: 16px;
    margin-bottom: 20px
}

.itc-mobile__body-column {
    font-family: Golos Text;
    color: rgba(0, 0, 0, .8);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: .16px;
    width: calc(50% - 13px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.itc-mobile__body-column:first-child {
    color: rgba(0, 0, 0, .5)
}

.itc-mobile__body-column-text {
    height: 20px
}

.header__logo-image {
    width: 250px;
}

.extension__price-table {
    width: 100%;
    border-collapse: collapse;
}

.itc-spoller__box thead {
    background: #fff;
}

.itc-spoller__box tbody {
    color: rgba(0, 0, 0, .87);
    font-family: Golos Text;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .5px;
}
.itc-spoller__box::after {
    content: '';
    display: block;
    margin-top: 20px;
}
.mobile-price-container {
    display: none;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    font-family: Golos Text;
}

.mobile-price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.16px;
}

.mobile-price-row:last-child {
    border-bottom: none;
}

.mobile-price-description {
    color: rgba(0, 0, 0, 0.8);
}

.mobile-price-value {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/*@media (max-width: 999px) {
    .price-table-wrapper {
        display: none;
    }
    .mobile-price-container {
        display: block;
    }
}*/

.header__logo .iso_logo {
    width: 250px;
}

@media (min-width: 1000px) {
    .price-table-wrapper {
        display: block;
    }
    .mobile-price-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .integration__item {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

@media (min-width: 769px) {
    .header__nav.mouse .header__menu-item:hover .header__touch-arrow {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg)
    }
}

@media (max-width: 14000px) {
    .about__name {
        font-size: calc(16px + 4 * (100vw - 768px) / 632);
        line-height: calc(24px + 8 * (100vw - 768px) / 632)
    }
}

@media (max-width: 1500px) {
    .hero__animation-left {
        width: 50vw
    }

    .hero__animation-right {
        width: 45vw;
        top: -130px;
        right: -282px
    }
}

@media (max-width: 1400px) {

    .header__logo {
        margin-right: 25px
    }

    .header__menu-items {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        font-size: 19px
    }

    .header__contacts {
        margin-left: 25px;
        font-size: 18px
    }

    .title--clients {
        font-size: calc(24px + 12 * (100vw - 768px) / 632) !important;
        line-height: calc(32px + 16 * (100vw - 768px) / 632) !important
    }

    .competencies__item-top-avatar {
        width: 64px;
        height: 64px
    }

    .competencies__item-top-name {
        font-size: clamp(16px, 2vw, 20px);
        line-height: clamp(24px, 2vw, 32px)
    }

    .competencies__item-top-job {
        font-size: clamp(18px, 2vw, 24px);
        line-height: clamp(24px, 2vw, 32px)
    }

    .blog__select-dropdown {
        -webkit-column-gap: calc(10px + 46 * (100vw - 768px) / 682);
        -moz-column-gap: calc(10px + 46 * (100vw - 768px) / 682);
        column-gap: calc(10px + 46 * (100vw - 768px) / 682)
    }

    .blog__select-dropdown-item {
        font-size: calc(16px + 4 * (100vw - 768px) / 632);
        line-height: calc(24px + 8 * (100vw - 768px) / 632)
    }

    .blog__item-title {
        font-size: calc(18px + 10 * (100vw - 768px) / 632);
        line-height: calc(24px + 12 * (100vw - 768px) / 632)
    }

    .blog-page__slider-item-title {
        font-size: calc(18px + 10 * (100vw - 768px) / 632);
        line-height: calc(24px + 12 * (100vw - 768px) / 632)
    }

    .about__title {
        font-size: calc(28px + 23 * (100vw - 768px) / 632);
        line-height: calc(36px + 20 * (100vw - 768px) / 632)
    }

    .about__text p {
        font-size: calc(16px + 4 * (100vw - 768px) / 632);
        line-height: calc(24px + 8 * (100vw - 768px) / 632)
    }

    .about__avatar {
        width: calc(100px + 120 * (100vw - 768px) / 632)
    }

    .about__job {
        font-size: calc(18px + 6 * (100vw - 768px) / 632);
        line-height: calc(24px + 8 * (100vw - 768px) / 632)
    }

    .about-box__inner {
        font-size: calc(18px + 10 * (100vw - 768px) / 632);
        line-height: calc(24px + 12 * (100vw - 768px) / 632)
    }
}

@media (max-width: 1300px) {
    .header__logo-image {
        width: 220px;
    }

    .header__logo .iso_logo {
        width: 220px;
    }

    .header__nav {
        width: 100%;
        margin-left: 0
    }

    .header__menu {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .header__menu-items {
        font-size: 17px;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px
    }

    .header__menu-dropdown {
        font-size: 17px
    }

    .footer__logo {
        width: 220px
    }

    .footer__description {
        font-size: 19px
    }

    .footer__menu-link {
        font-size: 19px
    }

    .btn {
        font-size: 19px
    }

    main {
        margin-top: calc(80px + 20 * (100vw - 768px) / 532)
    }

    .contacts__title {
        font-size: calc(24px + 12 * (100vw - 768px) / 532);
        line-height: calc(32px + 16 * (100vw - 768px) / 532)
    }

    .escort-support__title--itc {
        font-size: calc(24px + 27 * (100vw - 768px) / 532);
        line-height: calc(32px + 26 * (100vw - 768px) / 532);
        margin-bottom: calc(24px + 16 * (100vw - 768px) / 532)
    }

    .price table thead th {
        font-size: 18px;
        line-height: 22px
    }

    .about__title {
        margin-bottom: calc(16px + 32 * (100vw - 768px) / 532)
    }

    .about__h2 {
        font-size: calc(24px + 12 * (100vw - 768px) / 532);
        line-height: calc(32px + 16 * (100vw - 768px) / 532);
        margin-bottom: calc(16px + 4 * (100vw - 768px) / 532)
    }

    .about__item-description {
        font-size: calc(18px + 6 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532)
    }

    .about__chat-item {
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532)
    }

    .about-box__wrapper--columns {
        padding: calc(40px + 23 * (100vw - 768px) / 532) calc(16px + 122 * (100vw - 768px) / 532)
    }

    .about-box__text {
        font-size: calc(18px + 10 * (100vw - 768px) / 532);
        line-height: calc(24px + 12 * (100vw - 768px) / 532)
    }

    .career__title {
        font-size: calc(28px + 23 * (100vw - 768px) / 532);
        line-height: calc(36px + 22 * (100vw - 768px) / 532);
        margin-bottom: calc(12px + 12 * (100vw - 768px) / 532)
    }

    .career__description {
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532);
        margin-bottom: calc(16px + 28 * (100vw - 768px) / 532)
    }

    .career__info {
        margin-bottom: calc(16px + 8 * (100vw - 768px) / 532);
        padding: calc(20px + 24 * (100vw - 768px) / 532) calc(20px + 44 * (100vw - 768px) / 532) calc(20px + 36 * (100vw - 768px) / 532)
    }

    .career__info-title {
        font-size: calc(18px + 10 * (100vw - 768px) / 532);
        line-height: calc(24px + 12 * (100vw - 768px) / 532);
        margin-bottom: calc(16px + 8 * (100vw - 768px) / 532)
    }

    .career__info-description {
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532)
    }

    .career__photo {
        margin-bottom: calc(16px + 8 * (100vw - 768px) / 532)
    }

    .career__photo--bottom {
        margin-bottom: calc(44px + 44 * (100vw - 768px) / 532)
    }

    .career__items {
        -webkit-column-gap: calc(12px + 16 * (100vw - 768px) / 532);
        -moz-column-gap: calc(12px + 16 * (100vw - 768px) / 532);
        column-gap: calc(12px + 16 * (100vw - 768px) / 532);
        row-gap: calc(12px + 12 * (100vw - 768px) / 532);
        margin-bottom: calc(16px + 8 * (100vw - 768px) / 532)
    }

    .career__item {
        padding: calc(20px + 12 * (100vw - 768px) / 532)
    }

    .career__item-icon-img {
        width: calc(36px + 16 * (100vw - 768px) / 532);
        height: calc(36px + 16 * (100vw - 768px) / 532)
    }

    .career__item-title {
        font-size: calc(18px + 6 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532)
    }

    .career__item-description {
        font-size: calc(14px + 4 * (100vw - 768px) / 532);
        line-height: calc(20px + 4 * (100vw - 768px) / 532)
    }

    .career__referral-wrapper {
        padding: calc(24px + 32 * (100vw - 768px) / 532) calc(16px + 48 * (100vw - 768px) / 532);
        margin-bottom: calc(44px + 44 * (100vw - 768px) / 532)
    }

    .career__referral-wrapper p {
        margin-bottom: calc(36px + 8 * (100vw - 768px) / 532);
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532)
    }

    .career__referral-wrapper-top {
        padding: calc(24px + 32 * (100vw - 768px) / 532) calc(16px + 48 * (100vw - 768px) / 532);
        margin-bottom: calc(16px + 8 * (100vw - 768px) / 532);
        font-size: calc(18px + 6 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532);
        letter-spacing: calc(.15px + .1 * (100vw - 768px) / 532)
    }

    .career__referral-h2 {
        font-size: calc(24px + 12 * (100vw - 768px) / 532);
        line-height: calc(32px + 16 * (100vw - 768px) / 532);
        margin-bottom: calc(12px + 4 * (100vw - 768px) / 532)
    }

    .career__referral-item-count {
        width: calc(24px + 8 * (100vw - 768px) / 532);
        height: calc(24px + 8 * (100vw - 768px) / 532)
    }

    .career__referral-item-description {
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(24px + 4 * (100vw - 768px) / 532)
    }

    .vacancies__item {
        padding: calc(16px + 20 * (100vw - 768px) / 532) calc(16px + 20 * (100vw - 768px) / 532) calc(20px + 8 * (100vw - 768px) / 532)
    }

    .vacancies__item-title {
        font-size: calc(24px + 12 * (100vw - 768px) / 532);
        line-height: calc(32px + 16 * (100vw - 768px) / 532)
    }

    .vacancies__item-elem-title {
        font-size: calc(14px + 4 * (100vw - 768px) / 532);
        line-height: calc(20px + 4 * (100vw - 768px) / 532)
    }

    .vacancies__item-elem-description {
        font-size: calc(14px + 4 * (100vw - 768px) / 532);
        line-height: calc(20px + 4 * (100vw - 768px) / 532)
    }

    .developer-box {
        margin-bottom: calc(44px + 44 * (100vw - 768px) / 532)
    }

    .developer-box__wrapper {
        padding: calc(24px + 32 * (100vw - 768px) / 532) calc(16px + 48 * (100vw - 768px) / 532) calc(24px + 60 * (100vw - 768px) / 532);
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532)
    }

    .developer-box__wrapper p:not(:last-child) {
        margin-bottom: calc(15px + 15 * (100vw - 768px) / 532)
    }

    .developer-box__video {
        margin-bottom: calc(36px + 29 * (100vw - 768px) / 532)
    }

    .developer-box__spoller-title {
        font-size: calc(18px + 10 * (100vw - 768px) / 532);
        line-height: calc(24px + 12 * (100vw - 768px) / 532)
    }

    .developer-box__spoller-title::after {
        width: calc(16px + 9 * (100vw - 768px) / 532);
        height: calc(16px + 9 * (100vw - 768px) / 532)
    }

    .contacts--developer li {
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(24px + 4 * (100vw - 768px) / 532)
    }

    .contacts--developer li:not(:last-child) {
        margin-bottom: calc(16px + 12 * (100vw - 768px) / 532)
    }

    .tabs__title {
        font-size: calc(16px + 4 * (100vw - 768px) / 532)
    }

    .buy-1s__item-title {
        font-size: calc(24px + 4 * (100vw - 768px) / 532);
        line-height: calc(32px + 4 * (100vw - 768px) / 532)
    }

    .buy-1s__item-description {
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532)
    }

    .buy-1s__item-bottom-price {
        font-size: calc(24px + 4 * (100vw - 768px) / 532);
        line-height: calc(32px + 4 * (100vw - 768px) / 532)
    }

    .itc-info {
        margin-bottom: calc(56px + 32 * (100vw - 768px) / 532)
    }

    .itc-info__items {
        margin-bottom: calc(24px + 16 * (100vw - 768px) / 532);
        gap: calc(16px + 8 * (100vw - 768px) / 532)
    }

    .itc-info__item {
        padding: calc(20px + 12 * (100vw - 768px) / 532) calc(20px + 4 * (100vw - 768px) / 532)
    }

    .itc-info__item-title {
        margin-bottom: calc(5px + 7 * (100vw - 768px) / 532);
        font-size: calc(18px + 6 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532)
    }

    .itc-info__item-description {
        font-size: calc(16px + 2 * (100vw - 768px) / 532)
    }

    .itc-rate {
        margin-bottom: calc(56px + 32 * (100vw - 768px) / 532)
    }

    .itc-spoller__title {
        font-size: calc(18px + 10 * (100vw - 768px) / 532);
        line-height: calc(24px + 12 * (100vw - 768px) / 532)
    }

    .itc-spoller__table-title {
        font-size: calc(17px + 3 * (100vw - 768px) / 532)
    }

    .itc-spoller__box tbody {
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(25px + 7 * (100vw - 768px) / 532)
    }

    .itc-mobile__select {
        font-size: calc(16px + 4 * (100vw - 768px) / 532);
        line-height: calc(24px + 8 * (100vw - 768px) / 532)
    }
}

@media (max-width: 1200px) {
    .header__menu-items {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px
    }

    .footer__menu {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px
    }

    .footer__menu-link {
        font-size: 17px
    }

    .btn {
        font-size: 18px
    }

    .hero__item-title {
        font-size: clamp(16px, 2vw, 24px)
    }

    .hero__item-description {
        font-size: clamp(16px, 1vw, 18px)
    }

    .services__title {
        font-size: clamp(18px, 2vw, 24px);
        line-height: clamp(24px, 2vw, 32px)
    }

    .services__description {
        font-size: clamp(14px, 2vw, 18px);
        line-height: clamp(20px, 2vw, 24px)
    }

    .cases__top-category {
        font-size: clamp(14px, 2vw, 18px);
        line-height: clamp(20px, 2vw, 24px)
    }

    .cases__top-label {
        font-size: clamp(16px, 2vw, 20px);
        line-height: clamp(24px, 2vw, 32px)
    }

    .cases__content-title {
        font-size: clamp(24px, 2vw, 36px);
        line-height: clamp(32px, 2vw, 44px)
    }

    .cases__content-description {
        font-size: clamp(16px, 2vw, 20px);
        line-height: clamp(24px, 2vw, 32px)
    }

    .why__title {
        font-size: clamp(18px, 2vw, 24px);
        line-height: clamp(24px, 2vw, 32px)
    }

    .contacts__form-bottom {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .contacts__email-link {
        font-size: clamp(28px, 4vw, 51px);
        line-height: clamp(36px, 4vw, 56px)
    }

    .contacts__phone-link {
        font-size: clamp(28px, 4vw, 51px);
        line-height: clamp(36px, 4vw, 56px)
    }

    .price__table-col-0 {
        width: 300px
    }

    .price table tbody td {
        font-size: 19px
    }
}

@media (max-width: 1100px) {
    .header__logo-image {
        width: 160px;
    }

    .header__logo .iso_logo {
        width: 160px;
    }

    .header__button {
        margin-left: 0
    }

    .footer__logo {
        width: 200px
    }

    .footer__description {
        font-size: 17px
    }

    .btn {
        font-size: 17px
    }

    .title {
        font-size: clamp(28px, 5vw, 51px);
        line-height: clamp(36px, 5vw, 56px)
    }

    .hero__title {
        font-size: clamp(32px, 8vw, 94px);
        line-height: clamp(36px, 8vw, 96px)
    }

    .hero__description {
        font-size: clamp(16px, 2vw, 20px)
    }

    .hero__item {
        padding: 20px 15px
    }

    .hero__animation-left {
        width: 55vw;
        left: -35vw;
        top: -20vw
    }

    .hero__animation-right {
        width: 50vw;
        right: -30vw;
        top: -15vw
    }

    .project-evaluation__title {
        font-size: clamp(24px, 3vw, 36px);
        line-height: clamp(32px, 3vw, 44px)
    }

    .project-evaluation__description {
        font-size: clamp(16px, 1vw, 20px);
        line-height: clamp(24px, 2vw, 32px)
    }

    .cases-content__title {
        font-size: clamp(28px, 5vw, 51px);
        line-height: clamp(36px, 5vw, 56px)
    }

    .price__num-price {
        font-size: 17px
    }

    .price table thead th {
        font-size: 17px
    }

    .price table tbody td {
        font-size: 17px
    }

    .blog-content__title {
        font-size: clamp(28px, 5vw, 51px);
        line-height: clamp(36px, 5vw, 56px)
    }
}

@media (max-width: 1024px) {
    .contacts--developer .contacts__column:nth-child(1) {
        max-width: 50%
    }

    .header__menu-items {
        column-gap: 20px !important;
    }

    .header__logo-image {
        width: 150px;
    }

    .header__logo .iso_logo {
        width: 150px;
    }
}

@media (max-width: 1000px) {
    .header {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: static;
        padding: 0
    }

    .header__logo {
        width: 100%;
        padding: 16px 0;
        z-index: 1000;
        background: #eef1f6
    }
    .header__logo .iso_logo {
        display: none
    }

    .header__logo-image {
        width: 181px;
    }

    .header__menu-dropdown {
        font-size: 16px
    }

    .btn {
        font-size: 16px
    }

    .header__nav .header__menu-dropdown.active {
        margin-top: 15px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
        top: 0;
        border-radius: 0;
        background: 0 0;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        width: 100%
    }

    .header__nav .header__menu-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .header__nav {
        padding: 10px 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        position: absolute;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        top: -2000px;
        left: 0;
        width: 100%;
        height: calc(var(--vh, 1vh) * 100 - 70px);
        overflow-y: scroll;
        overflow-x: hidden;
        background: #eef1f6;
        -webkit-transition: top .4s;
        -o-transition: top .4s;
        transition: top .4s
    }

    .header__menu {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 40px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .header__menu-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px
    }

    .header__menu-dropdown {
        display: none
    }

    .header__contacts {
        display: block;
        margin-left: 0;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 25px
    }

    .header__phone {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .header__phone-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 10px;
        font-weight: 500
    }

    .header__email {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        font-size: 16px;
        line-height: 18px
    }

    .header__email-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .header__button {
        display: block;
        margin-left: 0;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: auto;
        margin-bottom: 16px
    }

    .burger {
        display: block;
        margin-right: 10px
    }

    .aw-footer__columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 28px;
        padding: 0;
        border-bottom: none
    }

    .footer__column {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .footer__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        max-width: 300px
    }

    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .footer__bottom-policy {
        margin-left: 0
    }

    .btn-light {
        font-size: 16px;
        line-height: 20px
    }

    .title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 24px;
        text-align: center
    }

    .title--clients {
        font-size: 24px !important;
        line-height: 32px !important
    }

    .btn-up {
        width: 50px;
        height: 50px;
    }

    .container {
        padding: 0 16px
    }

    .container-min {
        padding: 0 16px
    }

    main {
        margin-top: 80px
    }

    .hero {
        margin-top: 12px;
        margin-bottom: 56px
    }

    .hero__title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 16px
    }

    .hero__description {
        font-size: 16px;
        line-height: 24px;
        max-width: 240px;
        margin-bottom: 24px
    }

    .hero__button {
        margin-bottom: 0
    }

    .hero__btn {
        padding: 10px 24px 14px;
        font-family: Commissioner;
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .hero__items {
        display: none
    }

    .hero__animation-left {
        width: 65vw;
        left: -45vw;
        top: -12vw
    }

    .hero__animation-right {
        width: 55vw;
        right: -30vw;
        top: -15px
    }

    .trust {
        margin-bottom: 56px
    }

    .trust__items {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr);
        margin-bottom: 35px
    }

    .trust__item:nth-child(1) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(4) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(5) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(8) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(9) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(12) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(13) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(16) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(17) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(20) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(21) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__item:nth-child(24) {
        -ms-grid-column-align: center;
        justify-self: center
    }

    .trust__image {
        max-width: 110px
    }

    .trust__description {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .trust__info {
        font-size: 18px;
        line-height: 24px
    }

    .services {
        margin-bottom: 56px
    }

    .services__item {
        width: 100%
    }

    .services__icon {
        text-align: center;
        margin-bottom: 12px
    }

    .services__title {
        margin-bottom: 8px;
        text-align: center
    }

    .services__description {
        text-align: center;
        margin-bottom: 24px
    }

    .services__button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .project-evaluation {
        margin-bottom: 56px
    }

    .project-evaluation--mb44 {
        margin-bottom: 44px
    }

    .project-evaluation__wrapper {
        padding: 36px 16px
    }

    .project-evaluation__wrapper::before {
        left: -215px;
        top: -175px;
        display: block;
        width: 375px;
        height: 931px
    }

    .project-evaluation__wrapper::after {
        content: none
    }

    .project-evaluation__columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .project-evaluation__column {
        text-align: center
    }

    .project-evaluation__description--itc {
        text-align: left
    }

    .project-evaluation__inner {
        font-size: 18px;
        line-height: 24px
    }

    .project-evaluation__btn {
        font-size: 20px;
        line-height: 24px;
        padding: 10px 24px 12px
    }

    .cases {
        margin-bottom: 56px
    }

    .cases__title {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 36px
    }

    .cases__items {
        margin-bottom: 24px;
        gap: 16px
    }

    .cases__item {
        width: 100%;
        padding: 20px
    }

    .cases__top {
        margin-bottom: 24px
    }

    .cases__top-icon {
        margin-right: 13px
    }

    .cases__content-title {
        margin-bottom: 16px;
        text-align: center;
        max-width: 100%
    }

    .cases__content-time {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cases__content-description {
        margin-bottom: 28px;
        text-align: center
    }

    .cases__button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cases-content {
        margin-bottom: 56px
    }

    .cases-content__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 26px
    }

    .cases-content__category {
        margin-bottom: 24px
    }

    .cases-content__category-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 28px
    }

    .cases-content__category-item {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-column-gap: 13px;
        -moz-column-gap: 13px;
        column-gap: 13px
    }

    .cases-content__category-item-icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 23px;
        flex: 0 0 23px
    }

    .cases-content__category-item-title {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .cases-content__category-item-title--last {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .cases-content__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 16px;
        margin-bottom: 24px
    }

    .cases-content__item {
        padding: 16px
    }

    .cases-content__item-title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .cases-content__item-description {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .cases-content__topimage {
        margin-bottom: 24px
    }

    .cases-content__inner {
        padding: 12px 16px
    }

    .cases-content__inner h1 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px
    }

    .cases-content__inner p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .cases-content__inner h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px
    }

    .cases-content__inner h3 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px;
        margin-bottom: 8px
    }

    .cases-content__inner ul {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px;
        margin-left: 20px
    }

    .cases-content__image {
        margin-bottom: 24px
    }

    .cases-content__image-description {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: .4px
    }

    .cases-content__box {
        padding: 0 0 0 16px;
        margin-bottom: 38px
    }

    .cases-content__box p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .cases-content__box-more-name {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .cases-content__box-more-job {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .why {
        margin-bottom: 56px
    }

    .why__items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .why__item {
        width: calc(50% - 32px);
    }

    .why__icon {
        margin-bottom: 12px
    }

    .why__title {
        max-width: 200px
    }

    .mass-media {
        margin-bottom: 56px
    }

    .mass-media__logo {
        margin-bottom: 20px
    }

    .mass-media__description {
        font-size: clamp(18px, 2vw, 24px);
        line-height: clamp(24px, 2vw, 32px)
    }

    .contacts {
        margin-bottom: 56px
    }

    .contacts__columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .contacts__column:nth-child(1) {
        max-width: 100%
    }

    .contacts__column:nth-child(2) {
        max-width: 100%
    }

    .contacts__title {
        font-size: 24px;
        line-height: 32px
    }

    .contacts__title--right {
        margin-bottom: 28px
    }

    .contacts__form-input {
        padding: 12px;
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .contacts__form-input:nth-child(1) {
        width: 100%
    }

    .contacts__form-input:nth-child(2) {
        width: 100%
    }

    .contacts__form-textarea {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .contacts__form-file {
        text-align: center;
        margin-bottom: 20px
    }

    .contacts__form-file-label span {
        font-family: Commissioner;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: .16px;
        color: #2c60d1
    }

    .contacts__form-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px
    }

    .contacts__form-btn {
        margin-bottom: 0
    }

    .contacts__form-description {
        text-align: center
    }

    .contacts__email {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .contacts__email-link::before {
        width: 38px;
        height: 26px
    }

    .contacts__phone {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .contacts__phone-link::before {
        width: 36px;
        height: 36px
    }

    .breadcrumbs {
        margin-top: 0;
        margin-bottom: 24px
    }

    .gain {
        margin-bottom: 56px
    }

    .gain__title {
        max-width: 345px;
        margin: 0 auto;
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 36px
    }

    .gain__sub-title {
        margin-bottom: 24px;
        font-size: 18px;
        line-height: 24px
    }

    .gain__button {
        margin-bottom: 60px
    }

    .gain__btn {
        font-family: Commissioner;
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .gain__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 24px
    }

    .gain__item-icon {
        margin-bottom: 12px
    }

    .gain__item-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 0
    }

    .gain__item-description {
        display: none
    }

    .fits {
        margin-bottom: 56px
    }

    .fits__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 16px
    }

    .fits__item {
        padding: 16px 16px 20px;
        align-items: center;
        justify-content: center;
    }

    .fits__item-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 4px
    }

    .fits__item-description {
        font-size: 14px;
        line-height: 20px
    }

    .how-working {
        margin-bottom: 56px
    }

    .how-working__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        row-gap: 24px
    }

    .how-working__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .how-working__item-count {
        width: 44px;
        height: 44px;
        font-size: 24px;
        margin-bottom: 8px
    }

    .how-working__item-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 8px
    }

    .how-working__item-description {
        font-size: 14px;
        line-height: 20px;
        max-width: 350px
    }

    .how-working__bottom-bracket {
        margin-bottom: 0
    }

    .how-working__bottom-price {
        font-size: 24px;
        line-height: 32px;
        padding: 12px 16px 16px
    }

    .competencies {
        margin-bottom: 56px
    }

    .competencies__items {
        margin-bottom: 24px
    }

    .competencies__item-top {
        margin-bottom: 18px
    }

    .competencies__item-top-name {
        font-size: 16px;
        line-height: 24px
    }

    .competencies__item-top-job {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .competencies__item-content-title {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .competencies__item-content-description {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: .16px;
        color: rgba(0, 0, 0, .87)
    }

    .customization {
        margin-bottom: 56px
    }

    .customization_item-title {
        font-size: 18px;
        line-height: 24px
    }

    .customization_item-description {
        font-size: 14px;
        line-height: 20px
    }

    .customization__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 16px
    }

    .customization__subtitle {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px
    }

    .customization__btn {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: .16px;
        margin-bottom: 56px
    }

    .customization__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 16px
    }

    .customization__item {
        padding: 20px
    }

    .compound {
        margin-bottom: 56px
    }

    .compound__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 8px
    }

    .compound__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding: 20px 20px 24px
    }

    .compound__item-icon {
        margin-bottom: 10px
    }

    .compound__item-title {
        font-size: 18px;
        line-height: 24px
    }

    .compound__item-description {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        max-width: 400px
    }

    .escort-support {
        margin-bottom: 56px
    }

    .escort-support--itc {
        margin-bottom: 0
    }

    .escort-support__title {
        font-size: 28px;
        line-height: 36px
    }

    .escort-support__title--itc {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px
    }

    .escort-support__sub-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px
    }

    .escort-support__button {
        margin-bottom: 56px
    }

    .escort-support__btn {
        font-size: 20px;
        line-height: 24px
    }

    .escort-support__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }

    .escort-support__item {
        padding: 20px
    }

    .escort-support__item-title {
        font-size: 16px;
        line-height: 24px
    }

    .implementation {
        margin-bottom: 56px
    }

    .implementation__title {
        font-size: 28px;
        line-height: 36px
    }

    .implementation__sub-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px
    }

    .implementation__button {
        margin-bottom: 56px
    }

    .implementation__btn {
        font-size: 20px;
        line-height: 24px
    }

    .implementation__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }

    .implementation__item {
        padding: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .implementation__item-title {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .stages {
        margin-bottom: 56px
    }

    .stages__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px
    }

    .stages__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .stages__item-count {
        margin-bottom: 8px;
        font-size: 24px;
        width: 44px;
        height: 44px
    }

    .stages__item-title {
        text-align: center;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 8px
    }

    .stages__item-description {
        text-align: center;
        font-size: 14px;
        line-height: 20px;
        max-width: 450px
    }

    .grade {
        margin-bottom: 56px
    }

    .grade__wrapper {
        padding: 24px 16px 28px
    }

    .grade__head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .grade__head-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .grade__head-title {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        font-family: Commissioner;
        font-style: normal;
        font-weight: 500;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        color: rgba(0, 0, 0, .87)
    }

    .grade__head-button {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .grade__head-description {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-bottom: 0;
        font-family: "Golos Text";
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px;
        color: rgba(0, 0, 0, .87);
        text-align: center
    }

    .grade__content {
        display: none
    }

    .grade__bottom {
        display: none
    }

    .price {
        margin-bottom: 56px
    }

    .price__filter {
        display: block
    }

    .price__filter select {
        padding: 20px
    }

    .price__table.show-1 .price__table-col-1 {
        display: block !important
    }

    .price__table.show-2 .price__table-col-2 {
        display: block !important
    }

    .price__table.show-3 .price__table-col-3 {
        display: block !important
    }

    .price__table.show-4 .price__table-col-4 {
        display: block !important
    }

    .price__table-col-0 {
        font-family: "Golos Text" !important;
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        letter-spacing: .16px !important;
        color: rgba(0, 0, 0, .5) !important;
        padding-left: 12px !important;
        width: 55% !important
    }

    .price__table-col-1 {
        font-family: "Golos Text" !important;
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        letter-spacing: .16px !important;
        color: rgba(0, 0, 0, .87) !important;
        width: 40% !important;
        max-width: 100% !important;
        display: none !important
    }

    .price__table-col-1.show {
        display: block
    }

    .price__table-col-2 {
        font-family: "Golos Text" !important;
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        letter-spacing: .16px !important;
        color: rgba(0, 0, 0, .87) !important;
        display: none !important;
        width: 40% !important;
        max-width: 100% !important
    }

    .price__table-col-3 {
        font-family: "Golos Text" !important;
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        letter-spacing: .16px !important;
        color: rgba(0, 0, 0, .87) !important;
        display: none !important;
        width: 40% !important;
        max-width: 100% !important
    }

    .price__table-col-4 {
        font-family: "Golos Text" !important;
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        letter-spacing: .16px !important;
        color: rgba(0, 0, 0, .87) !important;
        display: none !important;
        width: 40% !important;
        max-width: 100% !important
    }

    .price__num-price {
        font-size: 16px;
        line-height: 24px
    }

    .price .list-items .item.check {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .price .list-items .item.check::after {
        content: "";
        background: url(../img/check.svg) center center no-repeat;
        width: 17px;
        height: 13px
    }

    .price table tbody tr:first-child {
        border-radius: 16px 16px 0 0
    }

    .price table tbody tr:last-child {
        border-radius: 0 0 16px 16px
    }

    .price table tbody tr:nth-child(even) {
        background: #fff
    }

    .price table tbody td:first-child {
        padding-right: 10px
    }

    .price table tbody td {
        padding: 12px 0;
        height: auto
    }

    .price table tbody tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 40px
    }

    .price table table, .price table tbody, .price table td, .price table tr {
        display: block
    }

    .price table thead {
        display: none
    }

    .price table td {
        border-color: #ccc;
        border-width: 0 0 1px 0;
        overflow: hidden
    }

    .price table td:before {
        float: left;
        width: 50%;
        background-color: #e7e7e7;
        margin: -10px 10px -10px -10px;
        padding: 10px 0 10px 10px
    }

    .blog {
        margin-bottom: 56px
    }

    .blog__title {
        margin-bottom: 16px
    }

    .blog__filter {
        margin-bottom: 16px
    }

    .blog__select {
        background: #fff;
        border-radius: 8px;
        padding: 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .blog__select.open .blog__select-dropdown {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 10
    }

    .blog__select.open .blog__select-arrow {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    .blog__select-text {
        display: block
    }

    .blog__select-arrow {
        display: block
    }

    .blog__select-dropdown {
        display: none;
        position: absolute;
        top: 52px;
        left: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
        background: #fff;
        -webkit-box-shadow: 0 8px 24px rgba(76, 86, 107, .24);
        box-shadow: 0 8px 24px rgba(76, 86, 107, .24);
        padding: 14px 16px
    }

    .blog__select-dropdown-item.active {
        background-color: transparent;
        border-radius: 0;
        padding: 0;
        color: rgba(0, 0, 0, .87);
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .blog__select-dropdown-item.active::after {
        content: "";
        display: inline-block;
        width: 18px;
        height: 17px;
        background: url(../img/blog/arrow-check.svg) center center no-repeat
    }

    .blog__select-dropdown-item {
        color: rgba(0, 0, 0, .87);
        font-size: 16px;
        line-height: 24px
    }

    .blog__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 24px
    }

    .blog__item {
        width: 100%;
        min-height: 188px;
        padding: 20px
    }

    .blog__item-title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .blog__item-readmore-link::after {
        width: 16px;
        height: 14px;
        background-size: contain
    }

    .blog__item-readmore-link {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .blog-content {
        margin-bottom: 56px
    }

    .blog-content__company img {
        max-width: 100px
    }

    .blog-content__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 26px
    }

    .blog-content__category {
        margin-bottom: 24px
    }

    .blog-content__category-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 28px
    }

    .blog-content__category-item {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-column-gap: 13px;
        -moz-column-gap: 13px;
        column-gap: 13px
    }

    .blog-content__category-item-icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 23px;
        flex: 0 0 23px
    }

    .blog-content__category-item-title {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .blog-content__category-item-title--last {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .blog-content__list-title {
        font-size: 24px;
        line-height: 32px
    }

    .blog-content__list-items {
        margin-bottom: 40px;
        row-gap: 12px
    }

    .blog-content__list-item {
        -webkit-column-gap: 7px;
        -moz-column-gap: 7px;
        column-gap: 7px
    }

    .blog-content__list-item-link {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .blog-content__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 16px;
        margin-bottom: 24px
    }

    .blog-content__item {
        padding: 16px
    }

    .blog-content__item-title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .blog-content__item-description {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .blog-content__topimage {
        display: block;
        margin-bottom: 24px
    }

    .blog-content__inner {
        padding: 12px 16px
    }

    .blog-content__inner h1 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px
    }

    .blog-content__inner p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .blog-content__inner h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px
    }

    .blog-content__inner h3 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px;
        margin-bottom: 8px
    }

    .blog-content__inner ul {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px;
        margin-left: 20px
    }

    .blog-content__image {
        margin-bottom: 24px
    }

    .blog-content__image-description {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: .4px
    }

    .blog-content__box {
        padding: 0 0 0 16px;
        margin-bottom: 38px
    }

    .blog-content__box p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .blog-content__box-more-name {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .blog-content__box-more-job {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .blog-page__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 16px
    }

    .blog-page__slider-item {
        padding: 20px;
        min-height: 212px
    }

    .blog-page__slider-item-title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .blog-page__slider-item-readmore-link {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .blog-page__slider-item-readmore-link::after {
        width: 16px;
        height: 14px
    }

    .blog-page__slider-item-readmore-link {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .widget-reviews {
        margin-bottom: 56px
    }

    .widget-reviews__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 24px
    }

    .widget-reviews__item {
        width: 100%;
        min-height: auto
    }

    .widget-reviews__item-description {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .widget-reviews__item-readmore {
        margin-bottom: 14px
    }

    .widget-reviews__item-readmore-link::after {
        width: 16px;
        height: 14px
    }

    .widget-reviews__item-readmore-link {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .widget-reviews__item-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 16px;
        padding-top: 16px
    }

    .widget-reviews__slider-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .contact-details {
        margin-bottom: 60px
    }

    .contact-details__title {
        margin-bottom: 16px
    }

    .contact-details__description {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px;
        margin-bottom: 17px
    }

    .contact-details__map {
        display: none
    }

    .contact-details__addres {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .about {
        margin-bottom: 56px
    }

    .about__wrapper {
        padding: 12px 20px 16px 20px
    }

    .about__wrapper--bottom {
        background: #fff
    }

    .about__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 16px
    }

    .about__h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px
    }

    .about__columns {
        grid-template-areas:"column-two" "title" "column-one";
        -ms-grid-columns: auto auto;
        grid-template-columns:auto auto
    }

    .about__text p {
        font-size: 16px;
        line-height: 24px
    }

    .about__text p:not(:last-child) {
        margin-bottom: 10px
    }

    .about__info-columns {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
        margin-bottom: 16px
    }

    .about__avatar {
        width: 100px;
        margin-bottom: 0
    }

    .about__name {
        font-size: 16px;
        line-height: 24px
    }

    .about__job {
        font-size: 18px;
        line-height: 24px
    }

    .about__items {
        gap: 15px;
        margin: 20px 0 36px
    }

    .about__item {
        width: calc(50% - 8px)
    }

    .about__item-description {
        font-size: 18px;
        line-height: 24px
    }

    .about__chat .widget-reviews__button {
        display: none
    }

    .about__chat-items {
        margin-bottom: 0
    }

    .about__chat-item {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .about__chat-item br {
        display: none
    }

    .about-box {
        margin-bottom: 56px
    }

    .about-box__wrapper::before {
        left: -100px
    }

    .about-box__wrapper::after {
        right: -100px
    }

    .about-box__wrapper {
        padding: 37px 43px
    }

    .about-box__wrapper--columns {
        padding: 40px 16px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .about-box__wrapper--columns::before {
        left: -29px;
        top: -15px
    }

    .about-box__wrapper--columns::after {
        right: -135px
    }

    .about-box__inner {
        font-size: 18px;
        line-height: 24px
    }

    .about-box__text {
        text-align: center;
        font-size: 18px;
        line-height: 24px
    }

    .career__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px
    }

    .career__description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px
    }

    .career__info {
        padding: 20px;
        margin-bottom: 16px
    }

    .career__info-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 16px
    }

    .career__info-description {
        font-size: 16px;
        line-height: 24px
    }

    .career__photo {
        margin-bottom: 16px
    }

    .career__photo--bottom {
        margin-bottom: 44px
    }

    .career__items {
        row-gap: 12px;
        margin-bottom: 16px
    }

    .career__item {
        width: 100%;
        padding: 20px
    }

    .career__item-icon-img {
        width: 36px;
        height: 36px
    }

    .career__item-title {
        font-size: 18px;
        line-height: 24px
    }

    .career__item-description {
        font-size: 14px;
        line-height: 20px
    }

    .career__referral-wrapper {
        padding: 24px 16px;
        margin-bottom: 44px
    }

    .career__referral-wrapper p {
        margin-bottom: 36px;
        font-size: 16px;
        line-height: 24px
    }

    .career__referral-wrapper-top {
        padding: 24px 16px;
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px
    }

    .career__referral-photo-items {
        -webkit-column-gap: 8px;
        -moz-column-gap: 8px;
        column-gap: 8px;
        margin-bottom: 16px
    }

    .career__referral-h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px
    }

    .career__referral-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 8px
    }

    .career__referral-item-count {
        width: 24px;
        height: 24px
    }

    .career__referral-item-description {
        font-size: 16px;
        line-height: 24px
    }

    .vacancies__item {
        width: 100%;
        padding: 16px 20px
    }

    .vacancies__item-title {
        font-size: 24px;
        line-height: 32px
    }

    .vacancies__item-elem-title {
        font-size: 14px;
        line-height: 20px
    }

    .vacancies__item-elem-description {
        font-size: 14px;
        line-height: 20px
    }

    .vacancies__item-banner {
        padding: 41px 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: url(../img/career/banner-mobile-right.svg) right bottom no-repeat, url(../img/career/banner-mobile-left.svg) left bottom no-repeat, #fff
    }

    .vacancies__item-banner-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 16px;
        text-align: center
    }

    .developer-box {
        margin-bottom: 44px
    }

    .developer-box__wrapper {
        padding: 24px 16px;
        font-size: 16px;
        line-height: 24px
    }

    .developer-box__wrapper p:not(:last-child) {
        margin-bottom: 15px
    }

    .developer-box__video {
        margin-bottom: 36px
    }

    .developer-box__spoller-title {
        font-size: 18px;
        line-height: 24px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .developer-box__spoller-title::after {
        width: 16px;
        height: 16px
    }

    .contacts--developer {
        margin-bottom: 44px
    }

    .contacts--developer .contacts__column:nth-child(1) {
        max-width: 100%
    }

    .contacts--developer li {
        font-size: 16px;
        line-height: 24px
    }

    .contacts--developer li:not(:last-child) {
        margin-bottom: 16px
    }

    .tabs__title {
        font-size: 16px
    }

    .buy-1s {
        margin-bottom: 56px
    }

    .buy-1s__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .buy-1s__item {
        width: 100%;
        padding: 24px 20px 18px
    }

    .buy-1s__item-image {
        text-align: center;
        margin-bottom: 24px
    }

    .buy-1s__item-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px
    }

    .buy-1s__item-description {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px;
        margin-bottom: 24px
    }

    .buy-1s__item-bottom-price {
        font-size: 24px;
        line-height: 32px
    }

    .itc-info {
        margin-bottom: 56px
    }

    .itc-info__items {
        margin-bottom: 24px;
        gap: 16px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .itc-info__item {
        padding: 20px 20px;
        width: 100%
    }

    .itc-info__item-title {
        margin-bottom: 5px;
        font-size: 18px;
        line-height: 24px
    }

    .itc-info__item-description {
        font-size: 16px;
        font-weight: 400
    }

    .itc-rate {
        margin-bottom: 56px
    }

    .itc-spoller__title::after {
        content: none
    }

    .itc-spoller__title {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .itc-spoller__box table {
        display: none
    }

    .itc-spoller__box--bottom .itc-spoller__title {
        text-align: center;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 16px
    }

    .itc-spoller__box--bottom .itc-spoller__title::after {
        content: none
    }

    .itc-spoller__box--bottom .itc-spoller__body.show {
        display: none !important
    }

    .itc-spoller__box--bottom .itc-spoller__body {
        display: none !important
    }

    .itc-spoller__box-button {
        display: block;
        text-align: center
    }

    .itc-mobile {
        display: block
    }

    .itc-mobile__select ul {
        top: 55px
    }

    .itc-mobile__select {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px;
        padding: 12px;
        margin-bottom: 12px
    }

    .about__title {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1
    }

    .about__column:nth-child(2) {
        -ms-grid-row: 3;
        -ms-grid-column: 1
    }

    .about__column:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }
}

@media (max-width: 992px) {

    .header__button {
        display: none
    }

    .footer__logo {
        width: 144px
    }

    .footer__description {
        font-size: 16px;
        line-height: 24px
    }

    .footer__menu {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns:1fr 1fr;
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
        row-gap: 20px
    }

    .footer__menu-link {
        font-size: 16px;
        line-height: 24px
    }

    .container {
        padding: 0 25px
    }

    .container-min {
        padding: 0 25px
    }

    .services__items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .services__item {
        width: calc(50% - 12px)
    }

    .project-evaluation__wrapper {
        padding: 45px 25px
    }

    .cases-content__category-item-title {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: .16px
    }

    .why__items {
        gap: 28px
    }

    .why__description {
        display: none
    }

    .contacts__columns {
        gap: 24px
    }

    .contacts__email-link::before {
        margin-right: 15px
    }

    .contacts__phone-link::before {
        margin-right: 15px
    }

    .gain__title {
        font-size: clamp(28px, 3vw, 64px);
        line-height: clamp(36px, 3vw, 72px)
    }

    .gain__sub-title {
        font-size: clamp(18px, 2vw, 28px);
        line-height: clamp(24px, 2vw, 36px)
    }

    .gain__item-title {
        font-size: clamp(18px, 3vw, 24px);
        line-height: clamp(24px, 3vw, 32px)
    }

    .fits__item-title {
        font-size: clamp(18px, 3vw, 24px);
        line-height: clamp(24px, 3vw, 32px)
    }

    .fits__item-description {
        font-size: clamp(14px, 3vw, 18px);
        line-height: clamp(20px, 3vw, 24px)
    }

    .how-working__items {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }

    .how-working__item-title {
        font-size: clamp(18px, 2vw, 24px);
        line-height: clamp(28px, 2vw, 32px)
    }

    .how-working__item-description {
        font-size: clamp(14px, 2vw, 18px);
        line-height: clamp(20px, 2vw, 24px)
    }

    .customization_item-title {
        font-size: clamp(18px, 3vw, 24px);
        line-height: clamp(24px, 3vw, 32px)
    }

    .customization_item-description {
        font-size: clamp(14px, 2vw, 18px);
        line-height: clamp(20px, 2vw, 24px)
    }

    .customization__title {
        font-size: clamp(28px, 3vw, 64px);
        line-height: clamp(36px, 3vw, 72px)
    }

    .customization__subtitle {
        font-size: clamp(18px, 2vw, 28px);
        line-height: clamp(24px, 2vw, 36px)
    }

    .compound__item-title {
        font-size: clamp(18px, 2vw, 24px);
        line-height: clamp(24px, 2vw, 32px)
    }

    .compound__item-description {
        font-size: clamp(14px, 2vw, 18px);
        line-height: clamp(20px, 2vw, 24px)
    }

    .escort-support__title {
        font-size: clamp(28px, 3vw, 64px);
        line-height: clamp(36px, 3vw, 72px)
    }

    .escort-support__sub-title {
        font-size: clamp(18px, 2vw, 28px);
        line-height: clamp(24px, 2vw, 36px)
    }

    .implementation__title {
        font-size: clamp(28px, 3vw, 64px);
        line-height: clamp(36px, 3vw, 72px)
    }

    .implementation__sub-title {
        font-size: clamp(18px, 2vw, 28px);
        line-height: clamp(24px, 2vw, 36px)
    }

    .price__table-col-0 {
        width: 270px
    }

    .price__num-price {
        font-size: 15px
    }

    .price table thead th {
        font-size: 13px;
        line-height: 19px
    }

    .price table tbody td {
        font-size: 15px
    }

    .blog-content__category-item-title {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: .16px
    }
}

@media (max-width: 576px) {
    .price__num-price {
        font-size: 14px
    }

    .price table tbody tr {
        gap: 10px
    }
}

.career__info-rec {
    border-radius: 16px;
    background: #fff;
    padding: 44px 64px 56px;
    margin-bottom: 88px;
}