

/***********************************/
/** section.main ***/
/***********************************/


section.main {
    margin: 100px 0
}

    section.main .inner {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between
    }

        section.main .inner .textInfo {
            position: relative;
            display: block;
            width: 32%
        }

            section.main .inner .textInfo h1 {
                display: block;
                margin-bottom: 30px;
                font-family: Poppins,sans-serif;
                font-size: 36px;
                font-weight: 800;
                color: #1c2841;
                font-style: normal;
                line-height: 1.5
            }

            section.main .inner .textInfo p {
                display: block;
                margin-bottom: 30px;
                font-family: Murecho,sans-serif;
                font-size: 21px;
                font-weight: 400;
                color: #1c2841;
                font-style: normal;
                line-height: 1.5
            }

            section.main .inner .textInfo .buttons {
                display: flex;
                flex-wrap: wrap
            }

                section.main .inner .textInfo .buttons .btn {
                    position: relative;
                    display: flex;
                    gap: 10px;
                    justify-content: center;
                    align-items: center;
                    padding: 12px 30px;
                    margin-right: 15px;
                    text-decoration: none
                }

                    section.main .inner .textInfo .buttons .btn:last-child {
                        margin-right: 0
                    }

                section.main .inner .textInfo .buttons .try {
                    font-size: 16px;
                    font-weight: 700;
                    color: #fff;
                    line-height: normal;
                    border-radius: 7px;
                    background: #ff3800
                }

                section.main .inner .textInfo .buttons .how {
                    font-size: 16px;
                    font-weight: 700;
                    color: #1c2841;
                    border-radius: 7px;
                    border: 3.5px solid #1c2841;
                    background: #fff1e9
                }

                section.main .inner .textInfo .buttons .feature {
                    display: flex;
                    width: 100%;
                    padding: 10px 0
                }

                    section.main .inner .textInfo .buttons .feature li {
                        margin-right: 30px
                    }

                        section.main .inner .textInfo .buttons .feature li:last-child {
                            margin-right: 0
                        }

        section.main .inner .visual {
            position: relative;
            display: block;
            width: 50%;
            height: 400px
        }

            section.main .inner .visual:before {
                position: absolute;
                display: block;
                content: '';
                z-index: 1;
                left: -10px;
                top: -10px;
                width: 98%;
                height: 98%;
                background-color: #000
            }

            section.main .inner .visual .bg {
                position: relative;
                display: flex;
                z-index: 2;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 100%;
                background-color: #fff1e9;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
            }

                section.main .inner .visual .bg:before {
                    position: absolute;
                    display: block;
                    content: '';
                    z-index: 1;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(23,6,7,.64)
                }

            section.main .inner .visual .panels {
                position: absolute;
                display: flex;
                z-index: 2;
                align-items: center;
                justify-content: flex-end;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                background-color: transparent;
                padding: 32px;
            }

                section.main .inner .visual .panels .arrow {
                    position: absolute;
                    display: block;
                    z-index: 2;
                    width: fit-content;
                    height: auto;
                    right: -50px;
                    bottom: -75px
                }

                section.main .inner .visual .panels .website {
                    position: relative;
                    display: flex;
                    z-index: 3;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                    flex-shrink: 0;
                    border-radius: 50px;
                    background: #fff;
                    padding: 20px 40px;
                    font-size: 15px;
                    font-weight: 700;
                    color: #000
                }

                section.main .inner .visual .panels .panel {
                    position: absolute;
                    display: block;
                    z-index: 3;
                    border-radius: 4px;
                    background: #fff;
                    padding: 14px;
                    box-shadow: 0 4px 35px 3px rgba(0,0,0,.15)
                }

                    section.main .inner .visual .panels .panel.fraudType {
                        display: flex;
                        justify-content: space-between;
                        top: -10%;
                        right: -6%;
                        padding: 30px 14px 20px
                    }

                        section.main .inner .visual .panels .panel.fraudType .textInfo {
                            margin-right: 40px;
                            white-space: nowrap
                        }

                            section.main .inner .visual .panels .panel.fraudType .textInfo strong {
                                display: block;
                                margin-bottom: 20px;
                                font-size: 12px;
                                font-weight: 700;
                                color: #000;
                                line-height: normal
                            }

                            section.main .inner .visual .panels .panel.fraudType .textInfo .item {
                                display: flex;
                                align-items: center;
                                margin-bottom: 10px;
                                font-size: 12px;
                                font-weight: 700;
                                color: #000
                            }

                                section.main .inner .visual .panels .panel.fraudType .textInfo .item:before {
                                    position: relative;
                                    display: inline-block;
                                    content: '';
                                    flex-shrink: 0;
                                    width: 10px;
                                    height: 10px;
                                    border-radius: 100%;
                                    background-color: #000;
                                    margin-right: 10px
                                }

                                section.main .inner .visual .panels .panel.fraudType .textInfo .item:nth-child(2):before {
                                    background-color: #e94b28
                                }

                                section.main .inner .visual .panels .panel.fraudType .textInfo .item:nth-child(3):before {
                                    background-color: #cd244c
                                }

                                section.main .inner .visual .panels .panel.fraudType .textInfo .item:nth-child(4):before {
                                    background-color: #e97928
                                }

                                section.main .inner .visual .panels .panel.fraudType .textInfo .item:nth-child(5):before {
                                    background-color: #e9ca28
                                }

                    section.main .inner .visual .panels .panel.shortInfo {
                        display: block;
                        top: 30%;
                        left: -10%
                    }

                        section.main .inner .visual .panels .panel.shortInfo .item {
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            margin-bottom: 10px;
                            font-size: 12px;
                            font-weight: 700;
                            color: #000
                        }

                    section.main .inner .visual .panels .panel.threat {
                        bottom: -20%;
                        left: 30%
                    }

                        section.main .inner .visual .panels .panel.threat .title {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            gap: 20px;
                            margin-bottom: 20px
                        }

                            section.main .inner .visual .panels .panel.threat .title strong {
                                font-size: 12px;
                                font-weight: 700;
                                color: #000
                            }

                            section.main .inner .visual .panels .panel.threat .title ul {
                                display: flex;
                                align-items: center;
                                gap: 10px
                            }

                                section.main .inner .visual .panels .panel.threat .title ul li {
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    gap: 8px;
                                    flex-shrink: 0;
                                    padding: 4px 8px;
                                    border-radius: 3px;
                                    background: #e9e9e9;
                                    font-size: 10px;
                                    font-weight: 700;
                                    color: #000
                                }

                        section.main .inner .visual .panels .panel.threat .item {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            gap: 10px;
                            margin-bottom: 10px
                        }

                            section.main .inner .visual .panels .panel.threat .item .value {
                                font-size: 11px;
                                font-weight: 700;
                                color: #6e6e6e;
                                font-style: normal;
                                line-height: normal
                            }

                            section.main .inner .visual .panels .panel.threat .item .line {
                                width: 100%;
                                font-size: 10px;
                                font-weight: 700;
                                color: #000
                            }

                                section.main .inner .visual .panels .panel.threat .item .line .bar {
                                    position: relative;
                                    display: block;
                                    border-radius: 2px;
                                    background: #d9d9d9;
                                    height: 9px;
                                    overflow: hidden;
                                    margin-top: 5px
                                }

                                    section.main .inner .visual .panels .panel.threat .item .line .bar span {
                                        position: relative;
                                        display: block;
                                        height: 100%;
                                        left: 0;
                                        top: 0;
                                        width: 1px;
                                        -webkit-transition: width 1s ease-in-out;
                                        -moz-transition: width 1s ease-in-out;
                                        -o-transition: width 1s ease-in-out;
                                        transition: width 1s ease-in-out
                                    }



/***********************************/


.bar-green span {
    background-color: #75be71
}

.bar-yellow span {
    background-color: #ffbf60
}

.bar-red span {
    background-color: #ff5e5e
}

section.HomeVisual {
    position: relative;
    display: block
}

    section.HomeVisual .main {
        position: relative;
        display: block;
        width: 100%;
        height: 640px;
        background: url(../img/main-visual.svg) top center no-repeat;
        background-size: cover
    }

        section.HomeVisual .main .top {
            position: absolute;
            display: block;
            z-index: 1;
            width: 100%;
            height: 390px;
            left: 0;
            top: -10px;
            background: url(../img/top-visual.svg) top center no-repeat;
            background-size: cover
        }

    section.HomeVisual .step {
        position: absolute;
        display: flex;
        flex-wrap: wrap;
        left: 0;
        top: 0;
        gap: 10px;
        z-index: 2;
        animation: moveUpDown 3s infinite linear;
        justify-content: center;
        text-align: center
    }

    section.HomeVisual .step1 {
        left: 0;
        top: 46%
    }

    section.HomeVisual .step2 {
        left: 28%;
        top: 53%
    }

    section.HomeVisual .step3 {
        left: 55%;
        top: 56%
    }

    section.HomeVisual .step4 {
        right: 12%;
        top: 46%;
        left: inherit
    }

    section.HomeVisual .step5 {
        left: unset;
        right: 5%;
        width: 100px;
        top: 30%
    }

    section.HomeVisual .step .item {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        box-sizing: border-box;
        border-radius: 100%;
        width: 88px;
        height: 88px;
        background-color: #fff
    }

    section.HomeVisual .clicksambo .item {
        background: #000
    }

    section.HomeVisual .step .text {
        position: relative;
        display: block;
        width: 100%;
        font-size: 19px;
        font-weight: 700;
        color: #000
    }


section.trafic {
    margin-bottom: 100px
}

    section.trafic h2 {
        position: relative;
        display: block;
        width: fit-content;
        margin: 0 auto 30px;
        font-size: 36px;
        font-weight: 800;
        color: #000;
        font-style: normal;
        text-align: center;
        line-height: 1.5
    }

    section.trafic p.text {
        position: relative;
        display: block;
        width: fit-content;
        margin: 0 auto 30px;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        font-style: normal;
        text-align: center;
        line-height: 1.5
    }

    section.trafic .visual {
        position: relative;
        display: block;
        width: 100%;
        height: 600px;
        border-radius: 6px;
        background-attachment: fixed
    }

        section.trafic .visual:before {
            position: absolute;
            display: block;
            content: '';
            z-index: 1;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(31,30,31,.8);
            border-radius: 6px
        }

    section.trafic .brandInfo {
        position: relative;
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
        width: fit-content;
        padding: 10px 25px;
        margin: 40px 0;
        background-color: #fff;
        border-radius: 9px;
        font-size: 15px;
        font-weight: 400;
        color: #3a3a3a;
    }

    section.trafic .visual .chartItem {
        position: absolute;
        display: block;
        z-index: 3;
        width: 280px;
        min-height: 330px;
        padding: 20px 0;
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0 4px 35px 3px rgba(0,0,0,.15)
    }

        section.trafic .visual .chartItem .title {
            position: relative;
            display: flex;
            z-index: 3;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding: 0 20px;
            box-sizing: border-box;
            font-size: 15px;
            font-weight: 800;
            color: #000
        }

            section.trafic .visual .chartItem .title strong {
                flex-shrink: 0
            }

        section.trafic .visual .chartItem .bar {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;
            gap: 10px
        }

            section.trafic .visual .chartItem .bar .value {
                width: fit-content;
                flex-shrink: 0
            }

            section.trafic .visual .chartItem .bar .line {
                position: relative;
                display: block;
                width: 100%;
                height: 8px;
                border-radius: 8px;
                overflow: hidden
            }

                section.trafic .visual .chartItem .bar .line span {
                    position: relative;
                    display: block;
                    width: 1px;
                    height: 100%;
                    border-radius: 8px;
                    -webkit-transition: width 1s ease-in-out;
                    -moz-transition: width 1s ease-in-out;
                    -o-transition: width 1s ease-in-out;
                    transition: width 1s ease-in-out
                }

        section.trafic .visual .chartItem .info {
            position: relative;
            display: flex;
            z-index: 3;
            align-items: center;
            gap: 20px;
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
            font-size: 15px;
            font-weight: 800;
            color: #000
        }

        section.trafic .visual .chartItem .bars {
            position: relative;
            display: block;
            width: 100%;
            padding: 20px;
            padding-bottom: 0;
            box-sizing: border-box;
            font-size: 13px;
            font-weight: 800;
            color: #000
        }

            section.trafic .visual .chartItem .bars .bar {
                margin-bottom: 5px
            }

                section.trafic .visual .chartItem .bars .bar:last-child {
                    margin-bottom: 0
                }

    section.trafic .visual .chart1 {
        top: -73px;
        right: 55px
    }

    section.trafic .visual .chart2 {
        top: 100px;
        left: 55px
    }

    section.trafic .visual .chart3 {
        bottom: -73px;
        right: 55px
    }

    section.trafic .visual .chart1 svg {
        fill: #3ab37e
    }

    section.trafic .visual .chart1 .bar {
        color: #3ab37e
    }

    section.trafic .visual .chart1 .progressbar {
        background-color: #3ab37e
    }

    section.trafic .visual .chart2 svg {
        fill: #ffca7a
    }

    section.trafic .visual .chart2 .bar {
        color: #ffca7a
    }

    section.trafic .visual .chart2 .progressbar {
        background-color: #ffca7a
    }

    section.trafic .visual .chart3 svg {
        fill: #e18695
    }

    section.trafic .visual .chart3 .bar {
        color: #e18695
    }

    section.trafic .visual .chart3 .progressbar {
        background-color: #e18695
    }

    section.trafic .visual .signs {
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        margin-left: -20%;
        z-index: 1;
        width: 40%;
        height: 100%
    }

        section.trafic .visual .signs .arrowIco {
            position: absolute;
            display: block;
            bottom: -10%;
            left: 50%;
            z-index: 1;
            width: 96px;
            height: auto
        }

        section.trafic .visual .signs .filterIco {
            position: absolute;
            display: block;
            top: 60%;
            left: 50%;
            margin-left: -48px;
            z-index: 1;
            width: 96px;
            height: 96px
        }

            section.trafic .visual .signs .filterIco .bdrTop1 {
                position: absolute;
                display: block;
                bottom: 120px;
                left: 50%;
                z-index: 1;
                width: 1px;
                height: 220px;
                border-left: 2px dashed #7d7c7c
            }

            section.trafic .visual .signs .filterIco .bdrTop2 {
                position: absolute;
                display: block;
                top: -250px;
                left: 50%;
                z-index: 1;
                width: 220px;
                height: 1px;
                border-top: 2px dashed #7d7c7c
            }

            section.trafic .visual .signs .filterIco .bdrTop3 {
                position: absolute;
                display: block;
                top: -150px;
                right: 50%;
                z-index: 1;
                width: 220px;
                height: 1px;
                border-top: 2px dashed #7d7c7c
            }

            section.trafic .visual .signs .filterIco .bdrBottom {
                position: absolute;
                display: block;
                top: 110px;
                left: 50%;
                z-index: 1;
                width: 1px;
                height: 60px;
                border-left: 2px dashed #7d7c7c
            }

section.accounts {
    position: relative;
    display: block;
    margin-bottom: 100px
}

    section.accounts .container {
        position: relative;
        display: flex;
        gap: 100px;
        align-items: center;
        justify-content: space-between
    }

        section.accounts .container .textInfo {
            position: relative;
            display: block;
            width: 230px;
            flex-shrink: 0
        }

            section.accounts .container .textInfo h2 {
                display: block;
                font-size: 20px;
                font-weight: 500;
                color: #000;
                font-style: normal;
                line-height: 1.5
            }

                section.accounts .container .textInfo h2 span {
                    display: block;
                    font-size: 52px;
                    font-weight: 800;
                    color: #1c2841;
                    font-style: normal;
                    line-height: 1.5
                }

        section.accounts .container .logos {
            width: 100%
        }

            section.accounts .container .logos ul {
                display: flex;
                align-items: center;
                flex-flow: wrap;
            }

                section.accounts .container .logos ul.top {
                    justify-content: flex-start
                }

                section.accounts .container .logos ul.bottom {
                    justify-content: flex-end
                }

section.what {
    position: relative;
    display: block;
    margin-bottom: 100px
}

    section.what .panel {
        position: relative;
        display: flex;
        justify-content: space-between;
        gap: 25px;
        flex-shrink: 0;
        margin-bottom: 30px;
        flex-flow: wrap;
    }

        section.what .panel li {
            display: flex;
            align-items: flex-end;
            width: calc(33.33% - 25px);
            flex-shrink: 0
        }

            section.what .panel li:first-child .headline {
                padding-left: 0px;
                padding-top: 0px;
            }

            section.what .panel li .headline {
                padding: 40px
            }

                section.what .panel li .headline h2 {
                    display: block;
                    margin-bottom: 30px;
                    font-size: 44px;
                    font-weight: 700;
                    color: #000;
                    font-style: normal;
                    line-height: 1.5
                }

                section.what .panel li .headline p {
                    font-size: 18px;
                    font-weight: 500;
                    color: #000;
                    line-height: 1.5
                }

            section.what .panel li .item {
                position: relative;
                display: block;
                padding: 30px;
                border-radius: 7px;
                background: #fff;
                box-shadow: 0 0 17px 0 rgba(0,0,0,.06);
                top: 0;
                transition: .3s all;
                cursor: default
            }

        section.what .panel.fix li .item {
            height: 100%
        }

        section.what .panel li .item .title {
            display: flex;
            align-items: center;
            gap: 30px;
            font-size: 21px;
            font-weight: 800;
            color: #1c2841;
            font-style: normal;
            line-height: normal;
            margin-bottom: 40px
        }

        section.what .panel li .item p {
            font-size: 18px;
            font-weight: 500;
            color: #000;
            font-style: normal;
            line-height: 1.5
        }

section.fakeClick {
    position: relative;
    display: block;
    margin-bottom: 100px
}

    section.fakeClick .inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        background-color: #fff;
        padding: 30px 40px;
        padding-bottom: 100px
    }

        section.fakeClick .inner .textInfo {
            position: relative;
            width: 35%
        }

        section.fakeClick .inner .visual {
            position: relative;
            width: 50%
        }

            section.fakeClick .inner .visual .visualInner {
                position: absolute;
                display: block;
                left: 0;
                top: 0
            }

        section.fakeClick .inner .textInfo h2 {
            font-family: Poppins,sans-serif;
            font-size: 32px;
            font-weight: 400;
            color: #1c2841;
            font-style: normal;
            line-height: 1.5;
            margin-bottom: 30px
        }

        section.fakeClick .inner .textInfo p {
            display: block;
            margin-bottom: 40px;
            font-family: Murecho,sans-serif;
            font-size: 21px;
            font-weight: 400;
            color: #1c2841;
            font-style: normal;
            line-height: 1.5
        }

        section.fakeClick .inner .textInfo .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-shrink: 0
        }

        section.fakeClick .inner .textInfo .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-shrink: 0;
            width: fit-content;
            border-radius: 4px;
            background: #ff3800;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            font-style: normal;
            text-decoration: none;
            padding: 10px 30px;
            margin-bottom: 30px
        }

section.services {
    margin-bottom: 100px
}

    section.services h2 {
        position: relative;
        display: block;
        width: fit-content;
        margin: 0 auto 30px;
        font-size: 36px;
        font-weight: 800;
        color: #000;
        font-style: normal;
        text-align: center;
        line-height: 1.5
    }

    section.services p.text {
        position: relative;
        display: block;
        width: fit-content;
        margin: 0 auto 30px;
        font-size: 18px;
        font-weight: 500;
        color: #000;
        font-style: normal;
        text-align: center;
        line-height: 1.5
    }

    section.services .top {
        position: relative;
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        margin-bottom: 30px
    }

        section.services .top .left {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 320px;
            height: 450px;
            flex-shrink: 0;
            border-radius: 18px;
            background: #232642
        }

            section.services .top .left .item {
                margin: 10px 0
            }

                section.services .top .left .item p {
                    display: block;
                    text-align: center;
                    font-size: 22px;
                    font-weight: 800;
                    color: #fff;
                    font-style: normal;
                    line-height: 1.5
                }

        section.services .top .right {
            position: relative;
            display: block;
            width: calc(100% - 320px - 60px);
            height: 100%
        }

            section.services .top .right .platforms {
                position: relative;
                display: flex;
                gap: 20px;
                align-items: flex-start;
                justify-content: space-between;
                width: 100%;
                margin-bottom: 80px
            }

                section.services .top .right .platforms li {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    align-items: center;
                    box-sizing: border-box;
                    padding: 40px 16px;
                    width: calc(25% - 20px);
                    height: 220px;
                    text-align: center;
                    background-color: #fff;
                    border-radius: 7px;
                    box-shadow: 0 0 17px 0 rgba(0,0,0,.06);
                    top: 0;
                    transition: .3s all;
                    cursor: default
                }

                    section.services .top .right .platforms li span {
                        display: block;
                        text-align: center
                    }

    section.services .logos {
        position: relative;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        justify-content: center;
        width: 100%
    }

        section.services .logos li {
            position: relative;
            display: flex;
            flex: 1;
            justify-content: center;
            align-items: center;
            width: 110px;
            height: 110px;
            border-radius: 10px;
            background-color: #fff;
            transition: .3s all
        }

section.news {
    margin-bottom: 40px
}

    section.news h2 {
        position: relative;
        display: block;
        width: fit-content;
        margin: 0 auto 30px;
        font-size: 33px;
        font-weight: 800;
        color: #000;
        font-style: normal;
        text-align: center;
        line-height: 1.5
    }

    section.news p.text {
        position: relative;
        display: block;
        width: fit-content;
        margin: 0 auto 40px;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        font-style: normal;
        text-align: center;
        line-height: 1.5
    }

    section.news .newsPanel {
        position: relative;
        display: flex;
        gap: 40px;
        justify-content: space-between;
        flex-shrink: 0
    }

        section.news .newsPanel .mainNews {
            position: relative;
            display: block;
            flex-shrink: 0;
            width: calc(100% - 425px - 40px)
        }

            section.news .newsPanel .mainNews .visual {
                position: relative;
                display: block;
                z-index: 1;
                width: 100%;
                height: 90%;
                flex-shrink: 0;
                border-radius: 10px;
                overflow: hidden;
                text-indent: -9999px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

                section.news .newsPanel .mainNews .visual:before {
                    position: absolute;
                    display: block;
                    content: '';
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(98deg,#fff1e9 0,rgba(255,241,233,0) 91.64%)
                }

            section.news .newsPanel .mainNews .textInfo {
                position: absolute;
                display: flex;
                z-index: 2;
                left: 2%;
                bottom: 0;
                width: 90%;
                padding: 20px 40px;
                border-radius: 10px;
                background-color: #fff
            }

                section.news .newsPanel .mainNews .textInfo:before {
                    position: relative;
                    display: block;
                    content: '';
                    width: 16px;
                    margin-right: 20px;
                    flex-shrink: 0;
                    background: var(--Gradient,linear-gradient(180deg,#2e47f9 0,rgba(217,217,217,0) 100%))
                }

                section.news .newsPanel .mainNews .textInfo h3 {
                    display: block;
                    margin-bottom: 20px;
                    font-size: 24px;
                    font-weight: 600;
                    color: #000;
                    font-style: normal;
                    line-height: 1.5
                }

                section.news .newsPanel .mainNews .textInfo p {
                    display: block;
                    font-size: 16px;
                    font-weight: 400;
                    color: #000;
                    font-style: normal;
                    line-height: 1.5
                }

        section.news .newsPanel .otherNews {
            position: relative;
            display: block;
            flex-shrink: 0;
            width: 425px
        }

            section.news .newsPanel .otherNews ul {
                position: relative;
                display: block
            }

                section.news .newsPanel .otherNews ul li {
                    position: relative;
                    display: flex;
                    align-items: flex-start;
                    gap: 20px;
                    cursor: pointer;
                    box-sizing: border-box;
                    padding: 25px;
                    margin-bottom: 20px;
                    background-color: #fff;
                    border-radius: 0 10px 10px 0
                }

                    section.news .newsPanel .otherNews ul li .icon {
                        flex-shrink: 0;
                        padding-top: 5px;
                        width: 32px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                        section.news .newsPanel .otherNews ul li .icon > svg {
                            width: 100%;
                        }

                    section.news .newsPanel .otherNews ul li.selected:before {
                        position: absolute;
                        display: block;
                        content: '';
                        width: 6px;
                        height: 100%;
                        top: 0;
                        left: -6px;
                        background: var(--Gradient,linear-gradient(180deg,#2e47f9 0,rgba(217,217,217,0) 100%))
                    }

                    section.news .newsPanel .otherNews ul li:last-child {
                        margin-bottom: 0
                    }

                    section.news .newsPanel .otherNews ul li .textInfo .title {
                        display: block;
                        margin-bottom: 20px;
                        font-size: 21px;
                        font-weight: 600;
                        color: #1c2841;
                        line-height: normal;
                        font-style: normal
                    }

                    section.news .newsPanel .otherNews ul li .textInfo p {
                        display: block;
                        font-size: 16px;
                        font-weight: 400;
                        color: #000;
                        line-height: 1.5;
                        font-style: normal
                    }

.how-cover {
    position: relative;
    display: block;
    margin-bottom: 20px
}

    .how-cover .inner {
        position: relative;
        display: flex;
        width: 100%;
        height: 610px;
        align-items: center;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }

        .how-cover .inner:before {
            position: absolute;
            display: block;
            content: '';
            width: 100%;
            height: 100%;
            z-index: 1;
            top: 0;
            left: 0;
            background: rgba(28,40,65,.7)
        }

        .how-cover .inner .container {
            z-index: 2
        }

        .how-cover .inner .contentInner {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between
        }

            .how-cover .inner .contentInner h1 {
                display: block;
                margin-bottom: 20px;
                font-size: 46px;
                font-weight: 800;
                color: #f2f2f2;
                line-height: 1.4;
                font-style: normal
            }

            .how-cover .inner .contentInner p {
                display: block;
                margin-bottom: 30px;
                font-size: 21px;
                font-weight: 400;
                color: #fff;
                font-style: normal;
                line-height: 1.5
            }

            .how-cover .inner .contentInner .freetry {
                position: relative;
                display: flex;
                flex-shrink: 0;
                justify-content: center;
                align-items: center;
                gap: 10px;
                width: fit-content;
                padding: 12px 30px;
                text-decoration: none;
                border-radius: 7px;
                background: #ff3800;
                font-size: 16px;
                font-weight: 700;
                color: #fff
            }

        .how-cover .inner .container .top {
            position: relative;
            display: flex;
            gap: 40px;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 80px
        }

            .how-cover .inner .container .top h2 {
                position: relative;
                display: block;
                width: 100%;
                max-width: 500px;
                font-size: 36px;
                font-weight: 800;
                color: #f2f2f2;
                font-style: normal;
                line-height: 1.5
            }

            .how-cover .inner .container .top .buttons {
                position: relative;
                display: flex;
                gap: 40px;
                flex-shrink: 0;
                align-items: center;
                justify-content: space-between;
                padding-top: 10px
            }

        .how-cover .inner .top .buttons .btn {
            position: relative;
            display: flex;
            flex-shrink: 0;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 60px;
            border: 1.705px solid #f2f2f2;
            font-size: 22px;
            font-weight: 800;
            font-style: normal;
            color: #f2f2f2
        }

            .how-cover .inner .top .buttons .btn.selected {
                color: #1c2841;
                background-color: #f2f2f2
            }

        .how-cover .inner .info {
            position: relative;
            display: flex;
            flex-shrink: 0;
            gap: 30px;
            align-items: flex-start;
            justify-content: space-between
        }

            .how-cover .inner .info .item {
                position: relative;
                display: block;
                flex-shrink: 0;
                width: 33%;
                background-color: #fff;
                padding: 20px 30px;
                height: 160px;
                overflow: hidden
            }

                .how-cover .inner .info .item .title {
                    position: relative;
                    display: flex;
                    flex-shrink: 0;
                    align-items: center;
                    width: 100%
                }

                    .how-cover .inner .info .item .title strong {
                        margin-right: 20px
                    }

                    .how-cover .inner .info .item .title .ico {
                        margin-left: auto;
                        flex-shrink: 0
                    }

                .how-cover .inner .info .item .value {
                    font-size: 45px;
                    font-weight: 600;
                    color: #000;
                    font-style: normal;
                    line-height: normal
                }



        /******/
        .how-cover .inner .dataInfo {
            position: relative;
            display: block;
            width: 50%;
            flex-shrink: 0;
        }

        .how-cover .inner .dataInfo {
            position: relative;
            display: block;
            width: 50%;
            flex-shrink: 0;
        }

            .how-cover .inner .dataInfo .tabs {
                position: relative;
                display: block;
                margin-bottom: 30px;
            }

                .how-cover .inner .dataInfo .tabs ul {
                    position: relative;
                    display: flex;
                    gap: 6px;
                    width: fit-content;
                    margin-left: auto;
                    margin-right: 0;
                }

                    .how-cover .inner .dataInfo .tabs ul li a {
                        position: relative;
                        display: block;
                        font-size: 14px;
                        font-weight: 400;
                        color: #fff;
                        font-style: normal;
                        text-decoration: none;
                        padding: 10px 20px;
                        border-radius: 42px;
                        border: 1.2px solid #fff;
                    }

                        .how-cover .inner .dataInfo .tabs ul li a.selected {
                            font-weight: bold;
                            background-color: #fff;
                            color: #1C2841;
                        }


            .how-cover .inner .dataInfo .dataPanels {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-shrink: 0;
                gap: 4%;
            }

                .how-cover .inner .dataInfo .dataPanels .panel {
                    position: relative;
                    display: block;
                    width: 48%;
                }

                    .how-cover .inner .dataInfo .dataPanels .panel .item {
                        background-color: #fff;
                        border-radius: 4px;
                        box-sizing: border-box;
                        padding: 20px;
                        margin-bottom: 20px;
                    }

                        .how-cover .inner .dataInfo .dataPanels .panel .item .title {
                            position: relative;
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            flex-shrink: 0;
                            margin-bottom: 20px;
                            font-size: 16px;
                            font-weight: 800;
                            color: #000;
                            font-style: normal;
                        }

                            .how-cover .inner .dataInfo .dataPanels .panel .item .title i {
                                display: flex;
                            }

                            .how-cover .inner .dataInfo .dataPanels .panel .item .title .graph {
                                margin-left: auto;
                                margin-right: 0;
                            }

                        .how-cover .inner .dataInfo .dataPanels .panel .item .numbers {
                            display: flex;
                            flex-shrink: 0;
                            justify-content: space-between;
                            align-items: center;
                        }

                            .how-cover .inner .dataInfo .dataPanels .panel .item .numbers strong {
                                font-size: 40px;
                                font-style: normal;
                                font-weight: 900;
                                line-height: normal;
                                letter-spacing: -0.804px;
                            }

                            .how-cover .inner .dataInfo .dataPanels .panel .item .numbers span {
                                margin-left: auto;
                                margin-right: 0;
                                font-size: 28px;
                                font-weight: 700;
                                font-style: normal;
                                line-height: normal;
                                letter-spacing: -0.585px;
                            }

                                .how-cover .inner .dataInfo .dataPanels .panel .item .numbers span.red {
                                    color: #E18695;
                                }

                                .how-cover .inner .dataInfo .dataPanels .panel .item .numbers span.green {
                                    color: #3AB37E;
                                }



/******/





.svgWrapper {
    position: relative;
    width: 100%
}

@keyframes moveUpDown {
    0% {
        transform: translateY(-70%)
    }

    50% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-70%)
    }
}

.btn-hv {
    position: relative;
    overflow: hidden
}

    .btn-hv:hover :is(svg,span) {
        color: #fff;
        filter: brightness(0) invert(1)
    }

    .btn-hv::before {
        content: "";
        position: absolute;
        transition: .5s all
    }

.btn-hv-left::before {
    width: 0%;
    height: 100%;
    left: 0
}

.btn-hv-left:hover::before {
    width: 100%
}

.btn :is(svg,span) {
    position: relative
}

.btn.demo::before {
    background: #fa311d
}

.btn.try::before {
    background: #b52902
}

.btn:hover {
    box-shadow: 1px 1px 10px rgb(0 0 0 / 30%)
}

.btn {
    transition: .3s all
}

section.accounts .container .logos ul > li {
    position: relative;
    top: 0;
    transition: .3s all;
    padding: 10px 20px;
}

    section.accounts .container .logos ul > li:hover {
        top: -10px
    }


    section.accounts .container .logos ul > li > a {
        display: flex;
        width: 236px;
        height: 108px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0px 0px 17px rgb(0 0 0 / 6%);
        padding: 12px 32px;
        align-items: center;
        justify-content: center;
    }

        section.accounts .container .logos ul > li > a > img {
            max-width: 100%;
        }

section.what .panel li .item:hover {
    top: -10px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 22%)
}

section.services .top .right .platforms li:hover {
    top: -10px;
    box-shadow: 0 0 17px 0 rgb(0 0 0 / 15%)
}

section.services .logos li > svg {
    position: relative;
    transform: scale(1);
    transition: .3s all
}

section.services .logos li:hover > svg {
    transform: scale(.8)
}

section.services .logos li:hover {
    box-shadow: 0 0 17px 0 rgb(0 0 0 / 16%)
}

.bgPositionAnim {
    animation: bgPositionY 4s infinite linear;
    display: block
}

@keyframes bgPositionY {
    0% {
        background-position-y: 0
    }

    50% {
        background-position-y: -45px
    }

    100% {
        background-position-y: 0
    }
}

@-moz-keyframes bgPositionY {
    0% {
        background-position-y: 0
    }

    50% {
        background-position-y: -45px
    }

    100% {
        background-position-y: 0
    }
}

@-webkit-keyframes bgPositionY {
    0% {
        background-position-y: 0
    }

    50% {
        background-position-y: -45px
    }

    100% {
        background-position-y: 0
    }
}


.textInfoBottoms {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 40px
}

    .textInfoBottoms > .stars {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 16px
    }

        .textInfoBottoms > .stars > span {
            display: block;
            font-weight: 800
        }

    .textInfoBottoms > .social {
        display: flex;
        align-items: center;
        gap: 10px
    }

.clickChart {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end
}

.clickChartTab {
    position: relative;
    display: flex;
    gap: 10px
}

    .clickChartTab > a {
        position: relative;
        display: flex;
        padding: 12px 24px;
        border: solid 1.2px #fff;
        border-radius: 42px;
        font-weight: 400;
        font-size: 14px;
        color: #fff;
        line-height: 30px;
        text-decoration: auto;
        transition: .3s all;
        cursor: pointer
    }

        .clickChartTab > a.active {
            background: #fff;
            font-weight: 800;
            color: #1c2841
        }

.clickChartRow {
    position: relative;
    display: none;
    align-items: center;
    gap: 40px
}

.clickChartItem {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
    border-radius: 6px;
    padding: 20px 24px;
    min-width: 270px
}

.clickChartItem_head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.clickChartCol {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.clickChartItem_body {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 32px
}

    .clickChartItem_body > strong {
        display: block;
        font-weight: 900;
        font-size: 40px;
        line-height: 50px;
        color: #000
    }

    .clickChartItem_body > span {
        display: block;
        font-weight: 700;
        font-size: 32px;
        line-height: 32px;
        white-space:nowrap;
    }

        .clickChartItem_body > span.negative {
            color: #e18695
        }

        .clickChartItem_body > span.positive {
            color: #3ab37e
        }

.clickChartItem_head--title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 800;
    font-size: 16px;
    color: #000
}

    .clickChartItem_head--title > i {
        display: flex
    }

.clickChartRow.open {
    display: flex
}

.how-about {
    position: relative;
    display: block;
    margin-bottom: 74px
}

    .how-about h2 {
        display: block;
        text-align: center;
        font-weight: 800;
        font-size: 36px;
        line-height: 57px;
        color: #000;
        margin-bottom: 10px
    }

    .how-about p {
        display: block;
        text-align: center;
        font-weight: 400;
        font-size: 21px;
        line-height: 36px;
        color: #000
    }

.howListSect {
    position: relative;
    display: block;
    margin-bottom: 100px
}

.howRow {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 120px
}

.howCol {
    position: relative;
    display: flex;
    flex-flow: wrap;
    gap: 50px;
    align-items: center
}

.howColText {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(45% - 50px);
    gap: 16px
}

.howColImg {
    position: relative;
    display: flex;
    width: 55%;
    align-items: center;
    justify-content: flex-end
}

    .howColImg > img {
        max-width: 100%
    }

.howColText > strong {
    display: block;
    font-weight: 900;
    font-size: 32px;
    color: #000;
    line-height: 52px
}

.howColText > p {
    display: block;
    font-size: 21px;
    line-height: 36px
}

.howCol:nth-child(even) {
    flex-direction: row-reverse
}

    .howCol:nth-child(even) .howColImg {
        justify-content: flex-start
    }


.homeButtonRow {
    position: relative;
    display: flex;
}

.statisticItem > img {
    max-width: 100%;
}

section.what .panel li .item .title > img {
    max-width: 100%;
}
