html{
    box-sizing: border-box;
    /* Ширина Паддингов не учитывается в общую ширину */
}
*, *::before, *, *::after{
    box-sizing: inherit;
}
/* width */
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #000000;
    border-radius: 0px;
}

/*** Works on common browsers ***/
::selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 8px #000000;
}

/*** Mozilla based browsers ***/
::-moz-selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 8px #000000;
}

/***For Other Browsers ***/
::-o-selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 8px #000000;
}

::-ms-selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 4px #ffffff;
}

/*** For Webkit ***/
::-webkit-selection {
    background-color: #2500ff;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 8px #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2500ff;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #2000ba;
}
:root{
    scrollbar-face-color: rgb(37,0,255); /* Firefox 63 compatibility */
    scrollbar-track-color: rgb(99, 99, 99); /* Firefox 63 compatibility */
    scrollbar-color:  rgb(37,0,255) rgb(99, 99, 99);
    scrollbar-width: thin;
}
button:focus {outline:0;}
a{
    color: #000;
    display: inline-block;
    /* Все ссылки делаем строчно-блочными */
    text-decoration: none;
    /* Убираем всю декорацию (подчёркивания) на ссылках */
}
ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
li{
    display: inline-block;
}
body{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
}

.container{
    width: 100%;
    margin: 0 auto;
    width: 100%;
}

.header__bg{
    width: 100%;
    height: 608px;
    box-sizing: border-box;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    background-image: url(../images/header/header-bg.jpg);
    background-size: cover;
    background-position: left;
}

.header__inner{
    position: relative;
    width: 100%;
    height: 608px;
    /*background: linear-gradient(122.37deg, #F3F3F3 30.6%, rgba(243, 243, 243, 0.5) 100%);*/
    background: linear-gradient(122.37deg, #F3F3F3 10%, rgba(243, 243, 243, 0.5) 33.3%, #161628 50.6%, #161628 77.6%, rgba(22, 22, 40, 0.0046875) 99.99%);
    background-size: 300% 300%;
    -webkit-background-size: 300% 300%;
    -moz-background-size: 300% 300%;
    -o-background-size: 300% 300%;
    background-position: 0% 0%;
    backdrop-filter: blur(4px);
}
.header__top{
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    display: flex;
    height: 83px;
}
.header__logo{
    margin-top: 20px;
    margin-left: 47px;
    margin-right: 115px;
}
.header__logo a{
    height: 60px;
    width: 140px;
    background-image: url(../images/header/logo.svg);
}


.header__menu{
    width: 100%;
    margin-top: 40px;
    margin-right: 40px;
    margin-left: 50px;
    display: flex;
    align-items: flex-start;
    
}
.header__menu a{
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    text-transform: uppercase;
    color: rgba(22, 22, 40, 1);
}

.header__menu ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.menu-active    {
    border-bottom: 3px solid #2500FF;
}


.header__menu-btn{
    background-image: url(../images/adaptive/list.svg);
    position: absolute;
    width: 33px;
    height: 20px;
    right: 10px;
    top: 43px;
    display: none;
}


.header__menu-buttons{
    margin-left: 50px;
    display: flex;
    justify-content: space-between; 
}


.header__menu-buttons{
    max-width: 109px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.menu-theme{
    position: relative;
    width: 47px;
    height: 24px;
    /*background-color: #F3F3F3;*/
    background-color: #EDEDED;
    border-radius: 5px;
    cursor: pointer;
}
.menu-btn{
    position: absolute;
    width: 11px;
    height: 16px;
    right: 4px;
    top: 4px;
    transition:right 1s linear;
    background: #161628;
    border-radius: 3px;
}
.menu-language{
    width: 47px;
    height: 24px;
    /*background: #F3F3F3;*/
    background: #EDEDED;
    border-radius: 5px;
}
.menu-language__eng{
    position: relative;
    width: 21px;
    height: 17px;
    font-size: 14px;
    line-height: 17px;
    color: #161628;
    padding-left: 19px;
    padding-top: 4px;
}
.menu-language__eng::before{
    /*content: '';
    position: absolute;
    top: 9px;
    left: 12px;
    height: 7px;
    width: 4px;
    background-image: url(../images/header/arrow.svg);*/
    content: '>';
    position: absolute;
    top: 4px;
    left: 8px;
    height: 7px;
    width: 5px;
    color: #2500ff;
    font-weight: 900;
}

.header__p1{
    padding-bottom: 6px;
    margin: 108px auto 18px auto;
    max-width: 549px;
    font-weight: 400;
    font-size: 72px;
    line-height: 88px;
    text-align: center;
}
.header__p1 span{
    font-size: 72px;
    line-height: 88px;
    font-weight: 600;
    color: #2500FF;
}
.header__p2{
    margin: 0px auto;
    max-height: 163px;
    max-width: 442px;
    width: 100%;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #000000;
    padding: 0 10px;
}
.header__p3{
    margin: 0 auto;
    margin-top: 129px;
    padding-bottom: 32px;
    width: 113px;
    font-size: 18px;
    line-height: 22px;
    
}
.header__p3 a span{
    color: #2500FF;
}


.read-more__inner{
    padding-top: 191px;
    padding-bottom: 20px;
    display: flex;
    background-color: #F3F3F3;
    align-items: center;
}
.read-more__box{
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap-reverse;
    margin: 0 auto;
    min-height: 270px;
    max-width: 740px;
}
.read-more__title{
    max-width: 255px;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #161628;
}
.read-more__title span{
    color: #2500FF;
    font-weight: 800;
}
.read-more__text{
    display: inline-block;
}
.read-more__text p{
    max-width: 313px;
    font-size: 14px;
    line-height: 17px;
    color: #161628;
    margin-bottom: 30px;
}

.read-more__button{
    padding-top: 16px;
    width: 140px;
    height: 48px;
    background: linear-gradient(114.42deg, #2500FF 0.6%, #0075FF 75.68%);
    box-shadow: 0px 0px 30px rgba(37, 0, 255, 0.5);
    border-radius: 5px;

    text-align: center;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
}
.read-more__logo{
    display: inline-block;
    background-image: url(../images/read-more__img.svg);
    margin-left: 55px; 
    height: 270px;
    width: 220px;
}



.choose-us__inner{
    display: flex;
    align-items: center;
    min-height: 608px;
    background-color: #F3F3F3;
}
.choose-us__box{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    min-height: 446px;
    max-width: 820px;
}
.choose-us__title{
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 64px;
    font-size: 36px;
    line-height: 44px;
    color: #161628;
}
.choose-us__title span{
    border-bottom: 3px solid #2500FF;
}
.choose-us__items{
    flex-wrap: wrap;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.choose-us__item{
    max-width: 393px;
    height: 338px;
    border-radius: 15px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
    background: #FFFFFF;
}
.choose-us__item-1{
    margin-right: 30px;
}

.item__title{
    padding-top: 34px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #161628;
}
.choose-us__item p{
    height: 200px;
    overflow: auto;
    font-size: 14px;
    line-height: 17px;
    padding-right: 34px;
    padding-left: 34px;
    color: #31315A;
}
.choose-us__item a{
    margin-top: 10px;
    float: right;
    padding-right: 30px;
}

.item-1__title{
    position: relative;
    padding-left: 80px;
}
.item-2__title{
    position: relative;
    padding-left: 80px;
}
.item-1__title::before{ 
    content: '';
    position: absolute;
    left: 23px;
    top: 23px; 
    width: 34px;
    height: 34px;
    background-image: url(../images/choose-us/item-1.svg);
}
.item-2__title::before{ 
    content: '';
    position: absolute;
    left: 23px;
    top: 23px; 
    width: 34px;
    height: 34px;
    background-image: url(../images/choose-us/item-2.svg);
}
.choose-us__item-1 a span{
    color: #F2DA00;
}
.choose-us__item-2 a span{
    color: #2500FF;
}


.partners{
    background-color: #F3F3F3;
}

.partners__inner{
    max-width: 820px;
    margin: 0 auto;
    background-color: #F3F3F3;
    padding-top: 52px;
    /*max-height: 900px;*/
}

.partners__inner-text{
    margin: 0px auto 52px auto;
    text-align: center;
}
.text__title{
    margin-bottom: 9px;
    font-size: 36px;
    line-height: 44px;
    color: #161628
}
.text__title span{
    color: #2500FF;
}
.partners__inner-text p{
    margin: 0 auto;
    max-width: 510px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: rgba(37, 37, 66, 0.5);

}

.partners__inner-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}
.logos-bracket__left{
    z-index: 2;
    /*margin-left: 30px;*/
    background-image: url(../images/partners/braket-left.svg);
    width: 32px;
    height: 120px;
}
.logos-bracket__right{
    z-index: 2;
    /*margin-right: 30px;*/
    background-image: url(../images/partners/braket-right.svg);
    width: 32px;
    height: 120px;
}
.inner-logos{
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    align-items: center;
    justify-content: space-between;
    /*margin-bottom: 72px;*/
    width: 100%;
}
.inner-logo-container {
    width: 50%;
}
.inner-logo{
    margin: 0 auto;
    margin-bottom: 20px;
}

.inner-logo-1{
    width: 190px;
    height: 87px;
    background-image: url(../images/partners/img-1.svg);
}
.inner-logo-2{
    width: 188px;
    height: 53px;
    background-image: url(../images/partners/img-2.svg);
}

.inner-logo-3{
    width: 190px;
    height: 93px;
    background-image: url(../images/partners/img-3.svg);
}
.inner-logo-4{
    width: 188px;
    height: 113px;
    background-image: url(../images/partners/img-4.svg);
}
.inner-logo-5{
    width: 188px;
    height: 113px;
    background-image: url(../images/partners/img-5.svg);
}




.footer{
    background: #161628;
}
.footer__inner{
    display: flex;
    flex-wrap: wrap;
}
.footer__inner-box{
    color: #F3F3F3;
    width: 982px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-top: 44px;
}

.footer__box-item{
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.navigation-links li{
    display: block;
    margin-bottom: 18px;
}

.navigation-links li a{
    font-size: 14px;
    line-height: 17px;
    color: #F3F3F3;
}
.footer__images{
    /*margin-top: 32px;*/
}
.footer__images li{
    display: inline-block;
}
.footer__images__logo{
    margin-bottom: 36px;
}
.footer__images__contacts-links li{
    padding-right: 5px;
}

.our-products li {
    margin-bottom: 18px;
    display: block;
    font-size: 14px;
    line-height: 17px;
}
.our-products li a{
    color: #F3F3F3;
}

.services li{
    font-size: 14px;
    line-height: 17px;
    display: block;
    margin-bottom: 18px;
}
.services li a{
    color: #F3F3F3;
}
.navigation__title,
.navigation__title a {
    font-weight: 600;
    font-size: 18px;
    height: 22px;
    color: #F3F3F3;
    margin-bottom: 18px;
}

.contacts{
    position: relative;
}
.contacts__box{
    position: relative;
    padding-left: 85px;
    
}
.contacts__box p {
    font-size: 12px;
    line-height: 15px;
    color: #F3F3F3;
}
.contacts__title{
    font-size: 14px;
    line-height: 17px;
    color: #F3F3F3;
}

.contacts__mail::before{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px; 
    width: 55px;
    height: 39px;
    background-image: url(../images/footer/mail.svg);
}
.contacts__phone::before{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 55px;
    height: 55px;
    background-image: url(../images/footer/phone.svg);
}
.contacts__home::before{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 55px;
    height: 55px;
    background-image: url(../images/footer/home2.svg);
}
.copyright{
    width: 100%;
    margin-top: 31px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #F3F3F3;
    padding-bottom: 31px;
}






/* Страница About Us */


.au__header__p1 {
    padding-top: 20px;
    font-weight: 600;
    font-size: 72px;
    line-height: 88px;
    color: #2500FF;
}
.au__header__p1 span{
    font-weight: 600;
    font-size: 72px;
    line-height: 88px;
    color: #161628;
}
.au__header__p2{
    padding: 0 10px;
    max-width: 557px;
    width: 100%;
    color: #161628;
}
.au__header__bg{
    background-image: url(../images/about_us/header-bg.jpg);
    width: 100%;
    height: 608px;
    box-sizing: border-box;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    background-size: cover;
    background-position: left;
}
.au__header__inner{
    padding-bottom: 200px;
}
.au_discuss{
    padding: 0 10px;
    padding-top: 17px;
    padding-bottom: 145px;
    background: #F3F3F3;
}
.au_discuss__navigation{
    margin: 0 auto;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    margin-bottom: 13px;
    color: #161628;
}
.au_discuss__navigation span{
    color: #8E8E8E;  
}
.au_box-1__title{
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;   
    color: #161628;
    text-align: center;
}
.au_box-1__title span{ 
    color: #2500FF;
}
.au_box-1__title p{
    max-width: 308px;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #161628;
    margin-left: auto;
    margin-right: auto;
}
.au_box-1__btn{
    background: #2500FF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    border: none;
    width: 150px;
    height: 45px;

    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #F3F3F3;
}
.au_discuss__boxes{
    display: flex;
    justify-content: space-between;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    margin-top: 43px;
    padding-bottom: 51px;
    flex-wrap: wrap;
}

.au_discuss__box{
    padding: 41px 50px 58px 50px;
    background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(22, 22, 40, 0.15);
    border-radius: 15px;
    max-width: 393px;
    min-width: 264px;
    width: 100%;
}

.au_discuss__box-title{
    margin: 0 auto;
    margin-bottom: 35px;
    padding-right: 50px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #161628;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.au_discuss__box-title img{
    margin-right: 25px;
}

.au_discuss__box p{
    max-width: 293px;
    width: 100%;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: left;
    color: rgba(37, 37, 66, 0.5);
}

.au_wwd{
    padding-top: 48px;
    background: #F3F3F3;
}
.au_text__title{
    font-weight: 600;
    font-size: 72px;
    line-height: 88px;
    text-align: center;
    color: #161628;
    margin-bottom: 18px;
}
.au_text__title span{
    color: #2500FF;
}
.au_wwd__text p{
    margin: 0 auto;
    padding: 0 10px;
    max-width: 515px;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #161628;
    margin-bottom: 90px;
}
.au_wwd__boxes{
    margin: 0 auto;
    max-width: 805px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.au_wwd__box{
    max-width: 225px;
    width: 100%;
}
.au_wwd-img-1{
    background-image: url(../images/about_us/services.svg);
    margin: 0 auto;
    height: 87px;
    width: 87px;
    margin-bottom: 20px;
}
.au_wwd-img-2{
    background-image: url(../images/about_us/nextgen.svg);
    margin: 0 auto;
    height: 87px;
    width: 87px;
    margin-bottom: 20px;
}
.au_wwd-img-3{
    background-image: url(../images/about_us/all.svg);
    margin: 0 auto;
    height: 87px;
    width: 87px;
    margin-bottom: 20px;
}
.au_wwd__box img{
    margin: 0 auto;
    margin-bottom: 20px;
}
.au_wwd__box-title{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;   
    text-align: center;   
    color: #2500FF;
}
.au_wwd__box-title p{
    margin: 0;
}
.au_wwd__box-title-f{
    margin-bottom: 35px;
}

.au_checkers{
    padding: 0 10px;
    padding-top: 44px;
    background: #F3F3F3;
}

.au_checkers__boxes{
    margin: 0 auto;
    max-width: 990px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.au_checkers_box li{
    display: block;
    padding-left: 27px;
    background-image: url(../images/about_us/check.svg);
    background-position: 0 5px;
    background-size: 10px 10px ;
    background-repeat: no-repeat;
    margin-bottom: 20px;
    color: #2500FF;
}
.au_checkers_box ul{
    margin-bottom: 91px;
}
.au_checkers_box{
    margin: 10px auto;
    padding: 38px 47px 28px;
    max-width: 308px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(22, 22, 40, 0.24);
    border-radius: 15px;
    position: relative;
}
.au_pillar__info-1{
    background-image: url(../images/about_us/telegram.svg);
    height: 22px;
    width: 27px;
}
.au_pillar__info-2{
    background-image: url(../images/about_us/facebook.svg);
    height: 28px;
    width: 28px;
}
.au_pillar__info-3{
    background-image: url(../images/about_us/whatsup.svg);
    height: 28px;
    width: 27px;
}
.au_checkers_box-title_box{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.au_checkers-title_box-img-1{
    background-image: url(../images/about_us/checkers-1.svg);
    height: 67px;
    width: 67px;
}
.au_checkers-title_box-img-2{
    background-image: url(../images/about_us/android-ios.png);
    height: 67px;
    width: 67px;
    background-size: cover;
}
.au_checkers-title_box-img-3{
    background-image: url(../images/about_us/checkers-3.svg);
    height: 67px;
    width: 67px;
}
.au_checkers-title_box-text{
    max-width: 130px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #161628;
    margin-left: 5px;
    margin-right: auto;
}

.au_checkers_box{
    font-size: 14px;
    line-height: 17px;
    color: #161628;
}
.au_checkers_box p{
    text-align: left;
}
.au_checkers_box-read{
    position: absolute;
    left: 32%;
    bottom: 28px;
    /* margin-top: 91px; */
    text-align: center;
    font-size: 14px;
    line-height: 17px;
    color: rgba(22, 22, 40, 0.5);
}
.au_checkers_box-read span{
    color: #8043C3;
}

.au_pillars{
    padding: 0 10px;
    padding-top: 51px;
    background: #F3F3F3;
}
.au_pillars__title{
    text-align: center;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px; 
    color: #161628;
}
.au_pillars__title span{
    color: #2500FF;
}
.au_pillars__title p{
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 71px;
}

.au_pillar{
    padding-bottom: 62px;
    margin: 0 auto;
    max-width: 650px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.au_pillar__info-n{
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #161628;
    margin-bottom: 14px;
}
.au_pillar__info-p{
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: rgba(22, 22, 40, 0.5);
    margin-bottom: 76px;
}
.au_pillar__info p{
    max-width: 383px;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;

    color: rgba(22, 22, 40, 0.5);
    margin-bottom: 123px;
}
.au_pillar__info-l{
    max-width: 105px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---------Страница Solutions----------------- */


.s_header__bg{
    background-image: url(../images/solutions/header_bg.png);
    width: 100%;
    height: 608px;
    box-sizing: border-box;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    background-size: cover;
    background-position: left;
}
.s_header__p1{
    max-width: 691px;
    font-weight: 600;
    font-size: 72px;
    line-height: 88px;
}
.s_header__p1 span{
    color: #8043C3;
}
.s_discuss__boxes{
    margin-top: 47px;
}
.s_discuss__box{
    margin: 0 auto;
    margin-bottom: 145px;
    max-width: 820px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
}

.s_discuss__box-l{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 380px;
    margin-right: 10px;
}

.s_box-title{
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;

    color: #7507FF;
}
.s_discuss__box-text{
    padding-top: 20px;
}
.s_discuss__box-text p{
    max-width: 268px;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #161628;    
}
.s_discuss__box-text ul{
    margin-top: 23px;
}
.s_discuss__box-text li{
    display: block;
    padding-left: 27px;
    background-image: url(../images/solutions/li.svg);
    background-position: 0 5px;
    background-size: 10px 10px ;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}
.s_discuss__box-r{
    max-width: 392px;
    width: 100%;
    margin-left: 10px;
    padding-top: 20px;
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.25));
    border-radius: 15px;
}

.s_discuss__box-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 375px;
}
.s_discuss__box-button{
    margin-right: 20px;
    border: 1px solid #2500FF;
    box-sizing: border-box;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.25));
    border-radius: 10px;
    width: 150px;
    height: 45px;

    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #2500FF;
}
.s_discuss__box-link{
    position: relative;
}
.s_discuss__box-link a{
    padding-left: 42px;
    font-size: 14px;
    line-height: 17px;
    color: rgba(37, 0, 255, 0.5);
}
.s_discuss__box-link::before{
    content: '';
    position: absolute;
    background-image: url(../images/solutions/ask.svg);
    height: 30px;
    width: 30px;
    left: 0;
    top: -10px;
}
.s_discuss__box-e{
    max-width: 541px;
    margin-bottom: 65px;
}
.s_product__body{
    padding: 17px 10px 65px 10px;
}
.s_discuss__box-button-e{
    background-color: #2500FF;
    color: #F3F3F3;
}
.s_ape__inner{
    padding: 0 10px;
}
.s_ape__title{
    max-width: 469px;
    width: 100%;
    margin: 0 auto;
    font-weight: 600; 
    color: #161628;

    font-size: 36px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 54px;
}
.s_ape__title span{
    color: #2500FF;
}
.s_ape__video-v{
    margin: 0 auto;
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.25));
    border-radius: 15px;
    max-width: 393px;
    margin-bottom: 33px;
}
.s_ape__video p{
    margin: 0 auto;
    max-width: 490px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #161628;
    margin-bottom: 90px;
}
.s_ape__pre-footer{
    padding-top: 62px;
    margin: 0 auto;
    max-width: 750px;
    padding-bottom: 57px;
}
.s_pre-footer__title{
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #161628;
    margin-bottom: 16px; 
}
.s_pre-footer__sub-title{
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #161628;  
    margin-bottom: 41px;    
}
.s_pre-footer__sub-title span{
    color: #2500FF;
}
.s_discuss__box-button-ef{
    background: #2500FF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    width: 308px;
    height: 45px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #F3F3F3;
    margin-bottom: 41px;
}
.s_pre-footer__phone{
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;    
    color: #161628;
}
.s_pre-footer__phone a{
    font-weight: normal;
    color: #0066FF;
}


/* -----------Case Studies------------- */

.cs_discuss__box{
    max-width: 372px;
    margin: 15px auto;
}

.cs_discuss__boxes{
    margin: 20px auto;
    margin-bottom: 145px;
    max-width: 820px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ---------------Blog------------- */

.b_blog{
    padding-top: 17px;
    padding-bottom: 19px;
}
.b_blog__inner{
    padding: 0 15px;
}
.b_article__img{
    background-image: url(../images/blog/article-img.svg);
    max-width: 308px;
    width: 100%;
    height: 205px;
    border-radius: 15px 15px 0px 0px;
}
.b_header__p2{
    max-width: 366px;
    margin-bottom: 34px;
}
.b_blog__articles{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 986px;
    margin: 0 auto;
}
.b_blog__article{
    max-width: 308px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(22, 22, 40, 0.24);
    border-radius: 15px;
    
    margin: 22px auto;
}
.b_article__user{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    max-width: 150px;
    margin-bottom: 34px;
}
.b_blog__article__text{
    padding: 0 10px;
    padding-top: 42px;
    padding-bottom: 28px;
}
.b_article__user-nickname{
    padding-left: 22px;
    position: relative;
    font-size: 9px;
    line-height: 11px;

    color: #0066FF;
}
.b_article__user-nickname::before{
    content: '';
    position: absolute;
    background-image: url(../images/blog/user.svg);
    height: 16px;
    width: 14px;
    left: 0;
    top: -3px;
}
.b_article__user-date{
    position: relative;
    padding-left: 23px;
    font-size: 9px;
    line-height: 11px;
    color: #161628;
}
.b_article__user-date::before{
    content: '';
    position: absolute;
    background-image: url(../images/blog/date.svg);
    height: 16px;
    width: 17px;
    left: 0;
    top: -3px;
}
.b_blog__article__title{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #161628;
    text-align: center;
    margin-bottom: 14px;
}
.b_blog__article p{
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    color: #31315A;
    max-width: 229px;
    padding: 0 10px;
    margin: 0 auto;
    margin-bottom: 52px;
}
.b_blog__article a{
    margin: 0 auto;
    font-size: 14px;
    line-height: 17px;
    color: #161628;
}
.b_blog__article span{
    color: #8043C3;
}

.b_blog__navigation-m{
    display: flex;
    justify-content: flex-end;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}
.b_blog__navigation{
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    max-width: 650px;
    width: 100%;
    padding-bottom: 19px;
}
.b_navigation__box-1{
    display: flex;
    justify-content: space-between;
    max-width: 308px;
    width: 100%;
}
.b_box-1__btn button{
    width: 150px;
    height: 45px;
    border-radius: 10px;
    border: none;

    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #F3F3F3;
}

.b_box-1__btn-1{
    position: relative;
    background: #C4C4C4;
}
.b_box-1__btn-1 p{
    position: relative;
    padding-left: 24px;
}
.b_box-1__btn-1 p::before{
    content: '';
    position: absolute;
    background-image: url(../images/blog/arrow-l.svg);
    width: 14px;
    height: 12px;
    top: 3px;
    left: 6px;
}

.b_box-1__btn-2{
    background-color: #2500FF;
}
.b_box-1__btn-2 p{
    position: relative;
    padding-right: 24px;
}
.b_box-1__btn-2 p::after{
    content: '';
    position: absolute;
    background-image: url(../images/blog/arrow-r.svg);
    width: 14px;
    height: 12px;
    top: 3px;
    right: 6px;
}
.b_navigation__box-2{
    display: flex;
    align-items: center;
    max-width: 130px;
    width: 100%;
    justify-content: space-between;
}
.b_navigation__input-page{
    width: 40px;
    height: 30px;
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    color: #8E8E8E;
    border: 1px solid #8E8E8E;
}
.b_navigation__box-2__box{
    display: flex;
}
.b_navigation__box-2__btn{
    width: 20px;
    height: 30px;
    background: #C4C4C4;
    border: none;
    
}
.b_navigation__box-2__btn-inactive{
    border: none;
    background: #E5E5E5;
}
.b_navigation__box-2__btn img{
    margin: 0 auto;
}

.b_header__input-m{
    max-width: 415px;
    margin: 0 auto;
    position: relative;
}
.b_header__input{
    background: rgba(22, 22, 40, 0.25);
    backdrop-filter: blur(4px);
    border-radius: 5px;
    width: 100%;
    height: 35px;
    border: none;
    padding-left: 11px;
    padding-right: 9px;

    font-size: 14px;
    line-height: 17px;
    color: rgba(22, 22, 40, 0.5);
}
.b_header__input-m::after{
    content: '';
    position: absolute;
    background-image: url(../images/blog/search.svg);
    top: 9px;
    right: 9px;
    height: 17px;
    width: 17px;

}



.b_header__bg{
    background-image: url(../images/blog/blog-bg.png);
    width: 100%;
    height: 608px;
    box-sizing: border-box;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    background-size: cover;
    background-position: left;
}

.c_header__p1{
    margin-bottom: 0;
}
.c_header__p1 span{
    font-weight: normal;
}

.c_header__bg{
    background-image: url(../images/contact/contact-bg.png);
    width: 100%;
    height: 608px;
    box-sizing: border-box;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    background-size: cover;
    background-position: left;
}
.c_header__inner{
    backdrop-filter: none;
}
.c_header__p3{
    max-width: 472px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.c_header__p3-mail{
    padding-left: 42px;
    position: relative;
}
.c_header__p3-mail::before{
    content: '';
    position: absolute;
    background-image: url(../images/contact/header-mail.svg);
    top: 1px;
    left: 1px;
    height: 17px;
    width: 25px;
}
.c_header__p3-phone{
    padding-left: 34px;
    position: relative;
}
.c_header__p3-phone::before{
    content: '';
    position: absolute;
    background-image: url(../images/contact/header-phone.svg);
    top: 1px;
    left: 1px;
    height: 18px;
    width: 18px;
}

/* ---------------contact us--------------- */


.c_contact{
    padding: 0 15px;
    padding-top: 14px;
    padding-bottom: 10px;
    background: #F3F3F3;
}
.c_contact__inputs{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 990px;
    width: 100%;
    margin: 0 auto;
}
.c_contact__info{
    max-width: 272px;
    margin-right: 20px;
    width: 100%;
}
.c_contact__info-box{
    display: flex;
}
.c_info-box_img-1{
    margin-right: 30px;
    margin-bottom: 53px;
    width: 55px;
    height: 55px;
    background-image: url(../images/contact/contact-time.svg);
}
.c_info-box_img-2{
    margin-right: 30px;
    margin-bottom: 53px;
    width: 55px;
    height: 39px;
    background-image: url(../images/contact/mail.svg);
}
.c_info-box_img-3{
    margin-right: 30px;
    margin-bottom: 53px;
    width: 55px;
    height: 55px;
    background-image: url(../images/contact/share.svg);
}
.c_info-box_img-4{
    margin-right: 30px;
    margin-bottom: 53px;
    width: 55px;
    height: 55px;
    background-image: url(../images/contact/phone.svg);
}
.c_info-box_text-share{
    display: flex;
    justify-content: space-between;
    max-width: 188px;
    width: 100%;
}
.c_info-box_text-share-img-t{
    width: 34px;
    height: 32px;
    background-image: url(../images/contact/telegram.svg);
}
.c_info-box_text-share-img-f{
    width: 35px;
    height: 35px;
    background-image: url(../images/contact/facebook.svg);
}
.c_info-box_text-share-img-w{
    width: 35px;
    height: 35px;
    background-image: url(../images/contact/whatsup.svg);
}
.c_info-box_text-share-img-g{
    width: 35px;
    height: 34px;
    background-image: url(../images/contact/github.svg);
}
.c_info-box_text-share-img-l{
    width: 35px;
    height: 34px;
    background-image: url(../images/contact/linkedin.svg);
}
.c_info-box_text-share-img-i{
    width: 35px;
    height: 34px;
    background-image: url(../images/contact/instagram.svg);
}
.c_contact__bg{
    width: 73px;
    height: 270px;
    background-image: url(../images/contact/skobka.svg);
}
.c_contact__work{
    background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    max-width: 563px;
    width: 100%;
    padding: 30px 55px 28px;
}
.c_contact__work-title{
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #161628;
}
.c_contact__work p{
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    /*color: rgba(22, 22, 40, 0.5);*/
    color: #161628;
    opacity: 0.5;
    padding-bottom: 29px;
}

.c_contact__input{
    max-width: 453px;
    height: 50px;
    width: 100%;
    border: none;
    margin-bottom: 12px;
    padding-left: 87px;

    background: #E1E1E1;
    border-radius: 10px;
}

.c_contact__input-name{
    position: relative;
}
.c_contact__input-name::before{
    content: '';
    position: absolute;
    background-image: url(../images/contact/user.svg);
    height: 19px;
    width: 19px;
    top: 15px;
    left: 31px;
}
.c_contact__input-email{
    position: relative;
}
.c_contact__input-email::before{
    content: '';
    position: absolute;
    background-image: url(../images/contact/user-mail.svg);
    height: 17px;
    width: 25px;
    top: 15px;
    left: 31px;
}
.c_contact__input-phone{
    position: relative;
}
.c_contact__input-phone::before{
    content: '';
    position: absolute;
    background-image: url(../images/contact/user-phone.svg);
    height: 20px;
    width: 20px;
    top: 15px;
    left: 31px;
}

.c_contact__input-edit{
    position: relative;
}
.c_contact__input-edit::before{
    content: '';
    position: absolute;
    background-image: url(../images/contact/edit.svg);
    height: 19px;
    width: 19px;
    top: 15px;
    left: 31px;
}
.c_contact__input-edit-e{
    display: flex;
    align-items: flex-start;
    height: 120px;
    overflow: auto;
    padding-top: 15px;
}
.c_contact__button{
    background: #2500FF;
    border-radius: 10px;
    border: none;
    max-width: 453px;
    width: 100%;
    height: 50px;   

    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #F3F3F3;
}

.be_body__inner{
    padding: 15px 10px 78px;
}
.be_box-img{
    margin: 0 auto;
    margin-top: 22px;
    margin-bottom: 26px;
    background-image: url(../images/blog-explore/main-img.png);
    width: 477px;
    height: 334px;
}
.be_box__tags{
    position: relative;
    max-width: 453px;
    margin: 0 auto;
    font-size: 10px;
    line-height: 12px;
    color: #0066FF;
    padding-left: 29px;
}
.be_box__tags a{
    font-size: 10px;
    line-height: 12px;
    color: #0066FF;
}
.be_box__tags::before{
    content: '';
    position: absolute;
    background-image: url(../images/blog-explore/tag.svg);
    height: 16px;
    width: 16px;
    left: 0;
    top: 3px;
}

.be_body__box-title{
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #161628;
    text-align: center;
    margin-top: 20px;
}
.be_body__box p{
    max-width: 709px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #161628;
    margin: 0 auto;
    margin-top: 22px;
    margin-bottom: 30px;
}
.be_box__share{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 273px;
    width: 100%;

    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #161628;
    margin: 0 auto;
    margin-top: 56px;
}
.be_telegram{
    background-image: url(../images/blog-explore/telegram.svg);
    width: 25px;
    height: 21px;
}
.be_facebook{
    background-image: url(../images/blog-explore/facebook.svg);
    width: 26px;
    height: 26px;
}
.be_whats-up{
    background-image: url(../images/blog-explore/whatsup.svg);
    width: 25px;
    height: 26px;
}
.be_github{
    background-image: url(../images/blog-explore/github.svg);
    width: 26px;
    height: 25px;
}
.be_comment{
    padding: 0 10px;
    padding-top: 57px;
}
.be_comment__title{
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;    
    color: #000000;
    text-align: center;
    margin-bottom: 79px;
}
.be_comment__title span{    
    color: #2500FF;
}
.be_comment__input{
    margin: 0 auto;
    max-width: 968px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.be_comment__input-comments{
    max-width: 458px;
    width: 100%;
}
.be_comment__input-comments__comment{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto 26px;
}
.be_comment__text-nicknamedata{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 208px;
    width: 100%;
}
.be_comment__avatar{
    height: 54px;
    width: 54px;
    background-image: url(../images/blog-explore/avatar.svg);
    margin: 0 auto 20px;
}
.be_comment__text-nickname{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #8E8E8E;
}


.be_comment__text p{
    max-width: 372px;
    font-size: 14px;
    line-height: 17px;
    color: #161628;
}
.be_comment__text a{
    font-size: 11px;
    line-height: 13px;
    color: #0066FF;
}
.be_comment__input-inputs{
    max-width: 478px;
    width: 100%;
    margin-bottom: 40px;
}
.mailto {
    text-decoration:none;
    color: #000000;
}
.contact_error_message {
    color: #950000;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact_success_message {
    color: #0066FF;
    font-weight: 600;
    margin-bottom: 10px;
}