/* Eric Meyer's CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    height: 100%;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Eric Meyer's CSS Reset */


body {
    font-family: 'Gilroy';
    font-size: 20px;
    color: #3C3A45;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

p {
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    display: none;
}

.container {
    max-width: 1760px;
    width: 100%;
    margin: 0 auto;
}

.container-form {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
}

.color-violet {
    color: #2200DF;
}

.bg-violet {
    background-color: #2200DF;
}

.color-black {
    color: #3C3A45;
}

.bg-black {
    background-color: #3C3A45;
}

.color-grey {
    color: #909298;
}

.bg-grey {
    background-color: #909298;
}

.btn {
    display: inline-block;
    padding: 12px 27px;
    border: 1px solid #3C3A45;
    border-radius: 35px;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
}

.btn_big {
    padding: 21px 48px;
}

.btn_transparent {
    border: 1px solid #2200DF;
    color: #2200DF;
}

.btn_transparent:hover {
    background-color: #2200DF;
    color: #fff;
}

.btn_violet {
    background-color: #2200DF;
    color: #fff;
}

.btn_violet:hover {
    background-color: #583CF7;
}

.btn_light-grey {
    background-color: #EDECF3;
    color: #3C3A45;
    border-color: transparent;
}

.btn_light-grey:hover {
    background-color: #3C3A45;
    color: #fff;
}

.w-100 {
    width: 100%;
}

.bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.section-header {
    font-family: 'Unbounded';
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;
}

.section-subtitle {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
}

.header {
    transition: 0.3s;
}
.header.fixed {
    width: 100%;
    position: fixed;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0px 4px 27.2px 0px #C6C6C63B;
}
.head-wrap {
    padding: 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.head-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.logo {
    margin-right: 20px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.head-left .text {
    font-size: 28px;
    font-weight: 500;
}

.burger {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url('../img/icon-burger.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    margin-left: 54px;
}
.burger.active{
    background-image: url('../img/icon-burger-close.svg');
}
.nav-menu{
    position: absolute;
    top: 74px;
    left: 0;
    height: 100vh;
    width: 100%;
    padding: 45px 30px 60px 0;
    background: #fff;
    z-index: 9;
    display: none;
}

.nav-menu a{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #3C3A45;
    text-decoration: none;
    padding: 15px 10px 15px 0;
}

.nav-menu a:hover{
    color: #2200DF;
}

.head-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.block-cont {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.block-cont a {
    font-size: 18px;
    color: unset;
    text-decoration: none;
}

.icon__mail,
.icon__tel {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 14px;
}

.icon__mail {
    background: url('../img/icon-mail.svg') no-repeat center;
}

.icon__tel {
    background: url('../img/icon-tel.svg') no-repeat center;
}

.top-block {
    padding: 60px 15px 60px 50px;
    background-color: #EBE8F2;
    background-image: url('../img/top-block-bg.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    /* background-size: 55%; */
    background-size: 63%;
    display: flex;
    border-radius: 30px;
}

.top-block .section-header {
    text-align: center;
    margin-bottom: 24px;
}

.top-block_btn-wrap {
    margin: 65px 0;
}

.top-block_content {
    max-width: 723px;
    width: 100%;
    background-color: #fff;
    padding: 55px 85px;
    border-radius: 30px;
    margin-right: 55px;
}

.top-block .btn {
    width: 100%;
    padding: 21px 27px;
    margin-bottom: 10px;
}

.top-block_text-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.stars {
    display: inline-block;
    width: 134px;
    height: 23px;
    background: url('../img/stars-violet.png') no-repeat center;
    background-size: contain;
    margin-right: 15px;
}

.top-block_icon {
    max-width: 850px;
    width: 100%;
    position: relative;
}

.icon-img {
    width: 95px;
    height: 95px;
    background-color: #ffff;
    border-radius: 25px;
    position: absolute;
    border: 1px solid #FFFFFF;
}

.icon-img_one {
    background-image: url('../img/top-block-icon-one.png');
    background-repeat: no-repeat;
    background-position: center;
    top: 170px;
    /* left: 0; */
    left: auto;
    right: 50px;
}

.icon-img_two {
    background-image: url('../img/top-block-icon-two.png');
    background-repeat: no-repeat;
    background-position: center;
    /* top: 95px; */
    /* right: 85px; */
    top: 80px;
    right: 200px;
}

.icon-text {
    padding: 23px 30px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    position: absolute;
    min-height: 95px;
    border: 1px solid #FFFFFF;
}

.icon-text_one {
    /* min-width: 302px; */
    /* left: 0; */
    /* bottom: 0; */
    width: 250px;
    /* left: calc(100% - 387px); */
    right: 0;
    bottom: 50px;
    padding: 23px 20px;
}

.icon-text_two {
    /* min-width: 388px; */
    right: 0;
    /* bottom: 44%; */
    width: 250px;
    /* margin: auto; */
    /* left: calc(100% - 387px); */
    bottom: 165px;
    padding: 23px 20px;
}

.icon-text .text {
    /* margin-left: 24px; */
    margin-left: 16px;
}

.checkmark {
    width: 38px;
    height: 38px;
    background: url('../img/checkmark.png') no-repeat center;
    flex-shrink: 0;
}

.why {
    padding: 140px 0;
}

.why-wrap {
    display: flex;
    flex-wrap: wrap;
}

.why-left {
    max-width: 630px;
    width: 100%;
    margin-right: 70px;
}

.why-left .section-header {
    margin-bottom: 55px;
}

.why-custom-block {
    background: #F9F7FF;
    padding: 10px 15px 10px 45px;
    margin-top: 20px;
    border-radius: 100px;
    position: relative;
}

.why-custom-block:before {
    content: '';
    background: #3C3A45;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.why-right {
    max-width: 954px;
    width: 100%;
}

.why-right .top-text {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.why-card-wrap {
    display: flex;
    flex-wrap: wrap;
}

.why-card {
    background: #F9F7FF;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.why-card:nth-child(-n+2) {
    margin-bottom: 30px;
}

.why-card_img {
    width: 105px;
    height: 100px;
    background: #fff;
    border-radius: 17px;
    margin-right: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card_img:before {
    content: '';
    width: 80px;
    height: 85px;
    background-repeat: no-repeat;
    background-size: contain;
}

.why-card_img.one:before {
    background-image: url('../img/why-icon-one.png');
}

.why-card_img.two:before {
    background-image: url('../img/why-icon-two.png');
}

.why-card_img.three:before {
    background-image: url('../img/why-icon-three.png');
}

.why-card_img.four:before {
    background-image: url('../img/why-icon-four.png');
}

.why-card_text {
    line-height: 1.2;
}

.why-choose {
    background-color: #F9F7FF;
    padding: 140px 0;
}

.circle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 175px;
}

.circle-container {
    position: relative;
    width: 748px;
    height: 748px;
    border: 1px solid #DEE1E3;
    border-radius: 50%;
}

.circle-container:before {
    content: '';
    width: 622px;
    height: 622px;
    border-radius: 50%;
    background: url('../img/circle-bg.png') no-repeat center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.circle-container:after {
    content: '';
    width: 110px;
    height: 103px;
    background: url('../img/circle-icon.png') no-repeat center;
    position: absolute;
    top: 213px;
    right: 160px;
}

.circle-container .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2200DF;
}

.dot-text {
    padding: 20px;
    font-size: 18px;
    line-height: 1.2;
    border-radius: 14px;
    background: #fff;
    width: max-content;
    position: absolute;
    cursor: pointer;
    transition: background .5s, color .5s;
    display: none;
}

.dot-text:hover {
    background: #2200DF;
    color: #fff;
    transition: background .5s, color .5s;
}

.dot1 {
    left: 52px;
    bottom: 170px;
}

.dot1 .dot-text,
.dot2 .dot-text,
.dot3 .dot-text,
.dot4 .dot-text,
.dot5 .dot-text,
.dot6 .dot-text {
    right: 100%;
}

.dot8 .dot-text {
    left: 100%;
}

.dot3 .dot-text {
    bottom: -37px;
}

.dot4 .dot-text,
.dot5 .dot-text,
.dot6 .dot-text,
.dot7 .dot-text {
    bottom: 100%;
}

.dot7 .dot-text {
    left: -177.5px;
}

.dot8 .dot-text,
.dot9 .dot-text,
.dot10 .dot-text {
    left: 100%;
    bottom: 100%;
}

.dot11 .dot-text {
    left: 15px;
    bottom: -50px;
}

.dot12 .dot-text,
.dot13 .dot-text {
    left: 10px;
}

.dot2 {
    left: 5px;
    bottom: 285px;
}

.dot3 {
    left: -4px;
    bottom: 365px;
}

.dot4 {
    left: 3px;
    bottom: 440px;
}

.dot5 {
    left: 48px;
    bottom: 560px;
}

.dot6 {
    left: 133px;
    bottom: 660px;
}

.dot7 {
    left: 50%;
    bottom: 99.6%;
}

.dot8 {
    right: 140px;
    bottom: 664px;
}

.dot9 {
    right: 43px;
    bottom: 551px;
}

.dot10 {
    right: 3px;
    bottom: 440px;
}

.dot11 {
    right: -5px;
    bottom: 375px;
}

.dot12 {
    right: 5px;
    bottom: 283px;
}

.dot13 {
    right: 52px;
    bottom: 170px;
}

.presentation {
    padding: 140px 0;
}

.presentation-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.presentation .section-header,
.presentation p {
    margin-bottom: 50px;
}

.presentation-text {
    max-width: 765px;
    width: 100%;
}

.presentation-video {
    max-width: 800px;
    width: 100%;
    height: 395px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.presentation-video:before {
    content: '';
    background: rgba(0, 0, 0, .7);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.presentation-video:after {
    content: '';
    width: 98px;
    height: 98px;
    background: url('../img/icon-play.png') no-repeat center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.presentation-video-block {
    max-width: 388px;
    width: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
}

.presentation-video-block_img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: url('../img/logo.png') no-repeat center;
    margin-right: 20px;
}

.presentation-video-block_text {
    font-size: 28px;
    color: #fff;
}

.presentation-video.active {
    background: none;
}

.presentation-video.active:after {
    content: none;
}

.presentation-video.active:before {
    content: none;
}

.presentation-video.active .presentation-video-block {
    display: none;
}

.presentation-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-w {
    background: #F9F7FF;
    padding: 140px 0;
}

.how-w .section-header {
    margin-bottom: 60px;
}

.how-w-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.how-w-top-item {
    max-width: 500px;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 40px 30px;
}

.how-w-top-item p {
    margin-bottom: 45px;
}

.how-w-top-item_img img {
    width: 150px;
    height: 123px;
    object-fit: contain;
}

.how-w-top-item-big {
    max-width: 660px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
}

.how-w-top-item-big_bg {
    height: 100%;
    background-image: url('../img/how-w-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.how-w-top-item-big_btm {
    margin-top: auto;
    background: #fff;
    padding: 20px;
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
    display: flex;
    align-items: center;
}

.how-w-top-item-big_btm-ic {
    width: 85px;
    height: 85px;
    background: url('../img/how-w-top-big-icon.png') no-repeat center;
    flex-shrink: 0;
}

.how-w-top-item-big_btm-txt {
    line-height: 1.4;
}

.how-w-btm {
    padding: 50px 30px;
    border-radius: 14px;
    background: #fff;
}

.how-w-btm .section-subtitle {
    margin-bottom: 20px;
}

.how-w-btm-item {
    display: flex;
    flex-wrap: wrap;
}

.how-w-btm-item:first-of-type {
    margin-bottom: 60px;
}

.how-w-btm-item ul {
    list-style: unset;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.how-w-btm-item_left {
    max-width: 500px;
    width: 100%;
    margin-right: 70px;
}

.how-w-btm-item_left {
    display: flex;
}

.how-w-btm-item_left-ic {
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-right: 25px;
    flex-shrink: 0;
}

.how-w-btm-item_left-ic.one {
    background-image: url('../img/how-w-btm-ic1.png');
}

.how-w-btm-item_left-ic.two {
    background-image: url('../img/how-w-btm-ic2.png');
}

.how-w-label-row {
    display: flex;
    flex-wrap: wrap;
}

.how-w-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #F9F7FF;
    border-radius: 50px;
    padding: 13px 22px;
    margin: 0 15px 15px 0;
}

.cost {
    padding: 140px 0 55px;
}

.cost .section-header {
    margin-bottom: 40px;
}

.price-head {
    padding: 18px 85px;
    background: #3F3F40;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 6px;
}

.price-item {
    padding: 18px 85px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.price-item .btn {
    padding: 8px 53px;
}

.price-item:nth-child(odd) {
    background: #F0F6FF;
}

.price-item .col_one {
    position: relative;
    padding-left: 20px;
}

.price-item .col_one:before {
    content: '';
    background: #3C3A45;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.col_one,
.col_two,
.col_three,
.col_four {
    width: 25%;
}

.col_four {
    text-align: center;
}

.ind-pay {
    background: #F9F7FF;
    padding: 60px 0;
    margin-bottom: 140px;
}

.ind-pay .section-subtitle {
    margin-bottom: 35px;
}

.ind-pay-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.ind-pay-form .wpcf7-spinner{
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    margin: auto;
}

.ind-pay-form .btn {
    margin-left: auto;
}

.ind-pay-group {
    display: flex;
    align-items: center;
    position: relative;
}

.ind-pay-group:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
    margin-right: 25px;
}

.ind-pay-group.one:before {
    background-image: url('../img/ind-pay-ic1.png');
}

.ind-pay-group.two:before {
    background-image: url('../img/ind-pay-ic2.png');
}

.ind-pay-group.one {
    margin-right: 60px;
}

.ind-pay-group.one label {
    max-width: 235px;
    width: 100%;
    margin-right: 25px;
}

.ind-pay-group input[type=number],
.ind-pay-group .employees,
.ind-pay-group .period-output {
    max-width: 120px;
    width: 100%;
    font-size: 20px;
    padding: 16px;
    text-align: center;
    color: #909298;
    flex-shrink: 0;
}

.ind-pay-group.two {
    margin-right: 125px;
}

.range-wrap {
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-right: 25px;
    flex-shrink: 0;
}

.range-wrap label {
    margin-bottom: 10px;
}

.range-wrap label {
    margin-bottom: 20px;
}

.range-wrap input[type=range] {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 22px;
    accent-color: #DEE1E3;
    background: #F9F7FF;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
}

.range-wrap input[type=range]::-webkit-slider-runnable-track {
    height: 15px;
    background-color: #DEE1E3;
    border-radius: 5px;
}

.range-wrap input[type=range]::-moz-range-track {
    background-color: #DEE1E3;
    border-radius: 5px;
}

.range-wrap input[type=range]::-webkit-slider-runnable-track {
    height: 7px;
}

.range-wrap input[type=range]::-moz-range-track {
    height: 7px;
}

.range-wrap input[type=range]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2200DF;
    margin-top: -6px;
    cursor: pointer;
}

.range-wrap input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #2200DF;
    appearance: none;
    border: 0;
    border-radius: 30px;
    margin-top: -6px;
    cursor: pointer;
}

.range-wrap input[type=range]::-webkit-slider-thumb {
    border-image-outset: 0 100vw;
    border-image-repeat: stretch;
    border-image-slice: 0 1;
    border-image-source: linear-gradient(90deg, #2200DF 50%, #DEE1E3 0);
    border-image-width: calc(50% - 4px) 100vw;
}
.range-wrap input[type=range]::-moz-range-thumb {
    border-image-outset: 0 100vw;
    border-image-repeat: stretch;
    border-image-slice: 0 1;
    border-image-source: linear-gradient(90deg, #2200DF 50%, #DEE1E3 0);
    border-image-width: calc(50% - 4px) 100vw;
}
.promo {
    overflow: hidden;
}

.promo-wrap {
    display: flex;
    flex-wrap: wrap;
}

.promo-item-big {
    max-width: 625px;
    width: 100%;
    padding: 50px 45px 50px 0;
    background: #2200DF;
    color: #fff;
    position: relative;
}

.promo-item-big:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #2200DF;
    position: absolute;
    top: 0;
    left: -100%;
}

.promo-item-big .section-header {
    margin-bottom: 40px;
}

.promo-item-big .btn {
    background: #fff;
    color: #3C3A45;
}

.promo-item-big .btn:hover {
    color: #2200DF;
}

.promo-item_wrap {
    display: flex;
    padding-left: 80px;
    background: #F9F7FF;
}

.promo-item_img {
    width: 160px;
    height: 160px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.promo-item_img.one {
    background-image: url('../img/promo-icon1.png');
}

.promo-item_img.two {
    background-image: url('../img/promo-icon2.png');
}

.promo-item_img.three {
    background-image: url('../img/promo-icon3.png');
}

.promo-item {
    padding: 40px 0;
}

.promo-item:not(.last) {
    margin-right: 85px;
}

.promo-item:not(.last) .promo-item_inner {
    padding-right: 90px;
    border-right: 1px solid #2200DF;
}

.promo-item_inner {
    min-height: 200px;
}

.promo-item.last {
    position: relative;
}

.promo-item.last:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #F9F7FF;
    position: absolute;
    top: 0;
    right: -100%;
}

.block-top-text {
    font-size: 18px;
}

.browser {
    padding: 140px 0 100px;
}

.browser .section-header {
    margin-bottom: 45px;
}

.browser_wrap {
    display: flex;
    flex-wrap: wrap;
}

.browser-item_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.browser_left {
    max-width: 950px;
    width: 100%;
}

.browser-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.browser-item:nth-child(odd) {
    max-width: 595px;
    width: 100%;
}

.browser-item:nth-child(odd) .browser-item_text {
    max-width: 465px;
    width: 100%;
}

.browser-item:nth-child(even) {
    max-width: 350px;
    width: 100%;
}

.browser-item:nth-child(even) .browser-item_text {
    max-width: 220px;
    width: 100%;
}

.browser-item_img {
    max-width: 74px;
    width: 100%;
    height: 74px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 30px;
}

.browser-item_img.one {
    background-image: url('../img/browser-chrome.png');
}

.browser-item_img.two {
    background-image: url('../img/browser-edge.png');
}

.browser-item_img.three {
    background-image: url('../img/browser-mozilla.png');
}

.browser-item_img.four {
    background-image: url('../img/browser-safari.png');
}

.browser_right {
    max-width: 770px;
    width: 100%;
}

.browser_right-bg {
    height: 465px;
    background: url('../img/browser_right-bg.png') no-repeat center;
    background-size: contain;
}

.browser-slider .owl-stage {
    right: 100px;
}

.browser-slider .owl-next,
.browser-slider .owl-prev,
.mobile-slider .owl-next,
.mobile-slider .owl-prev {
    position: absolute;
    top: 0;
    bottom: 0;
}

.slider-nav-btn {
    width: 48px;
    height: 48px;
    background: url('../img/slider-nav.png') no-repeat center;
    background-size: contain;
}
.slider-nav-btn-transp{
    width: 48px;
    height: 48px;
    background: url('../img/slider-nav-transp.png') no-repeat center;
    background-size: contain;
}
.browser-slider .owl-prev,
.mobile-slider .owl-prev {
    left: 0;
    transform: rotate(180deg);
}

.browser-slider .owl-next {
    right: 0;
}
.mobile-slider .owl-next{
    right: 0;
}
.browser-slider.owl-theme .owl-nav [class*=owl-]:hover,
.mobile-slider.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}
.browser-slider .owl-item.active + .owl-item.cloned,
.browser-slider .owl-item.active + .owl-item {
    opacity: .4
}

.mobile {
    padding: 110px 0;
    background: #F9F7FF;
    font-size: 18px;
}

.mobile .section-header {
    margin-bottom: 45px;
}

.mobile_wrap {
    display: flex;
    flex-wrap: wrap;
}

.mobile_left {
    max-width: 885px;
    width: 100%;
    flex-shrink: 0;
}

.mobile-item_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.mobile-item-icon_wrap {
    margin-bottom: 30px;
}

.mobile-item-icon {
    display: inline-block;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 40px;
}

.mobile-item-icon.ios {
    width: 88px;
    background-image: url('../img/mobile-icon-ios.png');
}

.mobile-item-icon.android {
    width: 35px;
    background-image: url('../img/mobile-icon-android.png');
}

.mobile-item-icon.huawei {
    width: 140px;
    background-image: url('../img/mobile-icon-huawei.png');
}

.mobile-item-icon.honor {
    width: 85px;
    background-image: url('../img/mobile-icon-honor.png');
    background-position: 0 16px;
}

.mobile-item {
    width: 47%;
    display: flex;
    flex-direction: column;
}

.mobile-item-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.mobile-item-bottom-icon {
    background-color: #fff;
    border-radius: 50px;
    max-width: 200px;
    width: 100%;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.mobile-item-bottom-icon.gp {
    background-image: url('../img/mobile-icon-gp.png');
}

.mobile-item-bottom-icon.as {
    background-image: url('../img/mobile-icon-as.png');
}

.mobile-item ul {
    list-style: unset;
    padding-left: 20px;
    margin-top: 60px;
    line-height: 1.4;
}

.mobile_right {
    padding-left: 55px;
}

.mobile_right-bg {
    width: 310px;
    /* width: 22%; */
    height: 100%;
    background-image: url('../img/mobile-bg.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    flex-shrink: 0;
    margin-right: 20px;
}

.mobile_right {
    display: flex;
}
.mobile-slider {
    max-width: 475px;
    width: 100%;
}
.mobile-slider .owl-stage {
    right: 100px;
}
.mobile-slider-item {
    max-width: 300px;
    width: 100%;
    height: 100%;
}

.mobile-slider-item a,
.mobile-slider-item img {
    display: block;
    height: 100%;
}

.mobile-slider.owl-carousel .owl-item,
.mobile-slider.owl-carousel .owl-stage,
.mobile-slider.owl-carousel .owl-stage-outer {
    height: 100%;
}

.mobile-slider .owl-item.active + .owl-item.cloned,
.mobile-slider .owl-item.active + .owl-item {
    opacity: .4
}

.faq {
    padding: 140px 0;
}

.faq .section-header {
    margin-bottom: 60px;
}
ul.accordion-list {
    display: block;
    padding: 20px;
}
ul.accordion-list .accordion-item {
    display: block;
    padding: 35px 50px;
    border: 1px solid #DEE1E3;
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -12px;
    cursor: pointer;
}
ul.accordion-list .accordion-item .question {
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
}
ul.accordion-list .accordion-item.active .question {
	font-weight: 500;
    color: #2200DF;
}
ul.accordion-list .accordion-item.active .answer {
	display: block;
}
ul.accordion-list .accordion-item .question:after {
    content: '';
    width: 18px;
    height: 10px;
    display: inline-block;
    background: url('../img/arrow-down.png') no-repeat center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 5px;
    transition: transform 0.2s ease-in-out;
}

ul.accordion-list .accordion-item.active .question:after {
    transform: rotate(180deg);
}
ul.accordion-list .accordion-item .answer {
    font-size: 18px;
    line-height: 1.4;
    color: #909298;
    margin-bottom: 10px;
}

.choose{
	padding: 30px 0;
	background: #3F3F40;
	color: #fff;
}
.choose-wrap{
	display: flex;
	align-items: center;
}
.choose-item-big{
	max-width: 615px;
	width: 100%;
}
.choose-item_wrap{
	display: flex;
	flex-wrap: wrap;
}
.choose-item{
	width: 33%;
	padding: 0 60px;
	border-left: 2px solid rgba(255, 255, 255, .3);
}
.choose-item_img{
	width: 78px;
	height: 78px;
	background-color: #656566;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70%;
	border-radius: 50px;
	margin-bottom: 40px;
}
.choose-item_img.one{
	background-image: url('../img/choise-icon_one.png');
}
.choose-item_img.two{
	background-image: url('../img/choise-icon_two.png');
}
.choose-item_img.three{
	background-image: url('../img/choise-icon_three.png');
}
.choose-item_text{
	font-weight: 500;
}
.contacts-block{
	padding: 30px 0;
	background: #F9F7FF;
}
.contacts-block_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contacts-block-name{
	display: flex;
	align-items: center;
	font-weight: 600;
}
.contacts-block-name img{
	width: 70px;
	height: 64px;
	object-fit: cover;
	margin-right: 30px;
}
.contacts-block-cont{
	display: flex;
	align-items: center;
	font-weight: 500;
}
.contacts-block-cont_img{
	width: 42px;
	height: 42px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-right: 20px;
}
.contacts-block-cont_img.geo{
	background-image: url('../img/contacts-icon-geo.png');
}
.contacts-block-cont_img.tel{
	background-image: url('../img/contacts-icon-tel.png');
}
.contacts-block-cont_text a{
	color: inherit;
	text-decoration: none;
}
.contacts-block-cont_text a:not(:last-of-type){
	margin-right: 20px;
}

.reviews{
	padding: 140px 0;
}
.reviews .section-header{
	margin-bottom: 60px;
}
.reviews-slider{
	display: flex;
}
.reviews_wrap{
	position: relative;
}
.reviews-slider .owl-stage{
	right: 250px;
}
.reviews-slider .owl-nav{
	width: max-content;
	position: absolute;
	top: -120px;
	right: 0;
}
.reviews-slider .owl-prev{
	transform: rotate(-180deg);
}
.reviews-slider.owl-theme .owl-nav [class*=owl-]:hover{
	background: transparent;
}
.reviews-item{
	padding: 40px;
	border-radius: 15px;
	background: #F9F7FF;
}
.reviews-item-body{
	font-size: 18px;
	line-height: 1.4;
}
.reviews-item-head{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.reviews-item-head_left span{
	display: block;
}
.reviews-item-head_left .post{
	font-size: 16px;
	color: #9E9BAD;
}
.reviews-item-head_right{
	font-size: 16px;
	font-weight: 500;
	padding: 15px 15px 15px 30px;
	background: #fff;
	border-radius: 50px;
	position: relative;
}
.reviews-item-head_right:before{
	content: '';
	width: 7px;
	height: 7px;
	background: #2200DF;
	border-radius: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 15px;
	margin: auto;
}
.any-questions{
    padding-bottom: 140px;
}
.any-questions_wrap{
	max-width: 1760px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
	padding: 55px 75px 55px 40px;
	background: #F9F7FF;
	border-radius: 24px;
}
.any-questions-cont{
	max-width: 600px;
	width: 100%;
	flex-shrink: 0;
}
.any-questions-cont_img{
	width: 165px;
	height: 165px;
	background: url('../img/any-questions-img.png') no-repeat center;
}
.any-questions-form_wrap{
    max-width: 940px;
    width: 100%; 
}
.any-questions-form{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.inp-wrap{
	border-radius: 10px;
	background: #fff;
	margin-bottom: 10px;
    overflow: hidden;
}
.inp-wrap.w-100{
	width: 100%;
}
.inp-wrap.w-50{
	width: 49%;
}
.inp-wrap input,
.inp-wrap textarea{
	border: none;
	outline: none;
	width: 100%;
	height: 100%;
	font-size: 15px;
	color: #909298;
    padding: 21px 15px;
}
.inp-wrap input:focus,
.inp-wrap input:active{
	background-color: #fff;
}
.any-questions-form .send{
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.politica{
	font-size: 16px;
	color: #909298;
	margin-left: 35px;
}
.politica a{
	color: inherit;
}
.footer{
    padding: 20px 0;
    background: #3F3E40;
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
}
.footer a{
    color: inherit;
    text-decoration: none;
}
.footer-phone a,
.footer-email a{
    display: block;
    font-size: 18px;
}
.footer-phone a{
    margin-bottom: 7px;
}
.footer-loc{
    font-size: 18px;
    line-height: 1.4;
}
.footer_wrap{
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: space-between; */
    display: grid;
    grid: auto / 350px auto;
    /* row-gap: 40px; */
    column-gap: 90px;
}
.footer_top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* padding-left: 100px; */
    grid-column: 2;
    grid-row: 1;
}
.footer_bottom {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    /* padding-left: 100px; */
    gap: 60px;
    grid-column: 2;
    grid-row: 2;
}
.footer_policy {
    flex: 1 0 auto;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
}
.footer-logo{
    padding-right: 120px;
    border-right: 1px solid rgba(255, 255, 255, .58);
    grid-column: 1;
    grid-row: 1 / 3;
}
.footer-logo img{
    width: 80px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
}
.footer-logo p:not(.copy){
    line-height: 1.2;
    margin-bottom: 30px;
}
.footer-cont-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-phone,
.footer-loc,
.footer-email a{
    position: relative;
}
.footer-phone,
.footer-loc{
    padding-left: 40px;
}
.footer-email{
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    padding-left: 30px;
    text-align: right;
}
.footer-phone:before,
.footer-loc:before,
.footer-email a:before{
    content: '';
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
}
.footer-phone:before,
.footer-loc:before{
    top: 0;
    left: 0;
}
.footer-email a:before{
    top: 0;
    left: -30px;
}

.footer-phone:before{
    background-image: url('../img/icon-tel.png');
}
.footer-loc:before{
    background-image: url('../img/icon-loc.png');
}
.footer-email a:before{
    background-image: url('../img/icon-email.png');
}
.web-dev img{
    width: 255px;
    height: 55px;
    object-fit: contain;
}

.overlay{
    position: fixed;
    background: rgba(0, 0, 0, .4);
    width: 100%; 
    height: 100%;
    top: 0; 
    left: 0;
    cursor: pointer;
    display: none;
    z-index: 98;
}

.popup{
    max-width: 560px;
    width: 100%;
    height: max-content;
    background: #F9F7FF;
    padding: 50px 35px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 99;
    display: none;
}

.popup-close,
.popup-close-success{
    display: block;
    width: 24px;
    height: 24px;
    background: url('../img/popup-close.png') no-repeat center;
    padding: 5px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}
.popup-form-head{
    font-weight: 500;
    margin-bottom: 30px; 
    line-height: 1.4;
}
.popup-form .btn{
    margin: 30px 0;
}
.popup-form-priv-pol{
    font-size: 16px;
    color: #909298;
}
.popup-form-priv-pol a{
    color: inherit;
}

.callback-success,
.order-impl-success{
    max-width: 560px;
    width: 100%;
    height: max-content;
    padding: 60px 60px 70px 60px;
    background: #F9F7FF;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 99;
    display: none;
}

.callback-success-img,
.order-impl-success-img{
    width: 50px;
    height: 50px;
    background: url('../img/success.png') no-repeat center;
    background-size: contain;
    margin: 0 auto 35px auto;
}
.callback-success-text,
.order-impl-success-text{
    font-weight: 500;
    text-align: center;
}
.user-agr,
.priv-pol{
    cursor: pointer;
}

.user-agr-content,
.priv_policy-content {
    width: 95%;
    height: 95%;
    overflow-x: scroll;
    background: #F9F7FF;
    padding: 10px 30px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 99;
    border-radius: 15px;
    display: none;
}
.user-agr-content ul,
.priv_policy-content ul{
    list-style: unset;
    margin: 10px 30px;
}
.user-agr-content .section-header,
.priv_policy-content .section-header{
    margin-bottom: 30px;
}
.button-up{
    width: 48px;
    height: 48px;
    background: url('../img/button_up.png') no-repeat center;
    background-size: contain;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    cursor: pointer;
    display: none;
}

/* for mobile */
.menu-mobile-conacts{
    display: none;
}
.circle-block-mobile{
    display: none;
}
.showMoreBtn{
    display: none;
}
/* for mobile */




.modalpolitika_wrap {
    position: fixed;
    width: 100%;
    bottom: 20px;
    z-index: 10;
}
.modalpolitika {
    max-width: 320px;
    background-color: #fff;
    border-radius: 20px;
    margin: 0 auto;
    padding: 20px 20px;
    border: 2px solid #2200df;
    color: #272628;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.modalpolitika a {
    color: #272628;
    text-decoration: none;
}
.modalpolitika a:hover {
    color: #2200df;
}
.modalpolitika_button {
    cursor: pointer;
    background-color: #2200df;
    border-radius: 20px;
    padding: 6px 50px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}
.modalpolitika_button:hover {
    opacity: 0.7;
}

.page .section-header {
    margin-bottom: 40px;
}
.page {
    padding: 60px 10px;
}
.page p {
    margin-bottom: 6px;
}
.page h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
}
.page ul {
    list-style: disc;
    padding-left: 20px;
}
.page li {
    margin-bottom: 10px;
    line-height: 1.3;
}