body, html {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    position: relative;
    background: #fff;
    padding: 0;
    margin: 0;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #21272A;
}

input, select, textarea {
    font-family: 'Onest';
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

a {
    font-size: inherit;
    font-family: inherit;
    color: #7400CC;
    font-weight: 400;
    text-decoration: none;
    
}

a:focus-visible, a:hover {
    text-decoration: underline;
}

*:focus {
    outline: 0;
}

@media ( max-width: 576px ) {
    .hide__mobile {
        display: none !important;
    }
}

@media ( min-width: 577px ) {
    .hide__desktop {
        display: none !important;
    }
}

@media ( max-width: 768px ) {
    .hide__xs {
        display: none !important;
    }
}

@media ( min-width: 769px ) {
    .hide__sm {
        display: none !important;
    }
}

.h1, h1 {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 35px;
}

.h2, h2 {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.2;
    padding: 0;

    margin: 0 0 30px;
}
.h3, h3 {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 28px;
}
.h4, h4 {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 35px;
}

.h5, h5 {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 35px;
}

.opacity {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.headline {
    position: absolute;

    top: 25px;

    width: calc(100% - 50px);
    background: #fff;
    height: 80px;
    padding: 12px 54px;
    border-radius: 10px;
    border: 1px solid #D0D4DA;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(168, 121, 230, 0.12);
    -moz-box-shadow: 0px 0px 16px 0px rgba(168, 121, 230, 0.12);
    box-shadow: 0px 0px 16px 0px rgba(168, 121, 230, 0.12);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 1388px;
    transform: translateX(-50%);
    left: 50%;
}

.headline .headline-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.headline .logo {
    display: block;
    margin-right: 48px;
}

.menu-list-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.menu-list {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.menu-list .menu-item {
    height: 40px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    transition: all 0.2s;
}

.menu-list .menu-item:hover {
    background: rgba(116, 0, 204, 0.1);
}

.menu-list .menu-item.subitems {
    padding-right: 44px;
}

.menu-list .menu-item.subitems:after {
    display: block;
    content: " ";
    width: 24px;
    height: 24px;
    background: url(../images/arrow-down.svg) center center no-repeat;
    position: absolute;
    right: 12px;
    top: calc(50% - 12px);
}

.menu-list .menu-item a {
    font-size: 16px;
    line-height: 1;
    color: #21272A;
}

.menu-list .menu-item a:hover {
    text-decoration: none;
}

.menu-list .menu-item .submenu-list {
    display: none;
    position: absolute;
    left: -10px;
    top: 30px;
}


.menu-list .menu-item.subitems:hover .submenu-list  {
    border-radius: 6px;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    min-width: 150px;
}

.menu-list .menu-item.subitems .submenu-list a {

}

.button {
    background: #1D0033;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    padding: 0 32px;
    height: 56px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.button.header-cta:hover {
    background: rgba(87, 1, 153, 1);
}

.button:hover {
    text-decoration: none;
}

.button.gradient {
    background: rgb(166,19,217);
    background: linear-gradient(90deg, rgba(166,19,217,1) 0%, rgba(210,50,141,1) 100%);
}

.button.gradient:hover {
    background: linear-gradient(90deg, rgba(210, 50, 141, 1) 0%, rgba(166, 19, 217, 1) 100%);
}

.button.corner {
    background: none;
    border: 2px solid rgba(116, 0, 204, 1);
    font-size: 20px;
    color: rgba(116, 0, 204, 1);
    font-weight: 500;
}

.button.corner:hover {
    background: rgba(29, 0, 51, 1);
    border-color: rgba(29, 0, 51, 1);
    color: #fff;
}

.content-block {
    padding: 80px;
}

.content-block h2 {
    margin-bottom: 48px;
    text-align: center;
    margin-top: 0;
}

.content-block .info {
    text-align: center;
    margin-bottom: 64px;
}

.content-block.hero {
    background: rgb(241,238,254);
    background: linear-gradient(90deg, rgba(241,238,254,1) 0%, rgba(213,208,248,1) 100%);
    padding: 155px 80px 86px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.content-block.hero .max-width-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.content-block.hero .info {
    width: 584px;
    text-align: left;
    margin-bottom: 0;
}

.content-block.hero .info h1 {
    margin-bottom: 40px;
}

.content-block.hero .info .text {
    margin-bottom: 50px;
}

.content-block.promos h4 {
    margin-bottom: 64px;
    text-align: center;
}


@keyframes roll-line {
    from {
        translate: 0 0;
    }

    to {
        translate: calc(-3342px * 2 - 32px) 0;
    }
}

@keyframes roll-line2 {
    from {
        translate: calc(-1456px * 2 - 32px) 0;
    }

    to {
        translate: 0 0;
    }
}

.promos-list {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.promo-list-bl {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.line1 .promo-list-bl {
    animation: 120s infinite normal roll-line;
    animation-timing-function: linear;
}

.line2 .promo-list-bl {
    animation: 45s infinite normal roll-line2;
    animation-timing-function: linear;
}

.promos-list .promo-item {
    height: 75px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid #DDE1E6;
    border-radius: 10px;
}

.promos-list .promo-item img {
    max-height: 52px;
}

.content-block.marketing {
    background: rgb(241,238,254);
    background: linear-gradient(90deg, rgba(241, 238, 254, 0.36) 0%, rgba(183, 128, 255, 0.4) 100%);
}

.marketing-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.marketing-list {
    padding: 0 34px;
    max-width: 693px;
}

.marketing-list-item {
    padding: 30px 16px;
    border-bottom: 2px solid #B780FF;
    
}

.marketing-list-item .img-mob {
    display: none;
}

.marketing-list-item > a {
    font-size: 24px;
    font-weight: 700;
    color: #2F2F2F;
}

.marketing-list-item > a:hover {
    text-decoration: none;
}

.marketing-list-item.act > a span {
    color: #7400CC;
}

.marketing-list-item .text {
    color: #2F2F2F;
    margin-top: 30px;
    display: none;
}

.marketing-list-item.act .text {
    display: block;
}

.marketing-img-block .img-main {
    display: none;
}

.marketing-img-block .img-main.act {
    display: block;
}

.content-block.studies {
    
}

.studies-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    -webkit-perspective: 1200px;
    perspective: 1200px;
}



.studies-list-item {
    flex: 1;
    background: #0077ED0F;
    min-height: 450px;
    padding: 30px 40px 100px 60px;
    position: relative;
    border: 1px solid #DDE1E6;
    border-radius: 0 10px 10px 0;
    -webkit-box-shadow: 4px 4px 16px 0px rgba(168, 121, 230, 0.12);
    -moz-box-shadow: 4px 4px 16px 0px rgba(168, 121, 230, 0.12);
    box-shadow: 4px 4px 16px 0px rgba(168, 121, 230, 0.12);
    color: rgba(33, 39, 42, 1);
    transition: all 0.3s;
    
}

.max-width-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.studies-list-item:hover {
    text-decoration: none;
    rotate: 0 1 0 -5deg;
}

.studies-list-item:nth-child(2) {
    background: rgba(116, 0, 204, 0.05);
}

.studies-list-item:nth-child(3) {
    background: rgba(34, 173, 74, 0.06);
}

.studies-list-item:before {
    content: " ";
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    bottom: -1px;
    width: 20px;
    background: #0077ED1A;
    border: 1px solid #0077ED33;
}

.studies-list-item:nth-child(2):before {
    background: rgba(116, 0, 204, 0.1);
    border: 1px solid rgba(116, 0, 204, 0.2);
}

.studies-list-item:nth-child(3):before {
    background: rgba(34, 173, 74, 0.1);
    border: 1px solid rgba(34, 173, 74, 0.2);
}

.studies-list-item .img {
    position: absolute;
    left: 60px;
    bottom: 30px;
}

.studies-list-item .lbl {
    border-radius: 4px;
    background: #0077ED;
    padding: 0 10px;
    font-size: 15px;
    color: #fff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 27px;
    width: 106px;
}


.studies-list-item:nth-child(2) .lbl {
    background: rgba(183, 128, 255, 1);
}

.studies-list-item:nth-child(3) .lbl {
    background: rgba(34, 173, 74, 1);
}

.content-block.infoimg h2 {
    margin-bottom: 64px;
}

.content-block.infoimg .image {
    width: 662px;
    height: 642px;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
}

.content-block.infoimg.gray .image {
  
}

.content-block.infoimg .image video {
    width: 662px;
}

.content-block.infoimg.gray .image {
    width: 652px;
    height: 620px;

}

.content-block.infoimg.gray .image video {
    width: 653px;
}

.content-block.infoimg .content-block-wrap {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

.content-block.infoimg .info {
    max-width: 560px;
    text-align: left;
}

.content-block.infoimg .info h2 {
    margin-bottom: 48px;
    text-align: left;
}

.content-block.infoimg .info .text {
    margin-bottom: 64px;
}

.content-block.infoimg .info .full {
    display: none;
}

.content-block.infoimg .info.act .full {
    display: block;
}

.content-block.infoimg .info.act .short {
    display: none;
}

.content-block.infoimg .info .button {
    width: 170px;
}

.content-block.gray {
    background: rgba(249, 248, 253, 1);
}

.content-block.infoimg.gray .content-block-wrap {
    flex-direction: row-reverse;
}

.content-block.devices {
    text-align: center;
}


.content-block.devices .info {
    margin-bottom: 60px;
}


.content-block.videoblock .content-block-wrap {
    gap: 80px;
    justify-content: flex-start;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    max-width: 1050px;
    margin: 0 auto;
}

.content-block.videoblock .info {
    max-width: 660px;
    text-align: left;
}

.content-block.videoblock .info h2 {
    margin-bottom: 25px;
    text-align: left;
}

.content-block.videoblock .info h4 {
    margin-bottom: 48px;
}

.content-block.videoblock .info .text {
    margin-bottom: 48px;
}

.content-block.videoblock .info .button {
    width: 230px;
}

.content-block .video {
    width: 320px;
    height: 560px;
    border-radius: 20px;
    border: 1px solid rgba(148, 152, 157, 1);
    overflow: hidden;
}

.content-block.faqblock h2 {
    margin-bottom: 64px;
}
.faq-list {
    margin: 0 auto;
    max-width: 1120px;
}


.faq-list .faq-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(221, 225, 230, 1);
    position: relative;
}

.faq-list .faq-item.act {
    border-bottom: 2px solid rgba(166, 19, 217, 1);
}

.faq-list .faq-item .name {
    font-size: 24px;
    font-weight: 700;
    max-width: 800px;
    cursor: pointer;
}

.faq-list .faq-item .txt {
    margin-top: 30px;
    font-size: 20px;
    display: none;
    max-width: 800px;
}

.faq-list .faq-item.act .txt {
    display: block;
}


.faq-list .faq-item .faq-toggle {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    right: 0;
    top: 0;
    cursor: pointer;
}

.faq-list .faq-item.act .faq-toggle {
    transform: rotate(45deg);
}

.faq-list .faq-item .faq-toggle:before {
    display: block;
    position: absolute;
    content: " ";
    height: 16px;
    width: 2px;
    border-radius: 2px;
    background: rgba(47, 47, 47, 1);
    left: calc(50% - 1px);
    top: calc(50% - 8px);
}



.faq-list .faq-item .faq-toggle:after {
    display: block;
    position: absolute;
    content: " ";
    height: 2px;
    width: 16px;
    border-radius: 2px;
    background: rgba(47, 47, 47, 1);
    left: calc(50% - 8px);
    top: calc(50% - 1px);
}

.faq-list .faq-item.act .faq-toggle:before {
    background: rgba(166, 19, 217, 1);
}
.faq-list .faq-item.act .faq-toggle:after {
    background: rgba(166, 19, 217, 1);
}

.content-block.reviewblock h2 {
    margin-bottom: 64px;
}

.reviewblock .review {
    max-width: 912px;
    margin: 0 auto;
    padding-top: 86px;
    position: relative;
    background: url(../images/quotes.svg) center top no-repeat;
    text-align: center;
}

.reviewblock .review .txt {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
}

.reviewblock .review .client {
    display: flex;
    margin: 0 auto 64px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.reviewblock .review .client .ava {
    width: 104px;
    height: 104px;
    border-radius: 100%;
}

.reviewblock .review .client .name {
    font-size: 18px;
    font-weight: 700;
    color: rgba(29, 0, 51, 1);
    text-align: left;
}

.reviewblock .review .client .name span {
    color: rgba(148, 152, 157, 1);
    font-weight: 400;
}

.reviewblock .review .button {
    margin: 0 auto;
    width: 420px;
}

.footer {
    padding: 0 80px;
    background: rgba(7, 7, 44, 1);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 104px;
}

.footer .footer-line {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 48px;
}

.footer .footer-line .copyright {
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 400;
}

.fmenu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.fmenu a {
    padding: 0 8px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.fmenu a:hover {
    text-decoration: underline;
}

.content-block.case-block1 {
    background: rgb(241,238,254);
    background: linear-gradient(90deg, rgba(241,238,254,1) 0%, rgba(213,208,248,1) 100%);
    padding: 155px 80px 86px;
    display: flex;

    align-items: center;
    flex-direction: column;
}

.content-block.case-block1 h1 {
    text-align: center;
    max-width: 1062px;
    margin: 0 auto 64px;
}

.content-block .case-img {
    text-align: center;
}

.content-block .case-img img {
    height: 45px;
}

.content-block.case-block2 .info {
    max-width: 1280px;
    margin: 0 auto;
    text-align: left;
    font-size: 22px;
    
}

.content-block.case-block2 .info p {
    margin-bottom: 64px;
}

.content-block.case-block2 .info a {
    color: rgba(14, 92, 244, 1);
}

.content-block.case-block2 .info ul {
    padding-left: 21px;
    margin-bottom: 64px;
}

.content-block.case-block2 .info ul.inner {
    padding-left: 41px;
}

.content-block.case-block2 .info ul li {
    margin: 0 0 10px;
}

.content-block.case-block2 .info .info-img {
    padding: 20px;
    border-radius: 12px;
    margin: 0 auto 64px;
    width: 760px;
    background: rgba(245, 245, 245, 1);
}

.content-block.case-block2 .info .info-img img {
    max-width: 100%;
}


.content-block.case-block2 h5 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 64px;
}

.content-block.contact-tabs-block {
    padding: 185px 80px 80px;
}

.content-block.contact-tabs-block h2 {
    text-align: center;
    margin-bottom: 64px;
}

.contact-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.contact-tabs .contact-tab {
    width: 340px;
    height: 184px;
    padding: 32px 25px;
    text-align: center;
    border: 2px solid rgba(221, 225, 230, 1);
    border-radius: 10px;
    cursor: pointer;
}

.contact-tabs .contact-tab.act {
    border: 2px solid rgba(166, 19, 217, 1);
}

.contact-tabs .contact-tab .name {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

.content-block.brand-form {
    padding: 80px;
    display: none;
}

.content-block.brand-form.act {
    display: block;
}

.content-block.partner-form {
    padding: 80px;
    display: none;
}

.content-block.partner-form.act {
    display: block;
}

.content-block.brand-form form {
    width: 700px;
    margin: 0 auto;
}

.content-block.partner-form form {
    width: 700px;
    margin: 0 auto;
}

.fields-row {
    display: flex;
    gap: 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    
}

.field {
    margin-bottom: 16px;
    flex: 1;
}

.field .lbl {
    font-size: 15px;
    margin-bottom: 8px;
}

.field .inp {
    width: 100%;
}

.field .inp .err {
    display: none;
}

.field .inp.err .err {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 21, 0, 1);
}

.field .sel .err {
    display: none;
}

.field .sel.err .err {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 21, 0, 1);
}


.field .inp input {
    width: 100%;
    border: 1px solid rgba(221, 225, 230, 1);
    border-radius: 8px;
    height: 48px;
    line-height: 48px;
    background: #fff;
    padding: 0 16px;
    font-size: 16px;
    color: rgba(47, 47, 47, 1);
}

.field .inp.err input, .field .inp.err input::placeholder {
    border-color: rgba(255, 21, 0, 1);
    color: rgba(255, 21, 0, 1);
}

.field .inp textarea {
    width: 100%;
    border: 1px solid rgba(221, 225, 230, 1);
    border-radius: 8px;
    min-height: 180px;
    line-height: 1.5;
    background: #fff;
    padding: 16px;
    font-size: 16px;
    color: rgba(47, 47, 47, 1);
}

.field .inp.err textarea {
    border-color: rgba(255, 21, 0, 1);
    color: rgba(255, 21, 0, 1);
}

.field .sel {
    position: relative;
}

.field .sel .sel-label {
    width: 100%;
    border: 1px solid rgba(221, 225, 230, 1);
    border-radius: 8px;
    height: 48px;
    line-height: 48px;
    background: #fff;
    padding: 0 16px;
    font-size: 16px;
    color: rgba(47, 47, 47, 1);
    cursor: pointer;
    position: relative;
}

.field .sel .sel-label:after {
    content: " ";
    display: block;
    position: absolute;
    right: 16px;
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
    background: url(../images/arrow-down.svg) center center no-repeat;
}

.field .sel.err .sel-label {
    border-color: rgba(255, 21, 0, 1);
    color: rgba(255, 21, 0, 1);
}

.field .sel .sel-list {
    width: 100%;
    border: 1px solid rgba(221, 225, 230, 1);
    border-radius: 8px;
    margin-top: 8px;
    background: #fff;
    padding: 16px;
    font-size: 16px;
    color: rgba(47, 47, 47, 1);
    cursor: pointer;
    position: relative;
    display: none;
    max-height: 250px;
    overflow: auto;
}

.field .sel.choose .sel-list {
    display: block;
}

.field .sel .sel-list .sel-item {
    padding: 13px 16px;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    color: rgba(47, 47, 47, 1);
}

.field .sel .sel-list .sel-item:hover, .field .sel .sel-list .sel-item.act {
    background: rgba(245, 245, 245, 1);
}

.field .sel .sel-list .sel-item:last-child {
    margin-bottom: 0;
}

.field .sel.multi .sel-list .sel-item {
    padding: 13px 16px 13px 48px;
    position: relative;
}

.field .sel.multi .sel-list .sel-item:before {
    position: absolute;
    left: 16px;
    content: " ";
    display: block;
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
    background: url(../images/checkbox.svg) center center no-repeat;
}

.field .sel.multi .sel-list .sel-item.act, .field .sel.multi .sel-list .sel-item:hover {
    background: #fff;
}

.field .sel.multi .sel-list .sel-item.act:before {
    background: url(../images/checkbox-act.svg) center center no-repeat;
}

.agree {
    margin-top: 20px;
}

.agree .line {
    display: flex;
    
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 16px;
    gap: 8px;
}

.agree .errline {
    margin-top: 20px;
    display: none;
    color: #FF1500;
    background: rgba(255, 21, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #FF1500;
    padding: 16px;
    font-size: 16px;
}

.agree.err .errline {
    display: block;
}

.checkbox {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.checkbox:before {
    position: absolute;
    left: 0px;
    content: " ";
    display: block;
    top: 0;
    width: 24px;
    height: 24px;
    background: url(../images/checkbox.svg) center center no-repeat;
}

.checkbox.act, .checkbox:hover {
    background: #fff;
}

.checkbox.act:before {
    background: url(../images/checkbox-act.svg) center center no-repeat;
}

.agree.err .checkbox:before {
    background: url(../images/checkbox-err.svg) center center no-repeat;
}



.content-block form .button {
    width: 100%;
    margin-top: 24px;
    background: rgba(87, 1, 153, 1);
}

.content-block form .button:hover {
    background: rgba(29, 0, 51, 1);
}

.content-block.thank-you {
    padding: 205px 80px 120px;
    text-align: center;
    font-size: 16px;
    display: none;
}

.content-block.thank-you.act {
    display: block;
}

.content-block.thank-you h2 {
    color: rgba(166, 19, 217, 1);
    font-size: 56px;
    margin-bottom: 64px;
}

.content-block.thank-you img {
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
    display: block;
    
}

.content-block.thank-you p {
    font-size: 24px;
    margin: 0 auto 18px;
    text-align: center;
    
}


.content-block.career-list-block {
    padding: 185px 80px 80px;
}

.content-block.career-list-block h2 {
    margin-bottom: 80px;
}

.career-list {
    margin: 0 auto;
    max-width: 1000px;
    
}

.career-list h3 {
    font-size: 32px;
    padding: 16px;
    border-bottom: 1px solid rgba(47, 47, 47, 1);
    margin-bottom: 0;
}

.career-list .career-item {
    padding: 26px 50px 32px 16px;
    position: relative;
    border-bottom: 1px solid rgba(221, 225, 230, 1);
    cursor: pointer;
    display: block;
    color: rgba(47, 47, 47, 1);
}

.career-list .career-item:hover {
    text-decoration: none;
}

.career-list .career-item:before {
    content: " ";
    display: block;
    position: absolute;
    right: 20px;
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
    background: url(../images/arrow-list.svg) center center no-repeat;
}

.career-list .career-item:hover {
    border-bottom: 1px solid rgba(116, 0, 204, 1);
}

.career-list .career-item:hover:before {
    background: url(../images/arrow-list-act.svg) center center no-repeat;
}


.career-list .career-item .name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.perks {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.perks .perk-item {
    padding: 4px 10px;
    background: rgba(245, 245, 245, 1);
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    justify-content: flex-start;
}

.content-block.career-title {
    padding: 185px 80px 80px;
}

.content-block.career-title h2 {
    margin: 0;
}

.content-block.career-detail {
    padding: 80px;
}

.content-block.career-detail h3 {
    text-align: center;
    margin: 0 0 30px;
    font-size: 32px;
}

.content-block.career-detail .perks {
    justify-content: center;
    margin-bottom: 80px;
}

.content-block.career-detail .info {
    text-align: left;
}


.content-block.career-detail .info p {
    margin-bottom: 64px;
}

.content-block.career-detail .info a {
    color: rgba(14, 92, 244, 1);
}

.content-block.career-detail .info ul {
    padding-left: 21px;
    margin-bottom: 64px;
}

.content-block.career-detail .info ul.inner {
    padding-left: 41px;
}

.content-block.career-detail .info ul li {
    margin: 0 0 10px;
}

.content-block.career-detail .info .info-img {
    padding: 20px;
    border-radius: 12px;
    margin: 0 auto 64px;
    width: 760px;
    background: rgba(245, 245, 245, 1);
}

.content-block.career-detail .info .info-img img {
    max-width: 100%;
}


.content-block.career-detail h5 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 64px;
}

.content-block.career-form {
    padding: 80px;
}

.content-block.career-form h2 {
    text-align: left;
    margin-bottom: 64px;
}

.content-block.career-form form {
    max-width: 700px;
}

.fields-block {
    margin: 0 0 64px;
}

.fields-block h3 {
    margin-bottom: 40px;
}

.field.line {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    
}

.field.line .lbl {
    min-width: 225px;
}

.field.line .lbl span {
    color: rgba(255, 21, 0, 1);
}

.policy {
    font-size: 16px;
    margin-bottom: 40px;
}

.policy a {
    color: rgba(47, 47, 47, 1);
    text-decoration: underline;
}

.content-block.career-form .button {
    max-width: 250px;
    background: rgba(87, 1, 153, 1);
}

@media (max-width: 1400px){
    h1, .h1 {
        font-size: 58px;
    }

    .content-block.hero {
        gap: 20px;
        padding-right: 25px;
    }


    .content-block.hero .max-width-wrapper {
        gap: 20px;
    }

    .content-block.hero .info {
        width: 530px;
    }

    .content-block.hero .hero-img {
        width: calc(100% - 550px);
    }

    .content-block.hero .hero-img img {
        width: 100%;
    }

    .promos-list {
        position: relative;
        left: calc(50% - 600px);
        width: 1200px;
    }

    .marketing-list {
        width: 610px;
    }
    
    .marketing-img-block {
        width: calc(100% - 650px);
    }

    .marketing-img-block img {
        width: 100%;
    }

    .marketing-wrap {
        align-items: center;
    }

    .studies-list {
        gap: 25px;
    }

    .studies-list-item {
        padding: 30px 16px 100px 48px;
        font-size: 18px;
    }

    .studies-list-item .img {
        bottom: 34px;
        left: 48px;
        max-width: 220px;
        max-height: 28px;
    }

    .content-block.infoimg .content-block-wrap {
        gap: 20px;
    }

    .content-block.infoimg .image {

        width: 525px;
    }

    .content-block.infoimg .image img {
        width: 100%;
    }

    .content-block.infoimg .info {
        max-width: 430px;
    }

    .content-block.videoblock .content-block-wrap {
        gap: 30px;
    }

    .faq-list {
        margin-left: 0;
    }
}

.content-block.videoblock .info .video-mob {
    display: none;
}

.burger {
    display: none;
}

.mobile-menu {
    display: none;
}

@media (max-width: 1120px){
    
    
    .openmenu .mobile-menu {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        background: #fff;
        padding: 40px 60px;
        z-index: 10;
    }

    .mobile-menu .logo {
        display: block;
        text-align: center;
    }

    .mobile-menu .close {
        width: 40px;
        height: 40px;
        position: absolute;
        right: 40px;
        top: 40px;
    }

    .mobile-menu .menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .mobile-menu .menu-list-wrap {
        justify-content: flex-start;
        margin-top: 40px;
    }

    .menu-list .menu-item {
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        height: auto;
        min-height: auto;
        font-size: 20px;
    }

    .menu-list .menu-item a {
        font-size: 20px;
    }

    .menu-list .menu-item.subitems:hover .submenu-list {
        padding: 0 0 0 20px;
        gap: 15px;
    }

    .menu-list .menu-item .submenu-list {
        position: relative;
        top: 0;
        left: 0;
        margin: 30px 0 0;
    }

    .menu-list .menu-item.subitems:after {
        top: -4px;
        right: auto;
        left: 140px;
    }

    .burger {
        display: block;
        width: 26px;
        height: 26px;
        position: relative;
        margin-right: 30px;
    }

    

    .burger div {
        position: absolute;
        top: 12px;
        left: 0;
        width: 26px;
        height: 2px;
        background: rgba(29, 0, 51, 1);
        border-radius: 2px;
        
    }

    .burger div:before {
        top: -8px;
        left: 0;
        position: absolute;
        width: 100%;
        height: 2px;
        background: rgba(29, 0, 51, 1);
        border-radius: 2px;
        content: " ";
        display: block;
    }

    .burger div:after {
        top: 8px;
        left: 0;
        position: absolute;
        width: 100%;
        height: 2px;
        background: rgba(29, 0, 51, 1);
        border-radius: 2px;
        content: " ";
        display: block;
    }
    
    
    .headline .menu-list {
        display: none;
    }
    
    .headline {
        justify-content: space-between;
        padding-left: 54px;
    }

    .menu-list-wrap {
        justify-content: flex-end;
    }

    .content-block {
        padding: 60px 65px;
    } 
    
    .content-block.hero {
        padding: 155px 65px 60px;
        flex-direction: column;
        gap: 40px;
    }

    .content-block.hero .max-width-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .content-block.hero .info {
        width: 100%;
        text-align: center;
    }

    .content-block.hero .hero-img {
        width: 100%;
    }

    .promos-list {

    }

    .promos-list .promo-item {
        height: 65px;
        padding: 0 17px;
        margin-bottom: 20px;
    }

    .promos-list .promo-item img {
        max-height: 30px;
    }

    .content-block h2 {
        margin-bottom: 20px;
    }

    .content-block .info {
        margin-bottom: 30px;
    }

    .h2, h2 {
        font-size: 42px;
    }

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

    .marketing-list-item > a {
        font-size: 23px;
    }

    .marketing-list-item .text {
        font-size: 16px;
    }

    .marketing-list-item.act .img-mob {
        display: block;
        margin: 30px auto 0;
        max-height: 446px;
    }

    .marketing-img-block {
        display: none;
    }

    .studies-list-item {
        width: 310px;
        max-width: 310px;
        min-width: 310px;
        margin-bottom: 15px;
    }

    .studies-list {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        
    }

    .content-block.infoimg .content-block-wrap {
        flex-direction: column;
    }

    .content-block.infoimg.gray .content-block-wrap {
        flex-direction: column;
    }

    .content-block.infoimg .info {
        width: 100%;
        text-align: center;
        margin-bottom: 55px;
        max-width: 100%;
    }

    .content-block.infoimg .info h2 {
        font-size: 30px;
        margin-bottom: 30px;
        text-align: center;
    }

    .content-block.infoimg .info .text {
        margin-bottom: 30px;
    }
    .content-block.infoimg .info .button {
        margin: 0 auto;
    }
    

    .content-block.infoimg .image {
        padding: 0;
        width: 100%;
    }

    .content-block.infoimg.gray .image {
        margin: 0 auto;
    }

    .content-block h2 {
        margin-bottom: 30px;
    }

    .content-block.devices .info {
        margin-bottom: 30px;
    }

    .content-block.devices .image {
        width: 100%;
    }

    .content-block.devices .image img {
        max-width: 100%;
    }

    .content-block.videoblock .content-block-wrap {
        flex-direction: column-reverse;
    }

    .content-block.videoblock .video {
        display: none;
    }

    .content-block.videoblock .info {
        text-align: center;
        max-width: 100%;
    }

    .content-block.videoblock .info h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    .content-block.videoblock .info h4 {
        margin-bottom: 30px;
        font-size: 23px;
    }

    .content-block.videoblock .info .video-mob {
        display: block;
        margin: 0 auto 30px;
        width: 320px;
        height: 560px;
        border-radius: 20px;
        border: 1px solid rgba(148, 152, 157, 1);
        overflow: hidden;
    }

    .content-block.videoblock .info .button {
        margin: 0 auto;
    }

    .content-block.faqblock h2 {
        margin-bottom: 40px;
    }

    .faq-list .faq-item .name {
        padding-right: 30px;
    }

    .faq-list .faq-item .faq-toggle {
        top: 6px;
    }

    .content-block.reviewblock h2 {
        margin-bottom: 30px;
    }

    .reviewblock .review .txt {
        font-size: 22px;
    }
    
    .footer {
        height: auto;
        min-height: 80px;
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding: 40px 24px;
    }

    .footer .footer-line {
        flex-direction: column-reverse;
        gap: 30px;
        align-items: flex-start;
    }

    .fmenu {
        gap: 30px;
    }

    .fmenu a {
        padding: 0;
    }

    .content-block.contact-tabs-block {
        padding: 137px 60px 40px;
    }

    .content-block.contact-tabs-block h2 {
        margin-bottom: 40px;
    }

    .contact-tabs .contact-tab {
        width: 308px;
        height: 169px;
        font-size: 16px;
    }

    .contact-tabs .contact-tab .name {
        font-size: 25px;
    }

    .content-block.brand-form {
        padding: 40px 60px;
    }

    .content-block.partner-form {
        padding: 40px 60px;
    }

    .content-block.brand-form form {
        width: 100%;
    }

    .content-block.partner-form form {
        width: 100%;
    }

    .fields-row {
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }

    .field {
        width: 100%;
    }

    .content-block.career-list-block {
        padding: 145px 20px 80px;
    }

    .content-block.career-list-block h2 {
        margin-bottom: 40px;
    }

    .career-list {
        max-width: 727px;
    }

    .career-list h3 {
        font-size: 30px;
    }

    .career-list .career-item .name {
        font-size: 23px;
    }

    .content-block.career-title {
        padding: 137px 60px 40px;
    }

    .content-block.career-detail {
        padding: 40px 60px;
    }

    .content-block.career-detail h3 {
        font-size: 30px;
        margin: 0 0 20px;
    }

    .content-block.career-detail .perks {
        margin-bottom: 30px;
    }

    .content-block.career-detail .info {
        font-size: 16px;
    }

    .content-block.career-detail h5 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .content-block.career-detail .info p {
        margin-bottom: 30px;
    }

    .content-block.career-detail .info ul {
        margin-bottom: 30px;
    }

    .content-block.career-form {
        padding: 40px 60px;
    }

    .content-block.career-form h2 {
        text-align: center;
        margin-bottom: 40px;
    }

    .fields-block {
        margin-bottom: 40px;
    }

    .fields-block h3 {
        font-size: 30px;
        text-align: center;
    }

    .field.line {
        flex-direction: column;
        align-items: flex-start;
    }

    .field.line .lbl {
        min-width: auto;
    }

    .policy {
        text-align: center;
    }

    .content-block.career-form .button {
        margin: 0 auto;
    }
}

@media (max-width: 767px){
    .headline {
        height: 58px;
        left: 17px;
        top: 17px;
        right: 17px;
        padding: 7px 20px 7px 20px;
        width: auto;
        max-width: none;
        transform: translateX(0);
    }

    .burger {
        width: 16px;
        height: 16px;
    }

    .burger div:before {
        top: -6px;
    }

    .burger div:after {
        top: 6px;
    }

    .burger div {
        width: 16px;
        top: 8px;
    }

    .openmenu .mobile-menu {
        padding: 20px;
    }

    .mobile-menu .close {
        right: 20px;
        top: 20px;
    }

    .headline .logo {
        margin-right: 20px;
        height: 24px;
    }

    .headline .logo img {
        height: 24px;
    }

    .headline .button {
        height: 43px;
        padding: 0 21px;
        font-size: 18px;
        white-space: nowrap;
    }

    .content-block {
        padding: 40px 20px;
    }

    .content-block.hero {
        padding: 105px 20px 70px;
    }

    .content-block.hero .info {
        text-align: left;
    }

    .content-block.hero .button {
        width: 100%;
    }

    .content-block.hero .hero-img {
        display: none;
    }

    h1, .h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .content-block.hero .info .text {
        margin-bottom: 30px;
    }

    .content-block.promos h4 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .promos-list .promo-item {
        margin-bottom: 6px;
    }

    .content-block.marketing h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .content-block.marketing .info {
        font-size: 22px;
        margin-bottom: 0;
    }

    .marketing-list-item > a {
        font-size: 20px;
    }

    .marketing-list-item .text {
        margin-top: 25px;
    }

    .content-block h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .studies-list-item {
        font-size: 16px;
        min-height: 395px;
    }

    .content-block.infoimg h2 {
        margin-bottom: 30px;
    }

    .content-block.infoimg .content-block-wrap {
        width: 100vw;
        margin-left: -20px;
        padding: 25px 20px 0;
        background: rgba(249, 248, 253, 1);
    }

    .content-block.infoimg .info h2 {
        font-size: 24px;
    }

    .content-block.infoimg .image {
        width: calc(100vw - 20px);
        margin-left: -10px;
        height: auto;
        font-size: 0;
    }

    .content-block.infoimg .image video {
        width: 100%;
        position: relative;
        top: 1px;
    }

    .content-block.infoimg.gray .image {
        width: calc(100vw - 20px);
        margin-left: -10px;
        height: auto;
        font-size: 0;
    }

    .content-block.infoimg.gray .image video {
        width: calc(100% + 1px);
    }

    .content-block.infoimg .info {
        margin-bottom: 10px;
    }

    .content-block.devices .info {
        font-size: 16px;
    }

    .content-block.videoblock .info h4 {
        font-size: 20px;
    }

    .content-block.videoblock .info .text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .content-block.faqblock h2 {
        margin-bottom: 30px;
    }

    .faq-list .faq-item .name {
        font-size: 16px;
    }

    .faq-list .faq-item .txt {
        font-size: 16px;
    }

    .faq-list .faq-item .faq-toggle {
        top: -1px;
    }

    .reviewblock .review .txt {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .reviewblock .review {
        background-size: 35px auto;
        padding-top: 56px;
    }

    .reviewblock .review .client .ava {
        width: 80px;
        height: 80px;
    }

    .reviewblock .review .client .ava img {
        width: 100%;
    }

    .reviewblock .review .client .name {
        font-size: 16px;
    }

    .reviewblock .review .client {
        margin-bottom: 30px;
    }

    .reviewblock .review .button {
        width: 186px;
    }

    .fmenu {
        flex-direction: column;
        justify-content: center;
    }

    .footer .footer-line {
        width: 100%;
        align-items: center;
    }

    .footer {
        align-items: center;
    }

    .content-block.case-block1 {
        padding: 105px 20px 35px;
    }

    .content-block .case-img {
        max-width: 100%;
    }

    .content-block .case-img img {
        max-width: 100%;
    }

    .content-block.case-block1 h1 {
        margin-bottom: 30px;
    }

    .content-block.case-block2 h5 {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .content-block.case-block2 .info {
        font-size: 16px;
    }

    .content-block.case-block2 .info p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .content-block.case-block2 .info ul {
        margin-bottom: 30px;
    }

    .content-block.case-block2 .info ul li {
        font-size: 16px;
        
    }

    .content-block.case-block2 .info .info-img {
        margin-bottom: 30px;
        width: calc(100vw - 10px);
        margin-left: -15px;
    }

    .content-block.contact-tabs-block {
        padding: 115px 20px 20px;
    }

    .content-block.contact-tabs-block h2 {
        margin-bottom: 30px;
    }

    .contact-tabs {
        flex-direction: column;
        
    }

    .contact-tabs .contact-tab {
        width: 100%;
        max-width: 340px;
        height: 172px;
    }

    .contact-tabs .contact-tab .name {
        font-size: 24px;
    }

    .content-block.brand-form, .content-block.partner-form {
        padding: 40px 20px;
    }

    .content-block.thank-you {
        padding: 138px 20px 40px;
    }

    .content-block.thank-you h2 {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .content-block.career-list-block {
        padding: 116px 20px 40px;
        
    }

    .content-block.career-list-block h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .career-list h3 {
        text-align: center;
        font-size: 24px;
        padding: 0 0 20px;
    }

    .career-list .career-item {
        padding: 30px 0;
    }

    .career-list .career-item:before {
        display: none;
    }

    .career-list .career-item .name {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .perks {
        flex-wrap: wrap;
    }

    .content-block.career-title {
        padding: 116px 20px 40px;
    }

    .content-block.career-detail {
        padding: 40px 20px;
    }

    .content-block.career-form {
        padding: 40px 20px;
    }

    .content-block.career-detail h3 {
        font-size: 24px;
    }

    .fields-block h3 {
        font-size: 24px;
    }

    .content-block.career-form .button {
        max-width: 380px;
    }

    .marketing-list-item.act .img-mob {
        max-height: 304px;
        margin-top: 25px;
    }
}
