/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

@font-face{
    font-family: 'SFProDisplay';
    src: url('/fonts/SFProDisplay-Semibold.woff2') format('woff2'),
         url('/fonts/SFProDisplay-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'SFProDisplay';
    src: url('/fonts/SFProDisplay-Medium.woff2') format('woff2'),
         url('/fonts/SFProDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face{
    font-family: 'SFProDisplay';
    src: url('/fonts/SFProDisplay-Regular.woff2') format('woff2'),
         url('/fonts/SFProDisplay-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'SFProDisplay';
    src: url('/fonts/SFProDisplay-Light.woff2') format('woff2'),
         url('/fonts/SFProDisplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



p,
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
    font-weight: 400;
}
html{
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*{outline:none;}
*,
*::before,
*::after{
    box-sizing: inherit;
}
body{
    overflow-x: hidden;
    font-family: 'SFProDisplay';
}
body.active,
html.active{
    overflow: hidden;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.container{
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}
.scroll_line{
    height: 273px;
    width: 2px;
    background-color: #008BFF;
    position: fixed;
    z-index: 2;
    top: 44%;
    left: calc(43% - 660px);
    transform: translateY(-50%);
}
.scroll_line span{
    position: absolute;
    background: #008BFF;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    right: 50%;
    transform: translate(50%, -5px);
    top: 0;
}
.header{
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 10;
}
.header_wrapper{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo{
    display: flex;
}
.menu{
    display: flex;
}
.menu a{
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    line-height: 21px;
    margin-right: 50px;
    transition: all 0.3s;
}
.menu a:hover{
    color: #0047FF;
}
.menu li:last-child a{
    margin-right: 0;
}
.header_log{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    border: 1px solid #4D24FF;
    border-radius: 10px;
    height: 50px;
    font-weight: 500;
    font-size: 18px;
    color: #4D24FF;
    line-height: 21px;
    overflow: hidden;
    z-index: 1;
    position: relative;
    transition: all 0.3s;
}
.header_log::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: #4D24FF;
    will-change: transform,background-color;
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s,-webkit-transform .35s;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    z-index: -1;
}
.header_log:hover::before{
    transform: scale3d(1,1,1);
    transform-origin: 0 50%;
    transition-timing-function: ease;
}
.header_log:hover{
    color: #fff;
}
.main{
    margin: 188px 0 195px;
}
.main_subtitle{
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    margin-bottom: 35px;
    line-height: 21px;
}
.main h1{
    font-weight: 400;
    font-size: 110px;
    line-height: 1;
    color: #201600;
    margin-bottom: 45px;   
    max-width: 930px;
}
.main_text{
    font-weight: 300;
    font-size: 24px;
    color: #201600;
    margin-bottom: 40px;
    line-height: 29px;
}
.main_form{
    display: flex;
    justify-content: space-between;
    width: 480px;
}
.main_form-inp{
    width: 300px;
    border: 1px solid #858585;
    border-radius: 10px;
    height: 50px;
    font-weight: 300;
    font-size: 18px;
    color: #858585;
    padding-left: 20px;
    line-height: 21px;
}
.main_form-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    background: linear-gradient(90deg, #008BFF 0%, #4D24FF 100%);
    border-radius: 10px;
    height: 50px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 21px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.main_form-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background: linear-gradient(90deg, #414EB2 0%, #4D24FF 100%);
    will-change: transform,background-color;
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s,-webkit-transform .35s;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    z-index: -1;
}
.main_form-btn:hover::before{
    transform: scale3d(1,1,1);
    transform-origin: 0 50%;
    transition-timing-function: ease;
}
.main_wrapper{
    position: relative;
}
.main_wrapper::before{
    position: absolute;
    content: "";
   
    background-size: cover;
    width: 372px;
    height: 501.27px;
    right: 0;
    top: -47px;
    z-index: -1;
}
.fast_title{
    font-weight: 300;
    color: #201600;
    margin-bottom: 35px;
    font-size: 80px;
}
.fast_text{
    font-weight: 300;
    font-size: 24px;
    color: #201600;
    margin-bottom: 60px;
    line-height: 29px;
}
.fast_tabs{
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    margin-left: -45px;
}
.fast_tab{
    margin: 0 19px;
    padding: 12px 21px;
    font-weight: 300;
    font-size: 30px;
    color: #201600;
    line-height: 36px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #eee;
}
.fast_tab:hover,
.fast_tab.active{
    border: 1px solid #0047FF;
}
.fast_content{
    display: none;
    position: relative;
    z-index: 1;
}
.fast_content-wrapper{
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 60px 0;
}
.fast_content::before{
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FAFAFA;
    z-index: -1;
}
.fast_content::after{
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(247.61deg, #008BFF 8.41%, #4D24FF 54.24%, #0047FF 89.34%);
    z-index: -1;
}
.fast_content.active{
    display: block;
  
}
.fast_content-text{
    font-weight: 300;
    font-size: 26px;
    color: #201600;
    line-height: 120%;
    width: 450px;
}
.fast_content-img{
    box-shadow: 12px 7px 30px -1px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    border-radius: 20px;
    margin-right: -190px;
}

.what{
    margin: 200px 0;
}
.what_subtitle{
    font-weight: 300;
    font-size: 16px;
    color: #201600;
    margin-bottom: 40px;
    line-height: 19px;
}
.what_title{
    font-weight: 300;
    font-size: 50px;
    color: #201600;
    margin-bottom: 200px;
    line-height: 60px;
}
.what_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1320px;
}
.what_img{
    width: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}
.what_img img{
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.25));
    margin-left:70px;
}
.what_info{
    width: 590px;
}
.what_item{
    font-weight: 300;
    font-size: 60px;
    color: #201600;
    line-height: 72px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}
.what_item span{
    font-size: 16px;
    line-height: 19px;
    margin-right: 17px;
}
.what_item:last-child{
    margin-bottom: 0;
}
.what_items{
    margin-bottom: 40px;
}
.what_text{
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    margin-bottom: 40px;
    line-height: 21px;
}
.what_link{
    font-weight: 300;
    font-size: 18px;
    color: #0047FF;
    line-height: 21px;
    position: relative;
    padding-bottom: 16px;
    overflow: hidden;
}

.what_link::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    background-position: right top;
   
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    will-change: transform,color;
    transform: scale3d(1,1,1);
    transform-origin: 0 50%;
    transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s,-webkit-transform .35s;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
}
.what_link:hover::before{
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition-timing-function: ease;
}

.setting{
    padding: 100px 0;
    background: linear-gradient(360deg, #4D1D9D 0.3%, #3EB4F0 98.85%);
}
.setting_wrapper{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.setting_img{
    display: flex;
    position: absolute;
    top: 0;
    right: -47px;
}
.setting_info{
    width: 640px;
}
.setting_text{
    font-weight: 300;
    font-size: 50px;
    line-height: 60px;
    color: #FFFFFF;
    margin-bottom: 40px;
}
.setting_btn{
    width: 130px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 21px;
    overflow: hidden;
    z-index: 1;
    position: relative;
    transition: all 0.3s;
}
.setting_btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #FFFFFF;
    will-change: transform,background-color;
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s,-webkit-transform .35s;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    z-index: -1;
}
.setting_btn:hover::before{
    transform: scale3d(1,1,1);
    transform-origin: 0 50%;
    transition-timing-function: ease;
}
.setting_btn:hover{
    color: #0047FF;
}
.every{
    margin: 200px 0;
}
.every_title{
    font-weight: 300;
    font-size: 80px;
    color: #201600;
    margin-bottom: 60px;
    line-height: 95px;

}
.every_items{
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
}
.every_item{
    display: flex;
    margin-right: 50px;
}
.every_text{
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    color: #201600;
}
.get{
    margin: 200px 0;
}
.get_title{
    font-weight: 300;
    font-size: 80px;
    color: #201600;
    margin-bottom: 50px;
    line-height: 110%;
}
.get_title span{
    color: #0047FF;
    font-weight: 600;
}
.get_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.get_item{
    padding: 50px 35px 50px 40px;
    border-top: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
}
.get_item:nth-child(1),
.get_item:nth-child(2),
.get_item:nth-child(3){
    border-top: none;
}
.get_item:nth-child(3n){
    border-right: none;
}
.get_item:nth-child(3n + 1){
    padding-left: 0;
    width: 374px;
}
.get_item:nth-child(3n + 2){
    width: 422px;
}
.get_item:nth-child(3n + 3){
    width: 404px;
}
.get_item-img{
    width: 80px;
    background: #0047FF;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.get_item:nth-last-child(1),
.get_item:nth-last-child(2),
.get_item:nth-last-child(3){
    padding-bottom: 0;
}
.get_item-title{
    font-weight: 300;
    font-size: 30px;
    color: #201600;
    line-height: 36px;
    margin-bottom: 20px;
}
.get_item-text{
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    line-height: 21px;
}
.get_item-icon{
    display: flex;
    justify-content: center;
    align-items: center;
}
.notifications{
    background: #FAFAFA;
    padding: 100px 0;
}
.notifications_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notifications_img{
    display: flex;
}
.notifications_info{
    width: 610px;
}
.notifications_title{
    font-weight: 300;
    font-size: 30px;
    color: #0D0D0D;
    margin-bottom: 30px;
    line-height: 36px;
}
.notifications_text{
    font-weight: 300;
    font-size: 18px;
    color: #0D0D0D;
    margin-bottom: 60px;
    line-height: 21px;
}
.notifications_subtitle{
    font-weight: 300;
    font-size: 40px;
    color: #0D0D0D;
    line-height: 48px;
}
.templates{
    margin: 200px 0;
}
.templates_title{
    font-weight: 300;
    font-size: 80px;
    color: #201600;
    margin-bottom: 40px;
    line-height: 95px;
}
.templates_text{
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    margin-bottom: 80px;
    line-height: 21px;
}
.templates_items{
    display: flex;
    justify-content: space-between;
}
.templates_item{
    width: 22%;
}
.templates_item-img{
    display: flex;
    margin-bottom: 50px;
}
.templates_item-title{
    font-weight: 300;
    font-size: 30px;
    color: #201600;
    margin-bottom: 30px;
    line-height: 36px;
}
.templates_item-text{
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    line-height: 21px;
}
.converter{
    padding: 87px 0;
    background: #FAFAFA;
}
.converter_title{
    font-weight: 300;
    font-size: 80px;
    color: #201600;
    margin-bottom: 80px;
    line-height: 95px;
}
.converter_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.converter_info{
    width: 510px;
}
.converter_item-number{
    color: #0047FF;
    margin-bottom: 10px;
    line-height: 19px;
}
.converter_item-title{
    font-weight: 300;
    font-size: 30px;
    color: #201600;
    margin-bottom: 20px;
    line-height: 36px;
}
.converter_item-text{
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    line-height: 21px;
}
.converter_item{
    margin-bottom: 60px;
}
.converter_item:last-child{
    margin-bottom: 0;
}
.converter_img{
    display: flex;
}

.testing{
    margin: 200px 0;
}
.testing_title{
    font-weight: 300;
    font-size: 80px;
    letter-spacing: -0.035em;
    color: #0D0D0D;
    margin-bottom: 40px;
    line-height: 100%;
}
.testing_text{
    font-weight: 300;
    font-size: 15px;
    color: #0D0D0D;
    margin-bottom: 80px;
    line-height: 18px;
    max-width: 725px;
}
.testing_items{
    display: flex;
}
.testing_item{
   /* width: 50%; */
}
.testing_item-title{
    font-weight: 300;
    font-size: 30px;
    letter-spacing: -0.03em;
    color: #0D0D0D;
    margin-bottom: 30px;
    line-height: 36px;
}
.testing_item-text{
    font-weight: 300;
    font-size: 15px;
    color: #0D0D0D;
    max-width: 440px;
    line-height: 18px;
    margin-bottom: 60px;
}
.testing_item-btns{
    display: flex;
    justify-content: space-between;
}
.testing_item-btn{
    width: 250px;
    border: 1px solid #0047FF;
    border-radius: 10px;
    height: 50px;
    font-weight: 500;
    font-size: 18px;
    color: #201600;
    line-height: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    overflow: hidden;
    z-index: 1;
    position: relative;
    transition: all 0.3s;
}
.testing_item-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: #4D24FF;
    will-change: transform,background-color;
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s,-webkit-transform .35s;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    z-index: -1;
}
.testing_item-btn:hover::before{
    transform: scale3d(1,1,1);
    transform-origin: 0 50%;
    transition-timing-function: ease;
}
.testing_item-btn:hover{
    color: #fff;
}
.testing_item-btn img{
    margin-right: 10px;
}
.testing_item:nth-child(2) .testing_item-btn{
    width: 270px;
}

.plans{
    padding: 100px 0;
    background: #FAFAFA;
}
.plans_title{
    font-weight: 300;
    font-size: 80px;
    color: #201600;
    margin-bottom: 40px;
    line-height: 95px;
}
.plans_text{
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    color: #201600;
    max-width: 785px;
    margin-bottom: 80px;
}
.plans_info{
    background: #FFFFFF;
    border-radius: 20px;
    padding: 52px 96px 52px 88px;
    display: flex;
    justify-content: space-between;
}
.plans_info-titles{
    margin-top: 215px;
}
.plans_info-title{
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    margin-bottom: 40px;
    height: 40px;
    line-height: 21px;
}
.plans_info-title:last-child{
    margin-bottom: 0;
}
.plans_item{
    width: 230px;
    text-align: center;
}
.plans_item-title{
    font-weight: 300;
    font-size: 30px;
    color: #201600;
    margin-bottom: 30px;
    line-height: 36px;
}
.plans_item-price{
    font-size: 60px;
    color: #201600;
    margin-bottom: 68px;
    line-height: 72px;
}
.plans_item-price span{
    font-size: 30px;
}
.plans_item-value{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    height: 40px;
    line-height: 21px;
}
.plans_item-btn{
    width: 230px;
    background: linear-gradient(90deg, #008BFF 0%, #4D24FF 100%);
    border-radius: 10px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 21px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.plans_item-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background: linear-gradient(90deg, #414EB2 0%, #4D24FF 100%);
    will-change: transform,background-color;
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s,-webkit-transform .35s;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    z-index: -1;
}
.plans_item-btn:hover::before{
    transform: scale3d(1,1,1);
    transform-origin: 0 50%;
    transition-timing-function: ease;
}
.build{
    padding: 100px 0;
    background: linear-gradient(153.9deg, #0047FF 0%, #4D1D9D 69.27%, #4D24FF 100%);
}
.build_title{
    font-weight: 300;
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 50px;
    line-height: 48px;
    width: 630px;
}
.build_link{
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    line-height: 21px;
    position: relative;
    padding-bottom: 16px;
}
.build_link::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    background-position: right top;
    
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    will-change: transform,color;
    transform: scale3d(1,1,1);
    transform-origin: 0 50%;
    transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s,-webkit-transform .35s;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
}
.build_link:hover::before{
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition-timing-function: ease;
}
.build_warpper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.build_img{
    display: flex;
}
.faq{
    margin: 200px 0;
}
.faq_title{
    font-weight: 300;
    font-size: 80px;
    color: #0D0D0D;
    margin-bottom: 42px;
    line-height: 95px;
}
.faq_item{
    border-bottom: 1px solid #D9D9D9;
}
.faq_item-title{
    padding: 40px 0;
    font-weight: 300;
    font-size: 30px;
    color: #201600;
    line-height: 36px;
    position: relative;
    cursor: pointer;
}
.faq_item-title span{
    position: absolute;
    width: 40px;
    height: 40px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.faq_item-title span::before{
    position: absolute;
    content: "";
    width: 100%;
    background-color: #0047FF;
    border-radius: 1px;
    height: 2px;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
}
.faq_item-title span::after{
    position: absolute;
    content: "";
    width: 2px;
    background-color: #0047FF;
    border-radius: 1px;
    height: 100%;
    right: 50%;
    top: 50%;
    transform: translate(50%,-50%);
    transition: all 0.3s;
}
.faq_item-title.active span::after{
    transform: translate(50%,-50%) rotate(90deg);
}
.faq_item-text{
    margin-top: -10px;
    font-weight: 300;
    font-size: 18px;
    color: #201600;
    line-height: 21px;
    padding-bottom: 40px;
    padding-right: 310px;
    display: none;
}
.footer{
    padding: 55px 0 50px;
    background: #00b5f9;
}
.footer_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.footer_logo{
    display: flex;
}
.footer_title{
    font-weight: 300;
    font-size: 80px;
    line-height: 95px;
    color: #FFFFFF;
    margin-bottom: 50px;
}
.footer_title span{
    font-weight: 500;
}
.footer_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    margin-bottom: 60px;
    height: 50px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 21px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s;
}
.footer_btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #fff;
    will-change: transform,background-color;
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s,-webkit-transform .35s;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    z-index: -1;
}
.footer_btn:hover::before{
    transform: scale3d(1,1,1);
    transform-origin: 0 50%;
    transition-timing-function: ease;
}
.footer_btn:hover{
    color: #1D269D;
}
.footer_text{
    font-weight: 300;
    font-size: 12px;
    color: #FFFFFF;
    max-width: 735px;
    line-height: 14px;
}
.footer_text a{
    color: #FFFFFF;
    border-bottom: 1px solid;
}
.footer_link{
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    padding-bottom: 11px;
    position: relative;
    padding-right: 5px;
}
.footer_link::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    background-position: right top;
  
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    will-change: transform,color;
    transform: scale3d(1,1,1);
    transform-origin: 0 50%;
    transition: -webkit-transform .35s;
    transition: transform .35s;
    transition: transform .35s,-webkit-transform .35s;
    transition-timing-function: cubic-bezier(.25,.46,.45,.94);
}
.footer_link:hover::before{
    transform: scale3d(0,1,1);
    transform-origin: 100% 50%;
    transition-timing-function: ease;
}
.menu_burger{
    display: none;
}
.header_inner-log{
    display: none;
}

@media(max-width:1229.98px){
    .container{
        max-width: 1000px;
        padding: 0 20px;
    }
    .fast_content-img img {
    width: 490px !important;
    border-radius: 20px !important;
}
.notifications_img img {
    width: 100% !important;
    margin: auto !important;
}
.fast_content-text {
       font-size: 20px;
   }
    .main {
        margin: 195px 0 145px;
    }
    .main h1{
        font-size: 90px;
        margin-bottom: 40px;
    }
    .main_subtitle{
        margin-bottom: 30px;
    }
    .main_wrapper::before{
        height: 367.63px;
        width: 250px;
        background-image: url(/img/main_img2.png);
        top: 30px;
    }
    
    .fast_title{
        margin-bottom: 22px;
    }
    .fast_tabs{
        justify-content: flex-start;
    }
    .fast_tab{
        line-height: 29px;
        padding: 10px 18px;
        font-size: 24px;
        margin-right: 4px;
        margin-left: 0;
    }
    .fast_content-text{
        width: 355px;
    }
    .fast_content-img{
        margin-right: 20px !important;
    }
    .what{
        margin:150px 0;
    }
    .what_title{
        max-width: 850px;
        margin-bottom: 150px;
    }
    .what_title br{
        display: none;
    }
    .what_img{
        padding: 75px 0;
        height: 650px;
        width: 500px;
    }
    .what_img img{
        max-height: 100%;
        width: auto;
    }
    .what_wrapper{
       width: 980px;
    }
    .what_info{
        margin-top: 30px;
        width: 445px;
    }
    .what_item{
        line-height: 48px;
        font-size: 40px;
        margin-bottom: 60px;
    }
    .what_items{
        margin-bottom: 60px;
    }
    .what_text{
        margin-bottom: 30px;
    }
    .setting_text{
        line-height: 48px;
        font-size: 40px;
    }
    .setting_info{
        width: 515px;
    }
    .setting_img {
        width: 420px;
        top: 22px;
        right: -29px;
    }
    .setting_img img{
         display: none;
    }
    .every{
        margin: 150px 0;
    }
    .every_item{
        margin-right: 25px;
    }
    .every_items{
        margin-bottom: 40px;
    }
    .get{
        margin: 150px 0;
    }
    .get_title{
        margin-bottom: 30px;
    }
    .get_items{
        width: 795px;
        margin: 0 auto;
    }
    .get_item:nth-child(1),
    .get_item:nth-child(4),
    .get_item:nth-child(7),
    .get_item:nth-child(3){
        width: 372px;
        padding-left: 0;
    }

    .get_item:nth-child(2),
    .get_item:nth-child(8),
    .get_item:nth-child(5),
    .get_item:nth-child(6){
        width: 423px;
        padding: 50px 35px 50px 50px;
        border-right: none;
    }
    .get_item:nth-child(1){
        order: -8;
    }
    .get_item:nth-child(2){
        order: -7;
    }
    .get_item:nth-child(4){
        order: -6;
    }
    .get_item:nth-child(5){
        order: -5;
    }
     .get_item:nth-child(3){
        order: 1;
        border-right: 1px solid #E6E6E6;
        border-top: 1px solid #E6E6E6;
        padding-bottom: 0;
    }
    .get_item:nth-child(6){
        order: 2;
        padding-bottom: 0;
    }
    .get_item:nth-child(9){
        display: none;
    }
    .notifications_wrapper{
        flex-direction: row-reverse;
    }
    .notifications_info{
        width: 570px;
    }
    .notifications_img{
        width: 100% !important;
        margin-bottom: 45px;
    }
    .notifications_img img{
        width: 100%;
        height: 100%;
    }
    .templates{
        margin: 150px 0;
    }
    .templates_title{
        max-width: 630px;
    }
    .templates_items{
        flex-wrap: wrap;
        width: 850px;
        margin: 0 auto -60px;
    }
    .templates_item{
        width: 44%;
        margin-bottom: 60px;
    }
    .templates_text{
        margin-bottom: 60px;
    }
    .converter{
        padding: 100px 0;
    }
    .converter_img{
        width: 360px;
        margin-bottom: 88px;
    }
    .converter_img img{
        width: 100%;
        height: 100%;
    }
    .testing{
        margin: 150px 0;
    }
    .testing_title{
        margin-bottom: 30px;
    }
    .testing_text{
        margin-bottom: 60px;
    }
    .testing_items{
        justify-content: space-between;
    }
    .testing_item:nth-child(1) {
        width: 326px;
    }
    .testing_item:nth-child(2) {
        width: 59%;
    }
    .testing_item:nth-child(2) .testing_item-btn:last-child{
        margin-right: 0;
    }
    .testing_item-text{
        max-width: 375px;
        margin-bottom: 40px;
    }
    .plans_text{
        margin-bottom: 60px;
    }
    .plans_info {
        padding: 52px 16px 52px 40px;
    }
    .plans_item-price{
        margin-bottom: 60px;
    }
    .build{
        padding: 100px 0 215px;
    }
    .build_warpper{
        position: relative;
    }
    .build_img{
        position: absolute;
        right: 0;
        bottom: -120px;
    }
    .faq{
        margin: 150px 0;
    }
    .faq_title{
        margin-bottom: 20px;
    }
    .footer {
        padding: 45px 0 50px;
    }
    .footer_top {
        margin-bottom: 80px;
    }
    .footer_title{
        max-width: 720px;
        margin-bottom: 40px;
    }
    .footer_btn{
        margin-bottom: 75px;
    }
    .scroll_line{
        display: none;
    }
}
@media(max-width:991.98px){
    .container{
        max-width: 640px;
    }
    .header{
        position: fixed;
        transition: all 0.3s;
        background-color: #fff;
            border-bottom: 1px solid #00000014;
    }
    .notifications_img img {
    width: 100%;
    margin: auto;
}
    .fast_content-img {
    margin-right: -142px !important;
        width: 422px !important;
}
.fast_content-img img {
    width: 422px !important;
    border-radius: 20px;
}
    .header.fixed{
        background-color: #fff;
    }
    .header.fixed .header_wrapper{
        padding: 15px 100px 15px 0px; 
    }
    .header.fixed .header_inner{
        top: 80px;
    }
    .header_inner{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 115px;
        right: 0;
        opacity: 0;
        padding-top: 70px;
        visibility: hidden;
        transition: all 0.6s;
        background-color: #fff;
    }
    .menu{
        flex-direction: column;
    }

    .menu a{
        margin-bottom: 20px;
        display: block;
        line-height: 29px;
        font-size: 24px;
    }
    .menu li{
        width: 600px; 
        margin: 0 auto;
    }
    .header_inner.active{
        opacity: 1;
        visibility: visible;
    }
    .header_wrapper{
        position: relative;
        padding: 33px 100px 33px 0px;
          transition: all 0.3s;
    }
    .menu_burger{
        display: flex;
        width: 50px;
        height: 25px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .menu_burger::before{
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        height: 3px;
        width: 100%;
        background-color: #201600;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .notifications_img {
    width: 100% !important;
    margin-bottom: 40px;
}
    .menu_burger.active::before{
        transform: rotate(45deg);
        top: 10px;
    }
    .menu_burger span{
        position: absolute;
        content: "";
        top: 11px;
        right: 0;
        height: 3px;
        width: 100%;
        background-color: #201600;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .menu_burger.active span{
        transform: scale(0);
    }
    .menu_burger::after{
        position: absolute;
        content: "";
        bottom: 0;
        right: 0;
        height: 3px;
        width: 70%;
        background-color: #201600;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .menu_burger.active::after{
        transform: rotate(-45deg);
        width: 100%;
        bottom: 11px;
    }
    .main{
        margin: 180px 0 120px;
    }
    .main h1{
        font-size: 70px;
        margin-bottom: 30px;
    }
    .main_text{
        max-width: 550px;
    }
    .main_text br{
        display: none;
    }
    .main_wrapper::before{
        background-image: url(/img/main_img3.png);
        width: 116px;
        height: 153px;
        top: 156px;
        right: -20px;
    }
    .main_wrapper::after{
        position: absolute;
        content: "";
        width: 120px;
        height: 120px;
        background-image: url(/img/main_img4.png);
        background-size: cover;
        right: -20px;
        top: -70px;
    }
    .fast_title{
        font-size: 70px;
    }
    .fast_text{
        max-width: 480px;
        margin-bottom: 40px;
    }
      .fast_tabs{
        justify-content: space-between;
      }
    .fast_tab{
        text-align: center;
        padding: 10px 14px;
        margin: 0;
    }
    .fast_tab:nth-child(1){
        width: 160px;
    }
    .fast_tab:nth-child(2){
        width: 235px;
    }
     .fast_tab:nth-child(3){
        width: 157px;
    }
    .fast_content-img{
        margin-right: 15px;
        width: 248px;
        transform: translateY(-15px);
        border-radius: 20px;
        overflow: hidden;
    }
    .fast_content-img img{
        width: 100%;
        height: 100%;
    }
    .fast_content-text{
        width: 280px;
    }
    .fast_content-wrapper {
        padding: 67px 0 56px;
    }
    .what{
        margin: 120px 0;
    }
    .what_title{
        line-height: 48px;
        font-size: 40px;
        margin-bottom: 120px;
    }
    .what_title br:first-child{
        display: block;
    }
    .what_wrapper{
        width: 100%;
        flex-direction: column-reverse;
    }
    .what_img{
        width: 100vw;
        height: 660px;
    }
    .what_img img{
        height: 500px;
        width: 380px;
    }
    .what_info{
        width: 442px;
        align-self: flex-start;
        margin-top: 60px;
    }
    .setting_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .setting_img{
        position: relative;
        top: auto;
        right: auto;
    }
    .setting_info{
        margin-bottom: 60px;
    }
    .setting {
        padding: 80px 0 50px;
    }
    .every{
        margin: 120px 0;
    }
    .every_title{
        font-size: 70px;
        line-height: 84px;
        margin-bottom: 60px;
        max-width: 595px;
    }
    .every_item{
        margin-right: 25px;
        margin-bottom: 30px;
    }
    .every_item:nth-child(5n){
        margin-right: 0;
    }
    .every_items{
        flex-wrap: wrap;
        width: 450px;
        margin-bottom: 0;
    }
    .get{
        margin: 120px 0;
    }
    .get_title{
        line-height: 110%;
        margin-bottom: 60px;
        font-size: 70px;
    }
    .get_items{
        width: 100%;
    }
    .get_item:nth-child(3),
    .get_item:nth-child(6),
    .get_item:nth-child(3n + 1),
    .get_item:nth-child(3n + 2){
        width: 50%;
    }
 
    .get_item {
        padding: 48px 15px 30px 40px;
    }
    .get_item:nth-child(2), .get_item:nth-child(8), .get_item:nth-child(5), .get_item:nth-child(6){
        padding: 48px 15px 30px 30px;
    }
    .get_item:nth-child(2),
    .get_item:nth-child(1){
        padding-top: 0;
    }
    .get_item:nth-child(3),
    .get_item:nth-child(6){
        padding-bottom: 0;
    }
    .notifications_wrapper{
        flex-direction: column;
    }
    .notifications_img{
        width: 400px;
        margin-bottom: 65px;
    }
    .notifications{
        padding: 80px 0;
    }
    .notifications_info{
        max-width: 570px;
        align-self: flex-start;
    }
    .templates{
        margin: 120px 0;
    }
    .templates_title{
        line-height: 84px;
        margin-bottom: 40px;
        font-size: 70px;
    }
    .templates_items{
        width: 370px;
        margin-bottom: 0;
    }
    .templates_item{
        margin-bottom: 0;
    }
    .templates_item-img{
        justify-content: center;
    }
    .templates_item-title{
        text-align: center;
    }
    .templates_items .slick-arrow{
        position: absolute;
        top: 145px;
        font-size: 0;
        border: none;
        background: none;
        background-size: cover;
        width: 30px;
        height: 50px;
    }
    .templates_items .slick-next{
      
        right: -60px;
        background-size: contain;
    background-repeat: no-repeat;
    }
    .templates_items .slick-prev{
       
        left: -60px;
        background-size: contain;
    background-repeat: no-repeat;
    }
    .converter{
        padding: 57px 0;
    }
    .converter_title{
        line-height: 84px;
        font-size: 70px;
        margin-bottom: 47px;
    }
    .converter_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .converter_info{
        width: 505px;
        align-self: flex-start;
    }
    .converter_img{
        margin-bottom: 0;
        margin-top: 60px;
    }
    .testing{
        margin: 120px 0;
    }
    .testing_title{
        font-size: 70px;
        margin-bottom: 40px;
    }
    .testing_items{
        flex-direction: column;
    }
    .testing_item:nth-child(1){
        margin-bottom: 60px;
    }
    .testing_item:nth-child(2){
        width: 95%;
    }
    .plans{
        padding: 60px 0;
    }
    .plans_title{
        font-size: 70px;
        line-height: 84px;
        margin-bottom: 40px;
    }
    .plans_info{
        padding: 40px 30px 40px 20px;
        width: 100vw;
    }
    .plans_wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .plans_item-price{
        line-height: 60px;
        font-size: 50px;
        margin-bottom: 75px;
    }
    .plans_item{
        width: 180px;
    }
    .plans_item-btn{
        width: 100%;
    }
    .plans_info-titles{
        width: 180px;
        margin-top: 205px;
    }
    .build{
        padding: 80px 0 380px;
    }
    .build_title{
        width: 100%;
    }
    .build_img{
        bottom: -340px;
    }
    .faq{
        margin: 120px 0;
    }
    .faq_title{
        font-size: 70px;
        line-height: 84px;
        margin-bottom: 30px;
    
    }
    .faq_item-title{
        padding: 30px 0;
        padding-right: 100px;
    }
    .faq_item-title span{
        right: 0;
    }
    .faq_item-text {
        margin-top: 0px;
        padding-bottom: 30px;
        padding-right: 100px;
    }
    .footer_title{
        line-height: 84px;
        font-size: 70px;
        margin-bottom: 55px;
    }
    .footer_btn {
        margin-bottom: 60px;
    }
}
@media (max-width: 767.98px) {
    .container {
		max-width: 100%;
    }
    .what_img img {
    margin-left: 0px;
}
.notifications_img img {
    width: 100%;
    margin: auto;
}
        .header_wrapper{
        padding: 20px 60px 20px 0;
    }
    .header.fixed .header_wrapper{
        padding: 15px 60px 15px 0; 
    }
    .header_log{
         font-size: 17px;
    width: 121px;
    height: 30px;
    /* background-image: url(/img/log_mobile.png); */
    background-size: cover;
    border:  1px solid;
    border-radius: 10px;

    }
   .fast_content-img {
    margin-right: 0px !important;
}
    .menu_burger{
        width: 40px;
        height: 22px;
    }
    .menu_burger span{
        top: 10px;
    }
    .main{
        /*margin: 130px 0 95px;*/

        margin: 130px 0 15px;
    }

    .main_wrapper::after,
    .main_wrapper::before{
        display: none;
    }
    .main h1{
        font-size: 50px;
    }
    .main_text{
        line-height: 24px;
        font-size: 20px;
        margin-bottom: 30px;
    }
    .main_form{
        flex-direction: column;
        width: 100%;
    }
    .main_form-inp{
        width: 100%;
        margin-bottom: 20px;
        padding-left: 10px;
    }
    .main_form-btn{
        width: 100%;
    }
    .fast{
        padding-top: 80px;
    }   
    .fast_title{
        font-size: 50px;
        margin-bottom: 20px;
        line-height: 100%;
    }
    .fast_text{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .fast_tabs{
        flex-direction: column;
      
    }
    .fast_tab{
        width: 200px !important;
        padding: 0;
        margin: 0 0 20px;
        border: none;
        text-align: left;
        line-height: 24px;
        font-size: 20px;
        position: relative;
    }
    .fast_tab::before{
        position: absolute;
        content: "";
       
        background-size: cover;
        width: 31px;
        height: 8px;
        right: -40px;
        top: 10px;
    }
    .fast_tab.active,
    .fast_tab:hover{
        border: none; 
    }
    .fast_tab:last-child{
        margin-bottom: 0;
    }
    .fast_tabs{
        margin-bottom: 40px;
        margin-left: 0;
    }
    .fast_content-wrapper{
        flex-direction: column-reverse;
        padding: 0;
    }
    .fast_content::after,
    .fast_content::before{
        display: none;
    }
    .fast_content-img{
        margin: 0;
        padding: 50px 0 72px;
        width: 100%;
        height: 100%;
        background: none;
        box-shadow: none;
        overflow: visible;
        z-index: 1;
        transform: none;
        position: relative;
    }
    .fast_content-img::before{
        position: absolute;
        content: "";
        width: 100vw;
        height: 100%;
        background: linear-gradient(247.61deg, #008BFF 8.41%, #4D24FF 54.24%, #0047FF 89.34%);
        top: 0;
        right: 50%;
        transform: translateX(50%);
        z-index: -1;
    }
    .fast_content-img img{
       height: 100% !important;
        width: 80% !important;
    border-radius: 10px !important;
    box-shadow: 12px 7px 30px -1px rgb(0 0 0 / 60%);
    margin-top: -38px;
    }
    .fast_content-text{
        width: calc(100% + 40px);
        padding: 67px 20px 57px;
        line-height: 120%;
        background: #FAFAFA;
        font-size: 18px;
        margin-left: -20px;
        margin-right: -20px;
        
    }
    .fast_content-items .slick-dots{
        position: absolute;
        display: flex;
        right: 50%;
        transform: translateX(50%);
        top: 240px;
    }
    .fast_content-items .slick-dots .slick-active button{
        background: rgba(255, 255, 255, 1);
    }
    .fast_content-items .slick-dots button{
        font-size: 0;
        width: 15px;
        background: rgba(255, 255, 255, 0.6);
        height: 15px;
        border-radius: 50%;
        margin: 0 5px;
        border: none;
        padding: 0;
    }
    .what{
        margin: 100px 0;
    }
    .what_title{
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 50px;
    }
    .what_img img{
           height: auto;
    width: 361px;
    }
    .what_img{
        height: 490px;
        padding: 0;
    }
    .what_info{
        margin-top: 40px;
        width: 100%;
    }
    .what_item:nth-child(1){
        width: 200px;
    }
    .what_item{
        line-height: 33px;
        font-size: 28px;
        margin-bottom: 30px;
    }
    .what_items {
        margin-bottom: 27px;
    }
    .setting_info{
        width: 100%;
    }
    .setting{
        padding: 60px 0 35px;
    }
    .setting_text{
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    .setting_btn{
        width: 100%;
    }
    .setting_img{
        width: 315px;
    }
    .every{
        margin: 100px 0;
    }
    .every_title{
        line-height: 60px;
        margin-bottom: 40px;
        font-size: 50px;
    }
    .every_items{
        width: 280px;
    }
    .every_item{
        width: 40px;
        height: 40px;
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .get{
        margin: 100px 0 70px;
    }
    .get_title{
        font-size: 50px;
        line-height: 110%;
        margin-bottom: 30px;
    }
    .get_item{
        width: 100% !important;
        padding: 30px 0 !important;
        border-right: none !important;
        border-top: 1px solid #E6E6E6 !important;
    }
    .get_item:nth-child(1){
        border-top: none!important; 
    }
    .get_item:nth-child(4){
        order: -8;
    }
    .get_item:nth-child(7){
        order: -7;
    }
    .get_item:nth-child(3){
        order: -6;
    }
    .get_item:nth-child(2){
        order: -5;
    }
    .get_item-text{
   
    }
    .notifications{
        padding: 60px 0;
    }
    .notifications_img{
        width: 100% !important;
        margin-bottom: 40px;
    }
    .notifications_info{
        width: 100%;
    }
    .notifications_title{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .notifications_text{
        margin-bottom: 20px;
    }
    .notifications_subtitle{
        line-height: 24px;
        font-size: 20px;
    }
    .templates{
        margin: 100px 0 60px;
    }
    .templates_title{
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 30px;
    }
    .templates_items{
        width: 250px;
    }
    .templates_items .slick-next{
        right: -15px;
    }
    .templates_items .slick-prev{
        left: -15px;
    }
    .templates_item-title{
        text-align: left;
    }
    .converter{
        padding: 60px 0;
    }
    .converter_title{
        line-height: 48px;
        margin-bottom:40px;
        font-size: 40px;
    }
    .converter_info{
        width: 100%;
    }
    .converter_item-title{
        margin-bottom: 10px;
    }
    .converter_item {
        margin-bottom: 30px;
    }
    .converter_img{
        width: 280px;
    }
    .testing{
        margin: 100px 0 80px;
    }
    .testing_title{
        font-size: 50px;
        line-height: 100%;
        margin-bottom: 30px;
    }
    .testing_text{
        margin-bottom: 40px;
    }
    .testing_item:nth-child(1){
        width: 100%;
    }
    .testing_item-btn{
        margin-right: 0;
        width: 100%;
    }
    .testing_item-text{
        margin-bottom: 30px;
    }
    .testing_item:nth-child(1){
        margin-bottom: 40px;
    }
    .testing_item-btns{
        flex-direction: column;
    }
    .testing_item:nth-child(2) .testing_item-btn{
        width: 100%;
    }
    .testing_item:nth-child(2){
        width: 100%;
    }
    .testing_item:nth-child(2) .testing_item-btn:last-child{
        margin-top: 20px;
    }
    .plans {
      padding: 80px 0 60px;
    }
    .plans_title{
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 30px;
    }
    .plans_info-titles{
        display: none;
    }
    .plans_info{
        flex-direction: column;
        width: 100%;
        background:none;
        padding: 0;
    }
    .plans_item{
        background-color: #fff;
        border-radius: 20px;
        padding: 40px 20px;
        width: 100%;
        margin-bottom: 60px;
    }
    .plans_item:last-child{
        margin-bottom: 0;
    }
    .plans_text{
        margin-bottom: 30px;
    }
    .plans_item-value{
        width: 100%;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 17px;
        padding-right: 25px;
    }
    .plans_item-value::before{
        position: relative;
        display: block;
        content: attr(data-title);
        font-weight: 300;
        font-size: 14px;
        color: #201600;
        min-width: 140px;
        width: 140px;
        line-height: 17px;
        text-align: left;
        margin-right: 30px;
    }
    /*.plans_item-value:nth-child(3):before{
        content: "Неограниченный доступ к фото и видео";
    }
    .plans_item-value:nth-child(4):before{
        content: "99.9 Гарантия безотказной работы";
    }
    .plans_item-value:nth-child(5):before{
        content: "Автоматизация всех контрактов";
    }
    .plans_item-value:nth-child(6):before{
        content: "Расширенная документация";
    }
    .plans_item-value:nth-child(7):before{
        content: "Полная оплата услуг";
    }
    .plans_item-value:nth-child(8):before{
        content: "Поддержка самообслуживания";
    }
    .plans_item-value:nth-child(9):before{
        content: "Шифрование сообщений";
    }*/
    .plans_item-value img{
        width: 30px;
        height: 30px;
    }
    .plans_item-price{
        margin-bottom: 52px;
    }
    .plans_item-btn{
        margin-top: 40px;
    }
    .build{
        padding: 60px 0 300px;
    }
    .build_title{
        line-height: 36px;
        font-size: 30px;
        margin-bottom: 30px;
    }
    .build_img{
        width: 280px;
        bottom: -235px;
        right: 50%;
        transform: translateX(50%);
    }
    .build_img img{
        width: 100%;
        height: 100%;
    }
    .faq{
        margin: 100px 0;
    }
    .faq_title{
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 23px;
    }
    .faq_item-title{
        line-height: 24px;
        padding: 20px 60px 20px 0;
        font-size: 20px;
    }
    .faq_item-title span{
        width: 30px;
        height: 30px;
    }
    .faq_item-title span::before{
        height: 1px;
    }
    .faq_item-title span::after{
        width: 1px;
    }
    .faq_item-text{
        padding-right: 60px;
        padding-bottom: 20px;
    }
    .footer{
        padding: 50px 0 60px;
    }
    .footer_top{
        margin-bottom: 60px;
    }
    .footer_title{
        font-size: 35px;
        line-height: 42px;
        margin-bottom: 30px;
    }
    .footer_btn{
        width: 100%;
        margin-bottom: 30px;
    }
    .menu_burger.active::after{
        bottom: 9px;
    }
    .header_inner{
        top: 99px;
    }
    .menu li{
        padding: 0 20px;
    }
    .header.fixed .header_inner{
        top: 59px;
    }
    .header_inner-log{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 130px;
        border: 1px solid #4D24FF;
        border-radius: 10px;
        height: 50px;
        font-weight: 500;
        font-size: 18px;
        color: #4D24FF;
        margin-left: 20px;
        line-height: 21px;
    }
}
.get_item:nth-child(1) img {
       height: 36px;
}
.get_item:nth-child(2) img {
     width: 42px;
}
.get_item:nth-child(3) img {
  width: 38px;
    margin-left: 10px;
}
.get_item:nth-child(4) img {
  width: 26px;
}
.get_item:nth-child(5) img {
  width: 62px;
}
.get_item:nth-child(6) img {
width: 26px;
}
.get_item:nth-child(7) img {
width: 36px;
}
.get_item:nth-child(8) img {
    width: 27px;
    margin-right: -4px;
}
.converter_img img {
    width: 100%;
    max-height:100% !important;
}
a.testing_item-btn img {
    height: 30px;
}
@media(min-width:1229.98px){
    .converter_img img {
    width: 570px;
  }
}
.every_item img {
    width: 80px;
}
.templates_item-img img {
    max-height: 344px;
}
button.slick-prev.slick-arrow {
    z-index: 9;
}
.fast_content-img img {
    width: 890px;
    border-radius: 20px;
   }
   .notifications_img img {
    width: 560px;
}
.setting_img img {
    width: 540px;
    margin-top: -30px;
}

