

/* Start:/local/templates/main/css/main.css?177641702130835*/
body,html {height:100%}
*,::after,::before {box-sizing:border-box}
* {margin:0}

@media (prefers-reduced-motion:no-preference) {
    html {
        interpolate-size: allow-keywords
    }
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

canvas,img,picture,svg,video {
    display: block;
    max-width: 100%
}

button,input,select,textarea {
    font: inherit
}

h1,h2,h3,h4,h5,h6,p {
    overflow-wrap: break-word
}

p {
    text-wrap: pretty
}

h1,h2,h3,h4,h5,h6 {
    text-wrap: balance
}

.visually-hidden {
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0
}

:root {
    --gradient-point: 0.34
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-16px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes slideUp {
    from {
        transform: translateY(60px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes rotate {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes scale {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(.8)
    }

    100% {
        transform: scale(1)
    }
}

.container {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 1900px
}

.image-gradient {
    position: absolute;
    inset: 0;
    z-index: -1;
    margin: auto;
    aspect-ratio: 1/1;
    width: 80%;
    transform-origin: center center;
    transition: transform 1s ease;
    animation: scale 24s linear infinite running;
    filter: blur(120px)
}

.image-gradient__item {
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 9999px;
    animation: rotate 12s linear infinite running
}

.image-gradient__item--1 {
    top: 25%;
    left: 0;
    background-color: #aa4cff;
    transform-origin: right
}

.image-gradient__item--2 {
    top: 50%;
    left: 25%;
    background-color: #3838ff;
    transform-origin: top
}

.image-gradient__item--3 {
    top: 25%;
    left: 50%;
    background-color: #3a89fb;
    transform-origin: left
}

.image-gradient__item--4 {
    top: 0;
    left: 25%;
    background-color: #630eff;
    transform-origin: bottom
}

.page {
    min-width: 320px;
    min-height: 100%;
    color:#0d0d0d;
    font-family: "Max Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif
}

[data-animation-uprise] {
    transition: transform .6s ease,opacity .6s ease
}

body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden
}

.header {
    position: fixed;
    top: 16px;
    right: 16px;
    left: 16px;
    z-index: 1
}

.header--open {
    height: calc(100% - 32px)
}

.header__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 40px 25px 0 rgb(0 0 0 / 5%),0 5px 10px 0 rgb(0 0 0 / 10%);
    border-radius: 24px;
    background-color: hsl(264deg 33% 17% / 80%);
    backdrop-filter: blur(15px)
}

.header__logo-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 64px
}

.header__container--toggled-menu {
    justify-content: start;
    height: 100%;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px
}

.header__logo {
    color: #fff;
    font-size: 28px
}

.header__logo-img {
    width: 100px;
    height: 32px
}

.header__nav {
    display: none
}

.header__nav--open {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 16px;
    overflow-y: auto
}

.header__menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    cursor: pointer
}

.menu-toggle::after,.menu-toggle::before,.menu-toggle__line {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 9999px;
    background-color: #fff;
    transition: opacity .3s ease;
    content: ""
}

.menu-toggle::before {
    top: 0;
    transform: rotate(0);
    transition: top .3s ease .3s,transform .3s ease
}

.menu-toggle::after {
    bottom: 0;
    transform: rotate(0);
    transition: bottom .3s ease .3s,transform .3s ease
}

.menu-toggle--active::before {
    top: 6px;
    transform: scaleX(1.1) rotate(45deg);
    transition: top .3s ease,transform .3s ease .3s
}

.menu-toggle--active::after {
    bottom: 6px;
    transform: scaleX(1.1) rotate(-45deg);
    transition: bottom .3s ease,transform .3s ease .3s
}

.menu-toggle--active .menu-toggle__line {
    opacity: 0
}

.nav__list {
    display: flex;
    flex-direction: column;
    margin: 0;
    margin-top: 32px;
    padding: 0;
    height: 100%;
    list-style: none;
    font-weight: 500;
    font-size: 28px;
    animation: slideIn .3s ease forwards,fadeIn .3s linear forwards
}

.nav__list--desktop {
    display: none
}

.nav__item--copyright {
    margin-top: auto;
    line-height: 1;
    font-weight: 400
}

.nav__link {
    display: block;
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    transition: color .3s ease
}

.nav__link--hidden {
    display: none
}

.nav__link.nav__link--disabled {
    color: #fff;
    cursor: default
}

.header__login-container {
    display: none
}

.gradient-text {
    background: linear-gradient(96deg,rgb(90 140 255) 0,rgb(67 214 255) calc(var(--gradient-point) * 100%),rgb(143 63 255) 99.6%);
    background-clip: text;
    background-clip: text;
    color: transparent
}

.header__copyright {
    color: #fff;
    text-transform: uppercase;
    line-height: 1.4;
    font-size: 16px
}

.overlay-button {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border: none;
    background-color: #0d0d0d;
    opacity: .8
}

.header--open~.overlay-button {
    display: block
}

.header__container {
    padding: 0 16px
}

.main {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    overflow-x: clip
}

.img {
    margin: 0 auto;
    width: min-content;
    max-width: min(400px,100%);
    height: auto
}

.section {
    position: relative;
    padding-top: 120px;
    width: 100%;
    isolation: isolate
}

.section::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-blend-mode: overlay,normal;
    content: "";
    backdrop-filter: blur(15px)
}

.section__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%
}

[data-container] {
    --container-width: 100vw
}

.section__content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
    padding: 0 5px;
    width: 100%;
    max-width: 400px
}

.section__link {
    color: #fff;
    text-align: left;
    text-decoration: none;
    line-height: 1.4;
    font-weight: 400;
    font-size: 16px
}

.section__text {
    margin-bottom: 12px;
    color: #c3c3c3;
    text-align: center;
    line-height: 1.25;
    font-weight: 400;
    font-size: 16px
}

.section__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 400px
}

.hero.section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 80px;
    padding: 20px 16px
}

.hero__container {
    position: relative;
    display: grid;
    grid-template-rows: min-content 1fr;
    grid-template-columns: 1fr;
    place-content: center center;
    gap: 24px;
    padding: 28px 28px 24px;
    min-height: max(var(--hero-container-height,calc(100dvh - 84px - 105px)),calc(190px + 230px * 283 / 263));
    overflow: hidden;
    overflow: clip;
    border-radius: 24px;
    background-color: rgb(40 29 57 / 20%)
}

.hero__container::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    margin-right: auto;
    margin-left: auto;
    height: 1px;
    background-image: linear-gradient(90deg,rgb(255 255 255 / 0%) 0,rgb(255 255 255 / 20%) 50%,rgb(255 255 255 / 0%) 100%);
    content: ""
}

.hero__content {
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
    padding: 0;
    text-align: center
}

.hero__title {
    letter-spacing: -.64px;
    line-height: 1;
    font-weight: 500;
    font-size: 32px
}

.hero__title--tablet {
    display: none;
    font-size: 48px
}

.hero__text {
    color: #c3c3c3;
    text-align: center;
    line-height: 1.25;
    font-weight: 400;
    font-size: 16px
}

.hero__features {
    display: grid;
    grid-template-rows: repeat(2,minmax(auto,1fr));
    grid-template-columns: repeat(2,minmax(min-content,1fr));
    align-items: stretch;
    gap: 9px;
    margin: 0 auto;
    width: 100%;
    min-width: 232px;
    max-width: 477px
}

.hero__feature {
    --font-max: 18px;
    display: grid;
    grid-template-rows: min-content;
    align-items: self-start;
    gap: 1em;
    padding: 1em;
    border-radius: clamp(24px,3em,48px);
    background-color: #0c0d10;
    font-size: clamp(10px, calc(10px + (var(--container-width) - 230px) / 22), var(--font-max))
}

@supports (container-type:inline-size) {
    .hero__feature {
        font-size: clamp(10px, 4cqi, var(--font-max))
    }
}

.hero__feature-icon {
    --feature-icon-radius: calc(clamp(24px, 3em, 48px) - 1em);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 30px;
    aspect-ratio: 188/155;
    overflow: hidden;
    overflow: clip;
    border-radius: var(--feature-icon-radius);
    background-image: radial-gradient(circle,var(--color-gradient,rgba(232,46,133,.3)) 0,transparent 100%);
    isolation: isolate
}

.hero__feature-icon svg {
    position: relative;
    z-index: 1;
    object-fit: contain;
    width: 100%;
    max-width: 67px;
    height: 100%
}

.hero__feature-icon--channels {
    background-color: #20162d
}

.hero__feature-icon--chatbots {
    background-color: #152028
}

.hero__feature-icon--integration {
    background-color: #181827
}

.hero__feature-icon--miniapps {
    background-color: #281620
}

.hero__feature-title {
    color: #fff;
    text-align: center;
    line-height: 1;
    font-weight: 600;
    font-size: inherit
}

.hero__image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    container-name: hero-image;
    container-type: inline-size
}

.hero__image .img__wrapper {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%
}

.img--hero {
    display: none;
    object-fit: contain;
    width: 100%;
    max-width: 437px;
    height: 100%
}

.hero__link-documentation {
    display: block;
    margin: 0 auto;
    margin-bottom: 16px;
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px
}

.section--business-support {
    padding: 49px 5px 0
}

.section--miniapps {
    padding-top: 120px
}

.section--miniapps {
    filter: revert
}

.section__buttons-container--business-messenger {
    width: 100%
}

.section__content--business-messenger,.section__content--download {
    gap: 36px
}

.section__title {
    margin: 0;
    color: #0d0d0d;
    text-align: center;
    letter-spacing: -.64px;
    line-height: 1;
    font-weight: 500;
    font-size: 32px
}

.section__title--download {
    font-size: 32px
}

.section__title--business-support {
    margin: 0;
    text-align: left;
    line-height: 1;
    font-weight: 500;
    font-size: 24px
}

.section__buttons--hero {
    display: none
}

.section__buttons--business-messenger .button {
    align-items: start;
    width: 100%
}

.section__buttons--fixed {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 16px;
    max-width: 100%;
    box-shadow: 0 40px 25px 0 rgb(0 0 0 / 5%),0 5px 10px 0 rgb(0 0 0 / 10%);
    background-color: rgb(13 13 13 / 80%);
    animation: slideUp .3s ease forwards;
    backdrop-filter: blur(15px)
}

.section__buttons--fixed .button {
    width: 100%
}

.section__buttons--fixed .button--instructions {
    display: none
}

.section__buttons--fixed .button--primary {
    background-image: linear-gradient(97deg,#01c5c8 .32%,#046ef4 44.6%,#572dff 62.16%)
}

.section--cover.section--chatbots {
    padding-top: 48px
}

.section--cover.section--channels {
    margin-top: -73px;
    padding-top: 80px
}

.section--cover.section--business-messenger {
    margin-top: -88px;
    padding-top: 80px
}

.section__image {
    margin: 0 auto;
    padding: 0 16px;
    width: 90%;
    max-width: 400px
}

.section--cover.section--digital-id {
    margin-top: -110px;
    padding-top: 80px
}

.section--chatbots .section__image {
    padding-top: 15px
}

.section--miniapps .section__image {
    padding: 16px;
    width: 77%
}

.section--channels .section__image {
    padding: 16px 11px
}

.section--digital-id .section__image {
    padding: 16px 11px
}

.section--download {
    padding-top: 32px
}

.section__container--line-decoration::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 70%;
    height: 1px;
    background-image: linear-gradient(90deg,rgb(255 255 255 / 0%) 0,rgb(255 255 255 / 20%) 50%,rgb(255 255 255 / 0%) 100%);
    content: ""
}

.section--miniapps .section__container--line-decoration::before {
    display: none
}

.section--business-support .section__content {
    padding-right: 16px;
    padding-left: 16px
}

.section--business-messenger .section__container {
    margin-top: 32px;
    margin-bottom: 16px
}

.section--download .section__container {
    gap: 32px
}

.button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    width: fit-content;
    overflow: hidden;
    border: none;
    border-radius: 16px;
    background-color: #630eff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
    font-weight: 500;
    font-size: 20px;
    transition: transform .6s ease;
    isolation: isolate;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

.button::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(97deg,#01c5c8 .32%,#046ef4 44.6%,#572dff 62.16%);
    transition: opacity .3s ease;
    content: "";
    opacity: 0
}

@media (hover: hover) {
    .button:focus-visible::before,.button:hover::before {
        opacity:1
    }
}

.button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -1px;
    border: none
}

.button:active {
    transform: scale(.97);
    transition: transform .3s ease;
    opacity: .8
}

.button--primary {
    background-image: linear-gradient(135deg,#161f8a 0,#2d085f 100%)
}

.chanel-button {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px;
    padding-right: 60px;
    max-width: calc(1260px - 64px);
    border-radius: 28px;
    background-color: hsl(264deg 33% 17%);
    text-decoration: none;
    transition: background-color .6s ease,transform .2s ease;
    user-select: none;
    will-change: background-color
}

@media (hover: hover) {
    .chanel-button:hover {
        background-color:hsl(264deg 33% 22%);
        transition: background-color .2s ease;
        cursor: pointer
    }
}

.chanel-button:focus-visible {
    outline: 2px solid #fff;
    background-color: hsl(264deg 33% 22%)
}

.chanel-button:active {
    transform: scale(.99)
}

.chanel-button__logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    padding: 8px;
    overflow: hidden;
    overflow: clip;
    border-radius: 16px;
    background: linear-gradient(135deg,rgb(211 166 255 / 10%) 0,rgb(143 63 224 / 10%) 100%);
    isolation: isolate
}

.chanel-button__logo--max {
    background: conic-gradient(from 132deg at 50% 50%,#0cf 85deg,#0026ff 180deg,#a500c6 340deg)
}

.chanel-button__logo-wrapper-inner {
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(10px)
}

.chanel-button__content {
    display: flex;
    flex: 1;
    flex-basis: 200px;
    flex-direction: column;
    gap: 3px
}

.chanel-button__logo-icon {
    object-fit: contain;
    width: 35px;
    height: 35px
}

.chanel-button__title {
    color: #fff;
    line-height: 1.2;
    font-weight: 500;
    font-size: 20px
}

.chanel-button__title-text {
    display: inline-block;
    max-width: 100%
}

.chanel-button__description {
    color: #b5b5b5;
    line-height: 1.25;
    font-weight: 400;
    font-size: 16px
}

.chanel-button__icon-wrapper {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 20px;
    height: 20px
}

.section--chatbots .chanel-button {
    display: none
}

.image-gradient--hero-bottom {
    top: revert;
    bottom: -350px
}

.button--secondary {
    background-color: transparent;
    background-image: linear-gradient(135deg,rgb(67 67 67 / 80%) 0,rgb(67 67 67 / 20%) 100%)
}

.section__buttons--download {
    align-items: stretch;
    padding: 0
}

.download__button {
    width: auto
}

.section__buttons-container {
    margin: 0 auto;
    min-height: 112px
}

.button_qr {
    position: relative;
    display: none;
    align-items: center;
    align-self: stretch;
    padding: 12px;
    aspect-ratio: 1/1;
    overflow: revert;
    border: none;
    background-image: linear-gradient(135deg,#161f8a 0,#2d085f 100%);
    transform-origin: left bottom;
    transition: opacity .3s ease,width .3s ease,height .3s ease;
    opacity: 1
}

.button_qr::before {
    display: none
}

.ios {
    display: none
}

.android {
    display: none
}

.desktop {
    display: none
}

.download__button-qr-img {
    display: block;
    width: 100%;
    height: 100%
}

.download__button-icon--qr {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 12px;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 16px;
    transform-origin: left bottom;
    transition: opacity .3s ease,filter .3s ease,width .3s ease,height .3s ease,transform .3s ease;
    opacity: 0;
    isolation: isolate;
    will-change: filter
}

.download__button-icon--qr::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #000;
    background-image: linear-gradient(97deg,#01c5c8 .32%,#046ef4 44.6%,#572dff 62.16%);
    transition: opacity .3s ease;
    content: ""
}

.button_qr:active {
    transform: scale(1);
    opacity: 1
}

.button_qr:active .download__button-icon--qr,.button_qr:focus .download__button-icon--qr,.button_qr:hover .download__button-icon--qr {
    width: 240px;
    height: 240px;
    outline-width: 2px;
    outline-style: solid;
    opacity: 1;
    filter: blur(0)
}

.footer {
    background-color:#0d0d0d;
    padding: 72px 16px 80px
}

.footer__container {
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
    max-width: 1200px
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0
}

.footer__logo-img {
    width: 96px;
    height: 30px
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0
}

.footer__nav-item {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer__nav-link {
    color: #9a9a9a;
    text-decoration: none;
    line-height: 1.25;
    font-weight: 400;
    font-size: 16px;
    transition: color .3s ease
}
.footer__nav-link.active {color:#fff}
@media (hover: hover) {
    .footer__nav-link:hover {
        color:#fff
    }
}

.footer__nav-link:active {
    color: #fff
}

.footer__copyright-text {
    color: #9a9a9a;
    line-height: 1.25;
    font-weight: 400;
    font-size: 16px
}

@media (width >= 340px) {
    .nav__list {
        gap: 16px;
        margin-top: 40px;
        padding: 16px 0 0;
        font-size: 32px
    }
}

@media (orientation: landscape) and (height <= 440px) {
    .nav__list {
        font-size:24px
    }

    .nav__link {
        margin: 0;
        padding: 0
    }
}

@media (width >= 350px) {
    .section__container {
        margin: 0 auto
    }
}

@media (width >= 420px) {
    .section {
        padding-right: 16px;
        padding-left: 16px
    }

    .img:not(.img--hero) {
        max-width: 100%
    }

    .section__image {
        position: relative;
        align-items: stretch;
        align-self: stretch;
        width: 100%
    }

    .section--miniapps .section__image {
        padding: 0 40px
    }
}

@media (width >= 744px) {
    .section--business-messenger .button,.section--download .button {
        font-size: 24px
    }

    .section__buttons--fixed {
        position: static
    }

    .section--miniapps .section__container--line-decoration::before {
        display: block
    }

    .header {
        top: 32px;
        right: 32px;
        left: 32px
    }

    .header--open {
        height: calc(100% - 64px);
        max-height: 700px
    }

    .section {
        padding-top: 80px;
        padding-bottom: 80px;
        max-width: 100%
    }

    .section--download {
        margin-bottom: 140px;
        padding-bottom: 48px
    }

    .hero__container {
        grid-template-rows: auto;
        padding: 0;
        height: 100%;
        min-height: auto;
        overflow: revert;
        border-radius: 0;
        background-color: transparent
    }

    .hero__container::before {
        display: none
    }

    .hero__content {
        padding: 0;
        max-width: 100%
    }

    .hero__title--mobile {
        display: none
    }

    .hero__title--tablet {
        display: block
    }

    .hero__link-documentation {
        display: none
    }

    .image-gradient--hero-bottom {
        display: none
    }

    .hero.section {
        margin-top: 96px;
        padding-top: 80px
    }

    .img__wrapper {
        position: relative;
        padding: 20px
    }

    .hero__image .img__wrapper {
        align-items: start;
        padding-top: 0
    }

    .hero__image picture {
        width: 100%
    }

    .hero__features {
        position: absolute;
        top: 13%;
        right: 0;
        left: 0
    }

    .chanel-button__wrapper {
        gap: 8px 24px;
        padding: 24px
    }

    .chanel-button__title {
        line-height: 1.4;
        font-size: 24px
    }

    .chanel-button__description {
        line-height: 1.25;
        font-size: 16px
    }

    .hero__image .img--hero {
        display: block
    }

    .hero .chanel-button {
        display: none
    }

    .section__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "content image";
        gap: 16px;
        padding-right: 48px;
        padding-left: 48px;
        max-width: 1900px;
        height: 100%
    }

    .section__container--reverse {
        grid-template-areas: "image content"
    }

    .section__container--chatbots {
        grid-template-areas: "link link" "image content"
    }

    .chanel-button--chatbots {
        grid-area: link
    }

    .section__image {
        grid-area: image
    }

    .section__content {
        grid-area: content;
        margin: auto 0;
        padding: 0;
        max-width: 100%
    }

    .section--miniapps .section__content {
        padding-bottom: 145px
    }

    .section--channels .section__content {
        padding-bottom: 145px
    }

    .section--digital-id .section__content {
        padding-bottom: 145px
    }

    .section__container--reverse .section__content {
        grid-column: 2
    }

    .hero .section__container {
        grid-template-columns: auto max(300px,44%);
        justify-content: space-between;
        padding-right: 36px
    }

    .section--cover.section--business-messenger {
        margin-top: -170px
    }

    .hero__title {
        text-align: left
    }

    .hero__text {
        margin-bottom: 8px;
        text-align: left;
        font-size: 20px
    }

    .hero__image,.section__image {
        align-self: flex-start;
        padding: 0
    }

    .hero__image {
        margin-bottom: -70%
    }

    .hero__image .image-gradient {
        margin-left: 0
    }

    .section--chatbots {
        padding-top: 90px;
        padding-bottom: 90px
    }

    .section--chatbots .chanel-button {
        display: flex;
        margin-bottom: 48px
    }

    .section--chatbots .section__image {
        padding-right: 40px
    }

    .section__buttons {
        align-items: flex-start
    }

    .section__buttons--hero {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        width: fit-content
    }

    .section__title {
        text-align: left;
        font-size: 40px
    }

    .section--chatbots .section__title {
        text-wrap: initial
    }

    .section--cover.section--chatbots {
        padding-top: 48px
    }

    .section--cover.section--miniapps {
        margin-top: -124px
    }

    .section--miniapps .section__image {
        padding: 5px 52px;
        width: 100%
    }

    .section--channels .section__image {
        padding: 8px 32px;
        padding-left: 0
    }

    .section--digital-id .section__image {
        padding: 16px 32px
    }

    .section--cover.section--channels {
        margin-top: -165px
    }

    .section--cover.section--digital-id {
        margin-top: -175px
    }

    .section--business-support .section__content {
        padding-right: 0;
        padding-left: 0
    }

    .section__text {
        margin-bottom: 32px;
        text-align: left;
        font-size: 16px
    }

    .section--business-messenger .section__container,.section--download .section__container {
        display: flex;
        flex-direction: column;
        align-items: stretch
    }

    .section--business-messenger .section__buttons,.section--download .section__buttons {
        flex-flow: row wrap;
        justify-self: start;
        gap: 16px;
        margin: 0;
        width: auto;
        max-width: 100%
    }

    .section__title--business-messenger,.section__title--download {
        font-size: 56px
    }

    .section__buttons-container {
        margin: 0;
        padding: 0;
        max-width: 100%;
        min-height: auto
    }

    .section__title.section__title--business-support {
        font-size: 24px
    }

    .section--business-support {
        padding-top: 0
    }

    .section--business-support .section__container {
        display: flex
    }

    .section__buttons--business-messenger .button {
        display: flex;
        align-items: center;
        width: auto;
        font-size: 24px
    }

    .button_qr {
        display: flex
    }

    .ios {
        display: flex
    }

    .android {
        display: flex
    }

    .desktop {
        display: flex
    }

    .footer {
        padding: 96px 64px
    }

    .footer__container {
        display: grid;
        grid-template-columns: 1fr 3fr;
        gap: 10px
    }

    .footer__copyright {
        flex-grow: 1;
        justify-content: space-between;
        gap: 30px
    }

    .footer__nav {
        display: grid;
        grid-template-columns: repeat(2,minmax(auto,max-content));
        gap: 48px
    }

    .footer__nav-list--privacy {
        grid-column: 2
    }
}

@media (width >= 1060px) {
    .section__container {
        padding-right: 64px;
        padding-left: 64px
    }

    .hero .section__container {
        grid-template-columns: auto 420px;
        gap: 32px
    }

    .hero__title {
        font-size: 72px
    }

    .hero__text {
        font-size: 28px
    }

    .button {
        padding: 12px 24px;
        min-height: 64px;
        font-size: 24px
    }

    .button_qr {
        padding: 4px;
        width: 64px;
        height: 64px
    }

    .section__title {
        font-size: 56px
    }

    .section__text {
        font-size: 24px
    }

    .footer {
        padding: 96px 76px 40px
    }

    .footer__container {
        grid-template-columns: 1fr 3fr;
        gap: 10px
    }

    .footer__nav {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        max-width: 1200px
    }

    .footer__nav-list--privacy {
        grid-column: 3
    }
}

@media (width >= 1160px) {
    .header {
        right: 32px;
        left: 32px
    }

    .header--open {
        height: auto
    }

    .header__container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 0 40px;
        min-height: 88px;
        border-radius: 32px
    }

    .header__logo-img {
        width: 130px;
        height: 42px
    }

    .header__menu-toggle {
        display: none
    }

    .header__nav {
        display: flex
    }

    .nav__list--mobile {
        display: none
    }

    .nav__list--desktop {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 32px;
        margin: 0;
        padding: 0;
        line-height: 1.4;
        font-size: 20px;
        animation: none
    }

    .nav__link {
        color: #b5b5b5
    }

    @media (hover: hover) {
        .nav__link:not(.nav__link--disabled):hover {
            color:#fff
        }
    }

    .header__login-container {
        display: flex
    }

    .header__login-link {
        margin-left: auto;
        text-decoration: none;
        font-weight: 500;
        font-size: 20px
    }

    .header__copyright {
        display: none
    }

    .overlay-button {
        display: none
    }

    .section__container {
        padding-right: 92px;
        padding-left: 92px
    }

    .section__content {
        gap: 24px
    }

    .section__text {
        margin-bottom: 40px
    }

    .hero.section {
        margin-top: 120px
    }

    .hero__content {
        gap: 32px
    }

    .hero__text {
        margin-bottom: 32px
    }

    .chanel-button__title {
        font-size: 24px
    }

    .chanel-button__description {
        font-size: 18px
    }

    .footer__container {
        padding: 0 44px
    }
}
.b24 {color:#005893;font-weight:600}
/* End */
/* /local/templates/main/css/main.css?177641702130835 */
