* {
    outline: none !important;
}

a {
    outline: none !important;
    text-decoration: none !important;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease;
    transition: color 0.3s ease, border-color 0.3s ease;
    color: #231B19;
}
a:hover {
    text-decoration: none !important;
    color: #231B19;
}

img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

/* helpers */
.text-nowrap {
    white-space: nowrap !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-primary {
    color: #9F33FF !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-medium {
    font-weight: 500 !important;
}

.text-helper {
    font-size: 80%;
    font-weight: 500;
    color: rgba(35, 31, 37, 0.5);
    margin-top: 12px !important;
}

.mt0 {
    margin-top: 0 !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.fade:not(.show) {
    opacity: 0;
}

.hidden {
    display: none !important;
}

@media screen and (min-width: 768px) {
    .visible_mobile {
        display: none !important;
    }

    .order-md-none {
        order: initial;
    }
}
@media screen and (min-width: 992px) {
    .visible_tablet {
        display: none !important;
    }

    .order-lg-none {
        order: initial;
    }
}
@media screen and (max-width: 991px) {
    .hidden_tablet {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .hidden_mobile {
        display: none !important;
    }
}
/* typography */
h1 {
    font-weight: 800;
    font-size: 40px;
    line-height: 130%;
    margin: 0;
}
@media screen and (max-width: 991px) {
    h1 {
        font-size: 32px;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 22px;
    }
}

h2, .h2 {
    font-weight: 800;
    font-size: 32px;
    line-height: 130%;
    margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
    h2, .h2 {
        font-size: 18px;
    }
}

h3 {
    font-weight: bold;
    font-size: 28px;
    line-height: 130%;
    margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
    h3 {
        font-size: 17px;
    }
}

h4 {
    font-weight: bold;
    font-size: 24px;
    line-height: 130%;
    margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
    h4 {
        font-size: 16px;
    }
}

h5 {
    font-weight: bold;
    font-size: 24px;
    line-height: 130%;
    margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
    h5 {
        font-size: 15px;
    }
}

h6, .h6 {
    font-weight: bold;
    font-size: 17px;
    line-height: 130%;
    margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
    h6, .h6 {
        font-size: 14px;
    }
}

.content-styles {
    font-size: 16px;
    line-height: 170%;
    color: rgba(35, 31, 37, 0.8);
}
.content-styles h1,
.content-styles h2,
.content-styles .h2,
.content-styles h3,
.content-styles h4,
.content-styles h5,
.content-styles h6 {
    color: #231F25;
}
.content-styles p {
    margin: 0;
}
.content-styles p + p {
    margin-top: 24px;
}
.content-styles *:not(p) + p {
    margin-top: 24px;
}
.content-styles ul:not([class]) {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.content-styles ul:not([class]) > li {
    padding-left: 40px;
    position: relative;
}
.content-styles ul:not([class]) > li:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #9F33FF;
    border-radius: 50%;
    top: 0.8em;
    transform: translate(0, -50%);
    left: 8px;
    box-shadow: 0px 2px 16px rgba(159, 51, 255, 0.4);
}
.content-styles ul:not([class]) > li:not(:last-child) {
    margin-bottom: 24px;
}
.content-styles * + ul:not([class]),
.content-styles * + ol:not([class]) {
    margin-top: 32px;
}
.content-styles p + ul:not([class]),
.content-styles p + ol:not([class]) {
    margin-top: 22px;
}
.content-styles ol:not([class]) {
    padding: 0;
    margin: 0;
    list-style-type: none;
    counter-reset: ol-item;
}
.content-styles ol:not([class]) > li {
    padding-left: 40px;
    position: relative;
}
.content-styles ol:not([class]) > li:before {
    content: counter(ol-item);
    counter-increment: ol-item;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid #EDF1F5;
    border-radius: 50%;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #9F33FF;
}
.content-styles ol:not([class]) > li:not(:last-child) {
    margin-bottom: 16px;
}
.content-styles img:not([class]) {
    border-radius: 6px;
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FAFAFA;
}
.content-styles *:not(source) + img:not([class]) {
    margin-top: 32px;
}
.content-styles * + h2, .content-styles * + .h2 {
    margin-top: 48px;
}
.content-styles * + h3,
.content-styles * + h4 {
    margin-top: 32px;
}
.content-styles * + h5,
.content-styles * + h6 {
    margin-top: 24px;
}
.content-styles h2 + h3,
.content-styles h2 + h4,
.content-styles h2 + h5,
.content-styles h2 + h6,
.content-styles .h2 + h3,
.content-styles .h2 + h4,
.content-styles .h2 + h5,
.content-styles .h2 + h6 {
    margin-top: 24px;
}
.content-styles * + blockquote,
.content-styles * + pre {
    margin-top: 24px;
}
.content-styles_xl {
    font-size: 24px;
    line-height: 170%;
    color: rgba(35, 31, 37, 0.8);
}
@media screen and (max-width: 767px) {
    .content-styles {
        font-size: 14px;
        line-height: 150%;
    }
    .content-styles p + p {
        margin-top: 16px;
    }
}
@media screen and (min-width: 768px) {
    .content-styles * + h2 {
        margin-top: 60px;
    }
    .content-styles * + h3,
    .content-styles * + h4 {
        margin-top: 48px;
    }
    .content-styles * + h5,
    .content-styles * + h6 {
        margin-top: 32px;
    }
    .content-styles_lg {
        font-size: 18px;
        line-height: 170%;
        color: rgba(35, 31, 37, 0.8);
    }
    .content-styles_lg p {
        margin: 0;
    }
    .content-styles_lg p + p {
        margin-top: 24px;
    }
}

blockquote {
    font-weight: normal;
    font-size: 18px;
    line-height: 170%;
    text-align: center;
    color: rgba(35, 31, 37, 0.8);
    max-width: 900px;
    margin: 0 auto;
    display: block;
    padding: 56px 0;
    position: relative;
}
blockquote:not(.blockquote):before, blockquote:not(.blockquote):after {
    content: "\e90a";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    font-family: "cls-icons";
    font-size: 24px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    color: #9F33FF;
}
blockquote:not(.blockquote):before {
    top: 0;
}
blockquote:not(.blockquote):after {
    bottom: 0;
    transform: translate(-50%, 0) rotate(-180deg);
}
blockquote.blockquote {
    background: rgba(159, 51, 255, 0.05);
    box-shadow: inset 4px 0px 0px #9F33FF;
    border-radius: 6px;
    padding: 16px 40px;
    font-weight: normal;
    font-size: 13px;
    line-height: 170%;
    color: #231F25;
    text-align: left;
}
@media screen and (max-width: 767px) {
    blockquote {
        font-size: 13px;
        line-height: 150%;
        color: #231F25;
    }
}

.video-block {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video-block video,
.video-block iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-block_vertical {
    padding-bottom: 177.77%
}

pre {
    background: #efefef;
    padding: 16px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #000;
}

.btn {
    border: none;
    text-decoration: none !important;
    padding: 0 24px;
    line-height: 40px;
    height: 40px;
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background: none;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    z-index: 1;
    border-radius: 0;
    box-shadow: none;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.btn_primary {
    background: #9F33FF;
    color: #fff;
}
.btn_primary:hover {
    background: #8837D0;
    color: #fff;
}
.btn_white {
    color: #231F25;
    background: #FFFFFF;
    box-shadow: 18px 18px 20px #EAECF0, -18px -18px 20px #FFFFFF;
    border-radius: 6px;
}
.btn_white:hover {
    color: #9F33FF;
}
.btn_disabled, .btn[disabled] {
    cursor: not-allowed !important;
}
.btn_block {
    display: flex;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}
.btn_sm {
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
}
.btn_wide {
    padding-left: 40px;
    padding-right: 40px;
}
.btn_icon_arrow_right:after {
    content: "\e900";
    position: relative;
    font-family: "cls-icons";
    font-size: 12px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
@media screen and (max-width: 991px) {
    .btn_block_tablet {
        display: flex;
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media screen and (max-width: 767px) {
    .btn {
        font-size: 10px;
    }
}
@media (hover: hover) {
    .btn_icon_arrow_right:hover:after {
        transform: translate(5px, 0);
    }
}

.nav-tabs {
    margin-bottom: 48px;
}
.nav-tabs .swiper-slide {
    width: auto;
}
.nav-tabs .swiper-slide:not(:last-child) {
    margin-right: 8px;
}
.nav-tabs .swiper-button-prev, .nav-tabs .swiper-button-next {
    width: 80px;
    border-radius: 0;
    box-shadow: none;
    color: #9F33FF;
    pointer-events: none;
}
.nav-tabs .swiper-button-prev:before, .nav-tabs .swiper-button-next:before {
    width: 40px;
    height: 40px;
    transform: none;
    top: 0;
    pointer-events: auto;
    line-height: 40px;
    text-align: center;
}
.nav-tabs .swiper-button-prev:hover, .nav-tabs .swiper-button-next:hover {
    color: #9F33FF;
}
.nav-tabs .swiper-button-prev {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF 51.04%, rgba(255, 255, 255, 0) 100%) !important;
}
.nav-tabs .swiper-button-prev:before {
    transform: rotate(-180deg);
    left: 0;
}
.nav-tabs .swiper-button-next {
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 51.04%, rgba(255, 255, 255, 0) 100%) !important;
}
.nav-tabs .swiper-button-next:before {
    right: 0;
}
.nav-tabs__link {
    font-weight: bold;
    font-size: 16px;
    color: #231F25;
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    border-radius: 6px;
    background: #F6F7F9;
    display: flex;
    white-space: nowrap;
}
.nav-tabs__link:hover {
    color: #9F33FF;
}
.nav-tabs__link_active, .nav-tabs__link_active:hover {
    background: #9F33FF;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .nav-tabs .swiper-container {
        overflow: visible;
    }
    .nav-tabs .swiper-button-prev {
        left: -15px;
    }
    .nav-tabs .swiper-button-next {
        right: -15px;
    }
    .nav-tabs__link {
        font-size: 13px;
        height: 37px;
        line-height: 37px;
    }
}

.tab-content {
    margin-top: 30px;
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content .active {
    display: block;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}
.modal-open {
    overflow: hidden;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: scroll;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 15px;
    max-width: 100%;
}
.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (15px * 2));
}
.modal-dialog-centered:before {
    display: block;
    height: calc(100vh - (15px * 2));
    content: "";
}
.modal-dialog-scrollable {
    height: calc(100% - 30px);
}
.modal-dialog-scrollable .modal-scrollbar {
    flex: 1 1 auto;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: #FFF;
    background-clip: padding-box;
    outline: 0;
    padding: 32px;
    height: 100%;
}
.modal-title {
    margin: 0 0 32px;
    padding-right: 52px;
}
.modal-title_sm {
    font-size: 20px;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}
.modal-close {
    position: absolute;
    top: 40px;
    right: 32px;
    width: 20px;
    height: 20px;
    z-index: 200;
    cursor: pointer;
    transition: color 0.3s ease;
}
.modal-close:before {
    content: "\e90d";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    font-family: "cls-icons";
    font-size: 20px;
    font-weight: normal;
    line-height: 1;
    transition: color 0.3s ease;
}
.modal-close:hover {
    color: #9F33FF;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
@media screen and (min-width: 768px) {
    .modal .modal-dialog {
        max-width: 956px;
        margin: 15px auto;
    }
    .modal .modal-dialog_sm {
        max-width: 340px;
    }
}

.scrollbar-container {
    flex: 1 1 auto;
    overflow: hidden;
}
.scrollbar-container .swiper-container {
    height: 100%;
    width: 100%;
    padding-right: 40px;
}
.scrollbar-container .swiper-wrapper {
    height: auto;
}
.scrollbar-container .swiper-slide {
    height: auto;
}

.section {
    position: relative;
}
.section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.section__bg-img {
    object-fit: cover;
    object-position: 80% 50%;
    width: 100%;
    height: 100%;
}
.section__bg_fill_width .section__bg-img {
    object-fit: contain;
    object-position: center bottom;
}
.section__bg_cover {
    background-position: 80% center;
}
.section__bg_gradient:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -moz-linear-gradient(left,  rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.95) 20%, rgba(255,255,255,0.45) 100%);
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0.95) 0%,rgba(255,255,255,0.95) 20%,rgba(255,255,255,0.45) 100%);
    background: linear-gradient(to right,  rgba(255,255,255,0.95) 0%,rgba(255,255,255,0.95) 20%,rgba(255,255,255,0.45) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2ffffff', endColorstr='#73ffffff',GradientType=1 );
    z-index: 1;
}
.section__video {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translate(0, -50%);
    height: calc(100% + 2px);
    width: calc(177.77777778vh + 2px);
    min-width: calc(100% + 30px);
    min-height: calc(56.25vw + 30px);
}
.section__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.section__content {
    position: relative;
    z-index: 3;
    padding: 60px 0 28px;
}
.section__content_pb_lg {
    padding-bottom: 76px !important;
}
.section__header {
    margin-bottom: 50px;
}
.section__title {
    padding-top: 32px;
    position: relative;
    margin: 0;
}
.section__title:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background: #9F33FF;
    top: 0;
    left: 0;
}
.section__title_green:before {
    background: #4AF6CD;
}
.section__title_center {
    text-align: center;
}
.section__title_center:before {
    left: 50%;
    transform: translate(-50%, 0);
}
.section__title_md {
    padding-top: 24px;
}
.section__title_simple {
    padding: 0 !important;
}
.section__title_simple:before {
    content: none;
    display: none;
}
.section__group + .section__group {
    margin-top: 40px;
}
.section__group + .section__group.section__group_mt_lg {
    margin-top: 80px;
}
.section__group .section__title {
    margin-bottom: 32px;
}
.section__wrapper {
    counter-reset: sectionIndex;
}
.section__wrapper .section_numbered {
    padding-top: 40px;
    padding-bottom: 0;
    counter-increment: sectionIndex;
}
.section__wrapper .section_numbered .section__content {
    padding-top: 64px;
    padding-bottom: 32px;
}
.section__wrapper .section_numbered .section__content-inner {
    position: relative;
}
.section__wrapper .section_numbered .section__content-inner:before {
    content: counter(sectionIndex);
    background: #FFFFFF;
    border: 1px solid #EDF1F5;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-weight: bold;
    font-size: 28px;
    line-height: 80px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9F33FF;
    display: block;
    z-index: 4;
    margin-bottom: 24px;
    margin-top: -104px;
}
.section_bg {
    padding: 32px;
}
.section_bg .section__content {
    background: #F9FBFF;
    padding: 60px 0 28px;
}
.section_form .section__content {
    padding: 48px 0 80px;
}
.section_cover .section__content {
    display: table;
    width: 100%;
    /*height: 544px;*/
    height: 360px;
    padding: 0;
}
.section_cover .section__content-inner {
    display: table-cell;
    width: 100%;
    height: 100%;
    padding: 68px 0 32px;
}
.section_cover .section__content-inner_middle {
    vertical-align: middle;
}
.section_cover_small .section__bg {
    background-position: center bottom;
}
.section_cover_small .section__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    z-index: 2;
}
.section_cover_small .section__bg-img {
    object-position: center bottom;
}
.section_cover_small .section__content {
    padding: 70px 0;
}
.section_cover_article .section__bg-img {
    object-position: center center;
}
.section_cover_article .section__content {
    padding: 80px 0;
}
.section_steps .section__bg {
    background-color: #F9FBFF;
}
.section_steps .section__bg-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 60.98%;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section_steps .section__bg-img {
    object-position: center center;
}
.section_steps .section__content {
    padding: 60px 0;
}
.section_counters {
    background-color: #ebf0ef;
    border-radius: 6px;
}
.section_counters .section__bg {
    background-position: 90% center;
    border-radius: 6px;
    overflow: hidden;
}
.section_counters .section__bg-img {
    object-position: 90% center;
}
.section_counters .section__content {
    padding: 70px 0;
}
.section_conclusion .section__bg {
    background-position: 90% center;
    border-radius: 6px;
    overflow: hidden;
}
.section_conclusion .section__bg-img {
    object-position: 90% center;
}
.section_conclusion .section__content {
    padding: 80px 0;
}
.section_mt {
    margin-top: 80px;
}
.section_mt_md {
    margin-top: 60px;
}
.section_mt_sm {
    margin-top: 40px;
}
.section_inverse .section__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}
.section_inverse .breadcrumbs__link {
    color: rgba(255, 255, 255, 0.5);
}
.section_inverse .breadcrumbs__link:hover {
    color: #fff;
}
.section_inverse .page-cover__title {
    color: #fff;
}
.section_inverse .tags-list__item {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
@media screen and (max-width: 1199px) {
    .section_bg {
        padding-left: 0;
        padding-right: 0;
    }
}
@media screen and (max-width: 991px) {
    .section__group_img_md_mb img,
    .section__group_img_md_mb .video-block {
        margin-bottom: 24px;
    }
    .section_conclusion .section__bg {
        opacity: 0.4;
    }
}
@media screen and (max-width: 767px) {
    .section + .section {
        margin-top: 40px;
    }
    .section__content {
        padding: 0;
    }
    .section__content_pb_lg {
        padding-bottom: 40px !important;
    }
    .section__header {
        margin-bottom: 24px;
    }
    .section__title {
        padding-top: 16px;
    }
    .section__title:before {
        width: 60px;
    }
    .section__title_center_mobile {
        text-align: center;
    }
    .section__title_center_mobile:before {
        left: 50%;
        transform: translate(-50%, 0);
    }
    .section__group + .section__group {
        margin-top: 24px;
    }
    .section__group + .section__group.section__group_mt_lg {
        margin-top: 40px;
    }
    .section__group .section__title {
        margin-bottom: 16px;
    }
    .section__wrapper .section_numbered {
        padding-top: 20px;
        margin-top: 16px;
    }
    .section__wrapper .section_numbered .section__content-inner:before {
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
        margin-top: -84px;
    }
    .section__wrapper .section_numbered h4 {
        font-size: 14px;
    }
    .section_bg {
        padding: 0;
    }
    .section_bg .section__content {
        padding-top: 40px;
        padding-bottom: 24px;
    }
    .section_form .section__content {
        padding: 0 0 40px;
    }
    .section_cover {
        background: #F5F5F5;
    }
    .section_cover .section__bg {
        height: 135px;
        bottom: auto;
    }
    .section_cover .section__bg:not(.section__bg_gradient):before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 32px;
        background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, #F5F5F5 100%);
        z-index: 1;
    }
    .section_cover .section__content {
        display: block;
        height: auto;
    }
    .section_cover .section__content-inner {
        display: block;
        padding: 0 0 24px;
    }
    .section_cover_small .section__bg:before {
        height: 32px;
    }
    .section_cover_small .section__content {
        display: block;
        height: auto;
        padding: 0;
    }
    .section_cover_small .section__content-inner {
        display: block;
        padding: 0;
    }
    .section_cover_article .section__content {
        padding: 0;
    }
    .section_cover_proportional .section__bg {
        height: 0;
        padding-bottom: 39.53%;
        width: 100%;
    }
    .section_cover_proportional .section__bg:not(.section__bg_gradient):before {
        height: 16px;
    }
    .section_cover_proportional .section__bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .section_cover_proportional .page-cover__title {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        padding: 15px 27% 30px 15px;
    }
    .section_cover_proportional .page-cover__title-wrapper {
        width: 100%;
        height: 0;
        padding: 0 0 43.42%;
    }
    .section_steps .section__bg-inner {
        width: auto;
        right: 0;
        top: auto;
        height: 360px;
    }
    .section_steps .section__content {
        padding: 40px 0;
    }
    .section_mt0_mob {
        margin-top: 0 !important;
    }
    .section_cover_detail {
        background: none;
    }
    .section_cover_detail .section__bg:not(.section__bg_gradient):before {
        content: none;
        display: none;
    }
    .section_cover_detail .section__content-inner {
        padding: 0;
    }
    .section_cover_detail .page-cover__title {
        font-size: 16px;
    }
    .section_cover_detail .page-cover__title-wrapper {
        margin: 0;
        min-height: 80px;
    }
    .section_counters .section__bg {
        left: 15px;
        right: 15px;
    }
    .section_counters .section__content {
        padding: 15px 0;
    }
    .section_conclusion .section__bg {
        left: 15px;
        right: 15px;
    }
    .section_conclusion .section__content {
        padding: 24px 15px;
    }
    .section_conclusion .section__content .content-styles {
        color: #231F25;
    }
    .section_mt {
        margin-top: 40px;
    }
    .section_mt_md {
        margin-top: 40px;
    }
}
@media screen and (min-width: 768px) {
    .section__content_overflow {
        overflow: hidden;
    }
    .section__title:after {
        content: attr(data-text);
        position: absolute;
        left: 104px;
        top: calc(50% + 16px);
        transform: translate(0, -50%);
        font-weight: 800;
        font-size: 80px;
        line-height: 175%;
        text-transform: uppercase;
        color: #231F25;
        opacity: 0.02;
        white-space: nowrap;
        pointer-events: none;
    }
    .section__title_center:after {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .section_lines .section__content {
        padding-bottom: 0;
    }
    .section_lines .section__content-inner:after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
        top: 0;
        bottom: 0;
        border-left: 1px solid rgba(35, 31, 37, 0.07);
        pointer-events: none;
    }
}
@media screen and (min-width: 992px) {
    .section_lines .section__content {
        padding-bottom: 0;
    }
    .section_lines .section__content:before {
        content: "";
        position: absolute;
        left: -16px;
        right: -16px;
        top: 0;
        bottom: 0;
        border-left: 1px solid rgba(35, 31, 37, 0.07);
        border-right: 1px solid rgba(35, 31, 37, 0.07);
        pointer-events: none;
    }
    .section_lines .section__content:after {
        content: "";
        position: absolute;
        left: calc(25% - 8px);
        right: calc(25% - 8px);
        top: 0;
        bottom: 0;
        border-left: 1px solid rgba(35, 31, 37, 0.07);
        border-right: 1px solid rgba(35, 31, 37, 0.07);
        pointer-events: none;
    }
}
@media screen and (min-width: 1200px) {
    .section_steps {
        padding: 0 32px 32px;
    }
    .section_steps .section__bg {
        left: 32px;
        right: 32px;
        bottom: 32px;
    }
}
@media screen and (min-width: 1440px) {
    .section_cover_proportional:not(.section_cover_proportional_only_mobile) {
        width: 100%;
        display: block;
        height: 0;
        padding-bottom: 39.53%;
        min-height: 320px;
    }
    .section_cover_proportional:not(.section_cover_proportional_only_mobile) .section__bg {
        position: absolute;
    }
}

.page-cover__title {
    margin: 0 0 8px;
}
.page-cover__text {
    font-weight: bold;
    font-size: 18px;
    line-height: 150%;
    color: rgba(35, 31, 37, 0.8);
}
.page-cover__list {
    display: flex;
    margin-top: 40px;
}
.page-cover__list-item {
    font-weight: normal;
    font-size: 15px;
    line-height: 150%;
    color: #231F25;
    position: relative;
    padding-top: 34px;
    margin-bottom: 24px;
}
.page-cover__list-item:before {
    content: "\e902";
    position: absolute;
    width: 24px;
    height: 24px;
    background: #9F33FF;
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FFFFFF;
    border-radius: 6px;
    top: 0;
    left: 16px;
    font-family: "cls-icons";
    font-size: 7px;
    line-height: 24px;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    color: #fff;
}
.page-cover__tags {
    margin-top: 24px;
}
@media screen and (max-width: 991px) {
    .page-cover__text {
        font-size: 17px;
    }
    .page-cover__list-item {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .page-cover__title {
        margin: 0;
    }
    .page-cover__title-wrapper {
        min-height: 135px;
        display: flex;
        align-items: center;
        margin-bottom: 16px;
        padding: 24px 75px 24px 0;
    }
    .page-cover__text {
        font-size: 14px;
    }
    .page-cover__list {
        margin-top: 16px;
    }
    .page-cover__list-item {
        font-size: 14px;
        padding-top: 0;
        padding-left: 40px;
        margin-bottom: 16px;
    }
    .page-cover__list-item:before {
        width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 5px;
        top: 2px;
    }
}

.tile-block__item {
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FAFAFA;
    border-radius: 6px;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 40px 24px 24px;
    background: #fff;
}
.tile-block__item_square {
    width: 100%;
    display: block;
}
.tile-block__item_inverse .tile-block__name, .tile-block__item_inverse .tile-block__text {
    color: #fff;
}
.tile-block__item_violet {
    background: #9F33FF;
}
.tile-block__item_middle {
    display: flex;
    align-items: center;
    padding-top: 24px;
}
.tile-block__item_left .tile-block__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(26, 22, 28, 0.5), rgba(26, 22, 28, 0.5));
}
.tile-block__item_left .tile-block__content {
    max-width: 45%;
}
.tile-block__item_custom_pt {
    padding-top: 220px;
}
.tile-block__item-wrapper {
    margin-bottom: 32px;
}
.tile-block__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.tile-block__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.tile-block__content {
    position: relative;
    z-index: 3;
}
.tile-block__img {
    display: block;
    max-width: 100%;
    margin: 0 auto 40px;
}
.tile-block__name {
    font-weight: bold;
    font-size: 17px;
    line-height: 130%;
    color: #231F25;
}
.tile-block__name + .tile-block__text {
    margin-top: 8px;
}
.tile-block__text {
    font-weight: normal;
    font-size: 15px;
    line-height: 150%;
    color: #231F25;
}
@media screen and (max-width: 991px) {
    .tile-block__item_tall {
        min-height: 740px;
    }
}
@media screen and (max-width: 767px) {
    .tile-block__item:not(.tile-block__item_custom_pt) {
        padding-top: 24px;
    }
    .tile-block__item_left .tile-block__content {
        max-width: 100%;
    }
    .tile-block__item-wrapper {
        margin-bottom: 16px;
    }
}

.services-block__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FAFAFA;
    border-radius: 6px;
    transition: background 0.5s ease;
    position: relative;
    overflow: hidden;
}
.services-block__item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #8837D0 0%, rgba(136, 55, 208, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}
.services-block__item:after {
    content: "";
    position: absolute;
    top: 60%;
    left: 60%;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #17d7a9 0%, rgba(23, 215, 169, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}
.services-block__item-wrapper {
    margin-bottom: 32px;
}
.services-block__bg {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/bg/bg-services-item.jpg");
    opacity: 0;
    transition: opacity 0.5s ease;
}
.services-block__desc {
    flex: 1 1 auto;
    position: relative;
    z-index: 5;
}
.services-block__icon {
    margin-bottom: 16px;
    transition: filter 0.5s ease;
}
.services-block__name {
    font-weight: bold;
    font-size: 13px;
    line-height: 130%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #231F25;
    margin-bottom: 8px;
    transition: color 0.5s ease;
}
.services-block__text {
    font-weight: normal;
    font-size: 13px;
    line-height: 162%;
    color: #231F25;
    transition: color 0.5s ease;
}
.services-block__more {
    flex: 0 0 auto;
    margin-top: 16px;
    font-weight: bold;
    font-size: 12px;
    line-height: 175%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9F33FF;
    display: inline-flex;
    position: relative;
    z-index: 5;
    align-items: center;
    align-self: flex-start;
    justify-content: space-between;
    min-width: 0;
    transition: color 0.5s ease, min-width 0.5s ease;
}
.services-block__more:after {
    content: "\e900";
    font-family: "cls-icons";
    position: relative;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    font-size: 12px;
    margin-left: 10px;
}
@media screen and (max-width: 767px) {
    .services-block__item-wrapper {
        margin-bottom: 16px;
    }
}
@media screen and (min-width: 768px) {
    .services-block__item {
        min-height: 352px;
    }
}
@media (hover: hover) {
    .services-block__item:hover {
        background: #8837D0;
    }
    .services-block__item:hover:before, .services-block__item:hover:after {
        opacity: 1;
    }
    .services-block__item:hover .services-block__bg {
        opacity: 0.5;
    }
    .services-block__item:hover .services-block__icon {
        filter: brightness(0) invert(1);
    }
    .services-block__item:hover .services-block__name, .services-block__item:hover .services-block__text {
        color: #fff;
    }
    .services-block__item:hover .services-block__more {
        color: #fff;
        min-width: 100%;
    }
    .services-block__item:hover .tags-list__item {
        background: rgba(255, 255, 255, 0.07);
        color: rgba(255, 255, 255, 0.5);
    }
    .services-block .tags-list__item:hover {
        color: #9F33FF;
        background: #fff;
    }
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
}
.tags-list__item {
    font-weight: 500;
    font-size: 11px;
    line-height: 130%;
    color: rgba(35, 31, 37, 0.5);
    padding: 4px 8px;
    background: rgba(35, 31, 37, 0.07);
    border-radius: 6px;
    margin-bottom: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}
.tags-list__item:not(:last-child) {
    margin-right: 8px;
}
.tags-list__item:hover {
    background: #9F33FF;
    color: #fff;
}

.feature-block__inner {
    margin-bottom: 32px;
}
.feature-block__cover {
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    min-height: 370px;
    position: relative;
    overflow: hidden;
}
.feature-block__cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.feature-block__list {
    background: #FFFFFF;
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FAFAFA;
    border-radius: 6px;
    padding: 135px 32px;
}
.feature-block__list-inner {
    max-width: 363px;
    margin: 0 auto;
}
.feature-block__item {
    display: flex;
    align-items: center;
}
.feature-block__item:not(:last-child) {
    margin-bottom: 40px;
}
.feature-block__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    margin-right: 47px;
    align-self: flex-start;
}
.feature-block__name {
    font-weight: bold;
    font-size: 17px;
    line-height: 130%;
    color: #231F25;
}
.feature-block__text {
    font-weight: normal;
    font-size: 15px;
    line-height: 150%;
    color: #231F25;
    margin-top: 8px;
}
@media screen and (max-width: 991px) {
    .feature-block__list {
        padding: 32px;
    }
    .feature-block__icon {
        margin-right: 24px;
    }
    .feature-block__name {
        font-size: 16px;
    }
    .feature-block__text {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .feature-block__inner {
        margin-bottom: 16px;
    }
    .feature-block__cover-wrapper {
        margin-bottom: 16px;
    }
    .feature-block__list {
        padding: 24px 15px;
    }
    .feature-block__item:not(:last-child) {
        margin-bottom: 24px;
    }
    .feature-block__icon {
        margin-right: 15px;
    }
    .feature-block__name {
        font-size: 13px;
    }
    .feature-block__text {
        font-size: 13px;
    }
}

.cases-block {
    margin-bottom: 24px;
}
.cases-block__wrapper {
    max-width: 892px;
    margin: 0 auto;
}
.cases-block__wrapper_full {
    max-width: 100%;
}
.cases-block__item {
    background: #FFFFFF;
    box-shadow: 18px 18px 20px #EAECF0, -18px -18px 20px #FFFFFF;
    border-radius: 6px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 16px 32px 32px calc(63.68% + 48px);
    margin-bottom: 32px;
    flex-direction: column;
}
.cases-block__item_hidden {
    display: none;
}
.cases-block__item:nth-child(2n+2) {
    padding-left: 32px;
    padding-right: calc(63.68% + 48px);
}
.cases-block__item:nth-child(2n+2) .cases-block__img-wrapper {
    left: auto;
    right: 16px;
}
.cases-block__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.cases-block__img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}
.cases-block__img-wrapper {
    width: 63.68%;
    position: absolute;
    top: 16px;
    left: 16px;
    bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 32px 0;
}
.cases-block__img-inner {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}
.cases-block__prop-list {
    position: relative;
    z-index: 3;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    padding: 0 16px;
}
.cases-block__prop-list_alone {
    margin: 0 -20px;
}
.cases-block__prop-list_alone .cases-block__prop-item {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 280px;
}
.cases-block__prop-list_alone .cases-block__prop-name {
    color: #231F25;
}
.cases-block__prop-list_alone .cases-block__prop-text {
    font-size: 18px;
    color: rgba(35, 31, 37, 0.8);
}
.cases-block__prop-item {
    text-align: center;
    padding: 18px 16px 0;
    position: relative;
}
.cases-block__prop-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4AF6CD;
    box-shadow: 0 2px 16px rgba(74, 246, 205, 0.396031);
}
.cases-block__prop-name {
    font-weight: bold;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
}
.cases-block__prop-name + .cases-block__prop-text {
    margin-top: 10px;
}
.cases-block__prop-text {
    font-weight: normal;
    font-size: 11px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;
}
.cases-block__logo {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.5;
}
.cases-block__logo-wrapper {
    display: flex;
    width: 173px;
    height: 60px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
    flex: 0 0 auto;
}
.cases-block__name {
    font-weight: bold;
    font-size: 17px;
    line-height: 130%;
    color: #231F25;
    margin-bottom: 8px;
}
.cases-block__text {
    font-weight: normal;
    font-size: 13px;
    line-height: 170%;
    color: #231F25;
    margin-bottom: 16px;
}
.cases-block__more {
    margin-top: 30px;
    font-weight: bold;
    font-size: 12px;
    line-height: 175%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9F33FF;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.cases-block__more:after {
    content: "\e900";
    font-family: "cls-icons";
    font-size: 12px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.cases-block__more:hover {
    color: #9F33FF;
}
.cases-block__load-more {
    margin-top: -12px;
}
.cases-block_slider {
    position: relative;
}
.cases-block_slider .swiper-container {
    overflow: visible;
}
.cases-block_slider .swiper-slide {
    height: auto;
}
.cases-block_slider .swiper-button-prev, .cases-block_slider .swiper-button-next {
    margin-top: -16px;
}
.cases-block_slider .swiper-button-prev {
    left: -20px;
    box-shadow: 18px 18px 20px rgba(0, 0, 0, 0.3), -18px -18px 20px rgba(255, 255, 255, 0.15);
}
.cases-block_slider .swiper-button-next {
    right: -20px;
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px rgba(255, 255, 255, 0.15);
}
.cases-block_slider .cases-block__item {
    margin: 0;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .cases-block__item {
        border: 1px solid #E3E7EE;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cases-block__item:nth-child(n) {
        padding: 16px 16px 24px;
    }
    .cases-block__item:not(:last-child) {
        margin-bottom: 24px;
    }
    .cases-block__img-wrapper {
        position: relative;
        top: 0;
        left: 0;
        right: 0 !important;
        height: auto;
        width: 100%;
        padding: 40px 0;
        margin-bottom: 16px;
    }
    .cases-block__prop-list_alone {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cases-block__prop-list_alone .cases-block__prop-item {
        flex: 0 0 100%;
    }
    .cases-block__prop-list_alone .cases-block__prop-item:not(:last-child) {
        margin-bottom: 16px;
    }
    .cases-block__prop-list_alone .cases-block__prop-text {
        font-size: 11px;
        color: rgba(35, 31, 37, 0.8);
    }
    .cases-block__name {
        order: -1;
        margin-bottom: 16px;
        font-size: 14px;
    }
    .cases-block__text {
        order: -1;
    }
    .cases-block__more {
        margin-top: 16px;
        font-size: 10px;
    }
    .cases-block__load-more {
        margin-top: 0;
    }
    .cases-block_full .cases-block__name {
        margin-bottom: 8px;
    }
    .cases-block_slider .cases-block__img-wrapper {
        flex: 1 1 auto;
    }
}
@media screen and (max-width: 575px) {
    .cases-block__prop-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cases-block__prop-item {
        flex: 0 0 100%;
    }
    .cases-block__prop-item:not(:last-child) {
        margin-bottom: 16px;
    }
}
@media screen and (min-width: 768px) {
    .cases-block_full .cases-block__item {
        padding: 16px 16px 16px calc(50% + 16px);
        min-height: 400px;
    }
    .cases-block_full .cases-block__img-wrapper {
        left: 0 !important;
        width: calc(50% - 16px);
    }
    .cases-block_full .cases-block__logo-wrapper {
        margin-bottom: 40px;
    }
    .cases-block_full .cases-block__name {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .cases-block_full .cases-block__text {
        font-size: 18px;
        color: rgba(35, 31, 37, 0.8);
        margin-bottom: 16px;
    }
    .cases-block_full .cases-block__tags {
        flex: 1 1 auto;
    }
}
@media (hover: hover) {
    .cases-block__more:hover:after {
        transform: translate(5px, 0);
    }
}

.clients-block {
    margin-top: 60px;
}
.clients-block__title {
    margin-bottom: 22px;
}
.clients-block__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}
.clients-block__item {
    flex: 0 0 16.66666666%;
    max-width: 16.66666666%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    padding: 16px;
}
.clients-block__img {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.5;
    filter: grayscale(100);
}
@media screen and (max-width: 991px) {
    .clients-block__item {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media screen and (max-width: 767px) {
    .clients-block {
        margin-top: 38px;
    }
    .clients-block__title {
        margin-bottom: 12px;
    }
    .clients-block__list {
        margin: 0 -8px;
    }
    .clients-block__item {
        flex: 0 0 25%;
        max-width: 25%;
        margin-bottom: 0;
        padding: 4px 8px;
        height: 40px;
    }
}

.form-block {
    position: relative;
}
.form-block__title {
    margin: 0;
}
.form-block__text {
    font-weight: bold;
    font-size: 18px;
    line-height: 150%;
    color: rgba(35, 31, 37, 0.8);
    margin-top: 16px;
}
.form-block__inner {
    margin-top: 24px;
}
.form-block__content {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.form-block__content_hidden {
    opacity: 0;
    visibility: hidden;
}
.form-block__result {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.form-block__result-inner {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.form-block__result-title {
    text-align: center;
}
.form-block__result-title_sm {
    font-size: 20px;
}
.form-block__result_active {
    visibility: visible;
    opacity: 1;
}
@media screen and (max-width: 767px) {
    .form-block__text {
        font-size: 14px;
    }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
    .form-block__custom_min_height {
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}
.form-group_lg {
    margin-bottom: 32px;
}

.form-control {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 40px;
    border-bottom: 2px solid rgba(35, 31, 37, 0.1);
    display: block;
    width: 100%;
    background: none;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.3;
    color: rgba(35, 31, 37, 0.7);
    padding: 10px 0 8px;
    transition: border-color 0.2s ease;
}
.form-control:focus {
    border-color: rgba(35, 31, 37, 0.2);
}
.form-control:focus + .form-label_abs, .form-control.form-control_not_empty + .form-label_abs {
    opacity: 0;
    visibility: hidden;
}
.form-control_error {
    border-color: rgba(255, 0, 0, 0.2) !important;
    color: rgba(255, 0, 0, 0.7) !important;
}
.form-control_error + .form-label_abs {
    color: rgba(255, 0, 0, 0.7);
}
@media screen and (max-width: 767px) {
    .form-control {
        font-size: 13px;
    }
}

textarea.form-control {
    border: 2px solid rgba(35, 31, 37, 0.1);
    height: 120px;
    resize: none;
    padding: 8px 20px;
}

.form-control__wrapper {
    position: relative;
}
.form-control__wrapper_icon_user .form-control, .form-control__wrapper_icon_phone .form-control, .form-control__wrapper_icon_email .form-control, .form-control__wrapper_icon_comment .form-control {
    padding-left: 20px;
}
.form-control__wrapper_icon_user .form-label, .form-control__wrapper_icon_phone .form-label, .form-control__wrapper_icon_email .form-label, .form-control__wrapper_icon_comment .form-label {
    padding-left: 20px;
}
.form-control__wrapper_icon_user .form-label_abs, .form-control__wrapper_icon_phone .form-label_abs, .form-control__wrapper_icon_email .form-label_abs, .form-control__wrapper_icon_comment .form-label_abs {
    padding-left: 0;
    left: 20px;
}
.form-control__wrapper_icon_user:before, .form-control__wrapper_icon_phone:before, .form-control__wrapper_icon_email:before, .form-control__wrapper_icon_comment:before {
    position: absolute;
    left: 0;
    top: 15px;
    font-family: "cls-icons";
    font-size: 10px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    color: #9F33FF;
    pointer-events: none;
}
.form-control__wrapper_icon_user:before {
    content: "\e90b";
}
.form-control__wrapper_icon_phone:before {
    content: "\e909";
}
.form-control__wrapper_icon_email:before {
    content: "\e901";
}
.form-control__wrapper_icon_comment:before {
    content: "\e907";
}

.form-label {
    font-weight: normal;
    font-size: 15px;
    color: rgba(35, 31, 37, 0.7);
    margin: 0;
    line-height: 40px;
}
.form-label_abs {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    transition: opacity 0.1s ease, visibility 0.1s ease;
}
@media screen and (max-width: 767px) {
    .form-label {
        font-size: 13px;
    }
}

.form-error {
    position: absolute;
    top: 100%;
    margin-top: 8px;
    left: 0;
    right: 0;
    font-weight: normal;
    font-size: 11px;
    line-height: 1;
    color: rgba(35, 31, 37, 0.7);
}
@media screen and (max-width: 767px) {
    .form-error {
        margin-top: 4px;
    }
}

.checkbox-default, .radio-default {
    position: relative;
    padding-left: 16px;
}
.checkbox-default input, .radio-default input {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 16px;
    height: 16px;
    opacity: 0;
    z-index: 1;
}
.checkbox-default input:checked + label:after, .radio-default input:checked + label:after {
    opacity: 1;
}
.checkbox-default input.form-control_error + label:before, .radio-default input.form-control_error + label:before {
    border-color: rgba(255, 0, 0, 0.5) !important;
}
.checkbox-default label, .radio-default label {
    position: relative;
    padding-left: 10px;
    z-index: 5;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    font-size: 9px;
    line-height: 1.2;
    color: rgba(35, 31, 37, 0.5);
}
.checkbox-default label:before, .radio-default label:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(35, 31, 37, 0.1);
    left: -16px;
    top: -3px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.checkbox-default label:after, .radio-default label:after {
    content: "";
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s ease;
    left: -15px;
    top: 2px;
}
.checkbox-default label a:not([class]), .radio-default label a:not([class]) {
    color: rgba(35, 31, 37, 0.5);
    border-bottom: 1px solid rgba(35, 31, 37, 0.25);
}
.checkbox-default label a:not([class]):hover, .radio-default label a:not([class]):hover {
    border-color: transparent;
    color: #9F33FF;
}
.checkbox-default label:hover:before, .radio-default label:hover:before {
    border-color: rgba(35, 31, 37, 0.2);
}

.checkbox-default label:after {
    content: "\e903";
    font-family: "cls-icons";
    color: #000;
    font-weight: normal;
    font-style: normal;
    font-size: 8px;
    line-height: 1;
    left: -12px;
    top: 1px;
}

.checkbox-default_helper {
    padding-left: 0;
}
.checkbox-default_helper label {
    padding: 0;
    cursor: default;
}
.checkbox-default_helper label:before,
.checkbox-default_helper label:after {
    content: none;
    display: none;
}

.staff-block__item {
    text-align: center;
    padding: 24px 32px;
    background: #FFFFFF;
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FFFFFF;
    border-radius: 6px;
}
.staff-block__img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}
.staff-block__img-wrapper {
    width: 122px;
    height: 122px;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #EDF1F5;
    margin: 0 auto 24px;
}
.staff-block__name {
    font-weight: bold;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #231F25;
}
.staff-block__text {
    font-weight: 500;
    font-size: 11px;
    line-height: 150%;
    color: rgba(35, 31, 37, 0.5);
    margin-top: 5px;
}
@media screen and (max-width: 767px) {
    .staff-block__wrapper_form {
        position: absolute;
        top: 0;
        right: 0;
    }
    .staff-block__wrapper_form .staff-block__item {
        padding: 0;
        box-shadow: none;
    }
    .staff-block__wrapper_form .staff-block__img-wrapper {
        width: 92px;
        height: 92px;
        margin-bottom: 8px;
    }
    .staff-block__wrapper_form .staff-block__img {
        width: 80px;
        height: 80px;
    }
    .staff-block__wrapper_form .staff-block__name {
        letter-spacing: 0.05em;
    }
    .staff-block__wrapper_form .staff-block__text {
        font-size: 10px;
    }
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.breadcrumbs__item {
    position: relative;
}
.breadcrumbs__item:not(:last-child) {
    margin-right: 8px;
    padding-right: 12px;
}
.breadcrumbs__item:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 4px;
    height: 4px;
    background: #9F33FF;
    box-shadow: 0px 2px 16px rgba(159, 51, 255, 0.4);
    border-radius: 50%;
}
.breadcrumbs__link {
    font-weight: 500;
    font-size: 11px;
    line-height: 100%;
    color: rgba(35, 31, 37, 0.5);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.breadcrumbs__link:hover {
    color: #9F33FF;
    text-shadow: 0px 2px 16px rgba(159, 51, 255, 0.4);
}
@media screen and (max-width: 767px) {
    .breadcrumbs {
        display: none;
    }
}

.advantage-block__item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.advantage-block__item:after {
    content: "";
    position: relative;
    width: 80px;
    height: 45px;
    background: #9F33FF;
    margin-top: 40px;
}
.advantage-block__item-wrapper:nth-child(2) .advantage-block__item:after {
    height: 105px;
}
.advantage-block__item-wrapper:nth-child(3) .advantage-block__item:after {
    height: 168px;
}
.advantage-block__item-wrapper:nth-child(4) .advantage-block__item:after {
    height: 207px;
}
.advantage-block__icon {
    margin-bottom: 20px;
    height: 40px;
}
.advantage-block__name {
    font-weight: bold;
    font-size: 17px;
    line-height: 130%;
    color: #231F25;
}
.advantage-block__name + .advantage-block__text {
    margin-top: 8px;
}
.advantage-block__text {
    font-weight: normal;
    font-size: 15px;
    line-height: 150%;
    color: #231F25;
}
@media screen and (max-width: 991px) {
    .advantage-block__item {
        position: relative;
    }
    .advantage-block__item-wrapper:nth-child(1), .advantage-block__item-wrapper:nth-child(2) {
        margin-bottom: 32px;
    }
    .advantage-block__item-wrapper:nth-child(1) .advantage-block__item:before, .advantage-block__item-wrapper:nth-child(2) .advantage-block__item:before {
        content: "";
        position: absolute;
        left: -16px;
        right: -16px;
        bottom: 0;
        height: 1px;
        background: rgba(35, 31, 37, 0.07);
    }
}
@media screen and (max-width: 767px) {
    .advantage-block__item {
        justify-content: flex-start;
    }
    .advantage-block__item:after {
        width: 21.03%;
        margin-top: 16px;
    }
    .advantage-block__item-wrapper:nth-child(n) {
        margin-bottom: 24px;
    }
    .advantage-block__item-wrapper:nth-child(n) .advantage-block__item:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: rgba(35, 31, 37, 0.07);
    }
    .advantage-block__item-wrapper:nth-child(n) .advantage-block__item:after {
        height: 24px;
    }
    .advantage-block__item-wrapper:nth-child(2) .advantage-block__item:after {
        width: 47.24%;
    }
    .advantage-block__item-wrapper:nth-child(3) .advantage-block__item:after {
        width: 72.76%;
    }
    .advantage-block__item-wrapper:nth-child(4) .advantage-block__item:after {
        width: 100%;
    }
    .advantage-block__item-wrapper:last-child {
        margin-bottom: 0;
    }
    .advantage-block__icon {
        margin-bottom: 16px;
    }
    .advantage-block__name {
        font-size: 13px;
    }
    .advantage-block__text {
        font-size: 14px;
    }
}

.steps-block__title {
    font-weight: bold;
    font-size: 17px;
    line-height: 130%;
    color: #231F25;
    margin-bottom: 40px;
}
.steps-block__list {
    counter-reset: stepItem;
}
.steps-block__item {
    padding-left: 72px;
    position: relative;
}
.steps-block__item:before {
    content: counter(stepItem);
    counter-increment: stepItem;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    left: 0;
    top: -9px;
    font-weight: bold;
    font-size: 17px;
    line-height: 38px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9F33FF;
    border: 1px solid #EDF1F5;
}
.steps-block__item:not(:last-child) {
    margin-bottom: 40px;
}
.steps-block__item:not(:last-child):after {
    content: "";
    position: absolute;
    width: 1px;
    top: 30px;
    left: 20px;
    bottom: -33px;
    background: #EDF1F5;
}
.steps-block__name {
    font-weight: bold;
    font-size: 17px;
    line-height: 130%;
    color: #231F25;
}
.steps-block__name + .steps-block__text {
    margin-top: 5px;
}
.steps-block__text {
    font-weight: normal;
    font-size: 15px;
    line-height: 150%;
    color: rgba(35, 31, 37, 0.8);
}
@media screen and (max-width: 767px) {
    .steps-block__title {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .steps-block__item {
        padding-left: 62px;
    }
    .steps-block__item:before {
        width: 32px;
        height: 32px;
        line-height: 30px;
        font-size: 13px;
        top: -7px;
    }
    .steps-block__item:not(:last-child) {
        margin-bottom: 24px;
    }
    .steps-block__item:not(:last-child):after {
        left: 16px;
        top: 24px;
        bottom: -24px;
    }
    .steps-block__name {
        font-size: 14px;
    }
    .steps-block__text {
        font-size: 14px;
    }
}
@media screen and (min-width: 992px) {
    .steps-block_outside .steps-block__item {
        padding-left: 0;
    }
    .steps-block_outside .steps-block__item:before {
        left: -72px;
    }
    .steps-block_outside .steps-block__item:after {
        left: -52px;
    }
    .steps-block_mt_md {
        margin-top: 48px;
    }
}

.swiper-button-prev, .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FFFFFF;
    border-radius: 6px;
    color: #9F33FF;
    transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    margin: 0;
    transform: translate(0, -50%);
}
.swiper-button-prev:before, .swiper-button-next:before {
    content: "\e900";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "cls-icons";
    font-size: 12px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
}
.swiper-button-prev:after, .swiper-button-next:after {
    content: none;
    display: none;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    background: #9F33FF;
    color: #fff;
}
.swiper-button-prev:before {
    transform: translate(-50%, -50%) rotate(-180deg);
}
.swiper-button-disabled {
    opacity: 0 !important;
}
.swiper-scrollbar {
    background: rgba(35, 31, 37, 0.07);
    border-radius: 0;
}
.swiper-scrollbar-drag {
    border-radius: 0;
    background: #9F33FF;
}
.swiper-container-horizontal .swiper-scrollbar {
    left: 0;
    width: 100%;
    bottom: -20px;
    height: 4px;
}
.swiper-container-vertical .swiper-scrollbar {
    top: 0;
    height: 100%;
    width: 4px;
    background: #EFEEEF;
}
.swiper-container-vertical .swiper-scrollbar-drag {
    width: 8px;
    left: -2px;
}

.slider-centered {
    max-width: 584px;
    margin: 0 auto;
    position: relative;
}
.slider-centered .swiper-container {
    overflow: visible;
}
.slider-centered .swiper-slide {
    opacity: 0.3;
    transition: opacity 0.3s ease;
    height: auto;
}
.slider-centered .swiper-slide-active {
    opacity: 1;
}
.slider-centered .swiper-slide-active .slider-centered__more {
    opacity: 1;
    visibility: visible;
}
.slider-centered .swiper-button-prev {
    left: -72px;
}
.slider-centered .swiper-button-next {
    right: -72px;
}
.slider-centered__item {
    background: #FFFFFF;
    box-shadow: 18px 18px 20px #EAECF0, -18px -18px 20px #FFFFFF;
    border-radius: 6px;
    padding: 20px 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.slider-centered__more {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: background 0.3s ease, color 0.3s ease, opacity 0.8s ease, visibility 0.8s ease;
}
.slider-centered_mb_md {
    margin-bottom: 32px;
}
.slider-centered_full {
    max-width: 100%;
}
.slider-centered_full .swiper-container {
    overflow: hidden;
}
.slider-centered_full .swiper-button-prev {
    left: -20px;
}
.slider-centered_full .swiper-button-next {
    right: -20px;
}
.slider-centered_full .slider-centered__item {
    box-shadow: none;
    padding: 20px;
    background: none;
}
.slider-centered_full .slider-centered__img {
    box-shadow: 0 0 20px #EAECF0;
    border-radius: 6px;
}
@media screen and (max-width: 767px) {
    .slider-centered {
        max-width: 100%;
    }
    .slider-centered .swiper-button-prev {
        left: -15px;
    }
    .slider-centered .swiper-button-next {
        right: -15px;
    }
    .slider-centered_mb_md {
        margin-bottom: 16px;
    }
    .slider-centered_instagram {
        max-width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .slider-centered_mt_xl {
        margin-top: 60px;
    }
    .slider-centered_portfolio .slider-centered__item {
        padding: 30px;
    }
}

.slider-services {
    position: relative;
}
.slider-services .swiper-container {
    overflow: visible;
}
.slider-services .swiper-slide {
    height: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.slider-services .swiper-slide-active, .slider-services .swiper-slide-visible {
    opacity: 1;
}
.slider-services .swiper-slide:last-child {
    margin-right: 0 !important;
}
.slider-services .swiper-slide:first-child .slider-services__desc {
    background-image: url("../images/services-bg/001.jpg"), linear-gradient(116.57deg, #B24592 0%, #F15F79 83.33%);
}
.slider-services .swiper-slide:nth-child(2) .slider-services__desc {
    background-image: url("../images/services-bg/002.jpg"), linear-gradient(116.57deg, #F15F79 0%, #B24592 83.33%);
}
.slider-services .swiper-slide:nth-child(3) .slider-services__desc {
    background-image: url("../images/services-bg/003.jpg"), linear-gradient(116.57deg, #B24592 0%, #B54CBD 83.33%);
}
.slider-services .swiper-slide:nth-child(4) .slider-services__desc {
    background-image: url("../images/services-bg/004.jpg"), linear-gradient(134.72deg, #AE49B4 0%, #2B0096 101.5%);
}

.slider-services_green .swiper-slide:first-child .slider-services__desc {
    background-image: url("../images/services-bg/001.jpg"), linear-gradient(135deg, #00758F 0%, #4AF6CD 100%);
}
.slider-services_green .swiper-slide:nth-child(2) .slider-services__desc {
    background-image: url("../images/services-bg/002.jpg"), linear-gradient(135deg, #4AF6CD 0%, #8837D0 100%);
}
.slider-services_green .swiper-slide:nth-child(3) .slider-services__desc {
    background-image: url("../images/services-bg/003.jpg"), linear-gradient(135deg, #8837D0 0%, #2B0096 100%);
}

.slider-services .swiper-button-prev, .slider-services .swiper-button-next {
    box-shadow: 18px 18px 20px rgba(0, 0, 0, 0.05), -18px -18px 20px rgba(255, 255, 255, 0.3);
}
.slider-services__item {
    background: #FFFFFF;
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FFFFFF;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}
.slider-services__desc {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px 44px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1), 0px 0px 10px rgba(0, 0, 0, 0.1), 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-blend-mode: color-burn;
}
.slider-services__icon {
    max-width: 100%;
    max-height: 100%;
}
.slider-services__icon-wrapper {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-bottom: 30px;
}
.slider-services__name {
    font-weight: bold;
    font-size: 17px;
    line-height: 130%;
    color: #FFFFFF;
    flex: 1 1 auto;
}
.slider-services__text {
    font-weight: bold;
    font-size: 14px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    flex: 0 0 auto;
}
.slider-services__btn {
    flex: 0 0 auto;
    display: flex;
    height: 70px;
    font-weight: bold;
    font-size: 12px;
    line-height: 175%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #231F25;
    justify-content: center;
    align-items: center;
    position: relative;
}
.slider-services__btn:after {
    content: "\e900";
    position: relative;
    font-family: "cls-icons";
    font-size: 12px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    margin-left: 10px;
    top: -1px;
    transition: transform 0.3s ease;
}
.slider-services__btn:hover {
    color: #9F33FF;
}
.slider-services__btn:hover:after {
    transform: translate(8px, 0);
}
@media screen and (max-width: 767px) {
    .slider-services .swiper-button-prev {
        left: -15px;
    }
    .slider-services .swiper-button-next {
        right: -15px;
    }
    .slider-services .swiper-scrollbar {
        left: -15px;
        right: -15px;
        width: auto;
    }
    .slider-services__item {
        box-shadow: 18px 18px 20px #E9E9E9, -18px 0px 20px rgba(0, 0, 0, 0.1);
    }
}
@media screen and (max-width: 575px) {
    .slider-services .swiper-container {
        max-width: 58.27%;
        position: static;
        margin: 0 auto;
    }
    .slider-services__desc {
        padding: 40px 16px;
    }
    .slider-services__icon-wrapper {
        margin-bottom: 15px;
        height: 78px;
    }
    .slider-services__name {
        font-size: 11px;
        max-width: 150px;
    }
    .slider-services__text {
        margin-top: 16px;
    }
    .slider-services__btn {
        height: 53px;
        font-size: 10px;
    }
}
@media screen and (min-width: 768px) {
    .slider-services .swiper-scrollbar {
        opacity: 0;
        visibility: hidden;
    }
}
@media screen and (min-width: 992px) {
    .slider-services .swiper-wrapper {
        justify-content: center;
    }
}

.tools-block {
    margin-top: 48px;
}
.tools-block__title {
    margin: 0 0 22px;
}
.tools-block__list {
    display: flex;
    margin: 0 -16px;
    flex-wrap: wrap;
    justify-content: center;
}
.tools-block__item {
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 32px;
    display: flex;
    height: 30px;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
}
.tools-block__img {
    max-width: 100%;
    max-height: 100%;
}
@media screen and (max-width: 991px) {
    .tools-block__item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media screen and (max-width: 767px) {
    .tools-block__item {
        margin-bottom: 16px;
    }
}
@media screen and (max-width: 575px) {
    .tools-block__item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .btn.load-more {
        border: 1px solid #E3E7EE;
        height: 36px;
        line-height: 36px;
        font-weight: normal;
        font-size: 13px;
        letter-spacing: 0;
        text-transform: none;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 24px -2px 0;
}
.pagination__item {
    margin: 0 2px 4px;
}
.pagination__link {
    display: flex;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    font-size: 16px;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #231F25;
    background: #F5F7F9;
    border-radius: 6px;
    padding: 0 8px;
    position: relative;
}
.pagination__link_prev, .pagination__link_next {
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.pagination__link_prev:before, .pagination__link_prev:after, .pagination__link_next:before, .pagination__link_next:after {
    position: relative;
    font-family: "cls-icons";
    font-size: 12px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
}
.pagination__link_prev:before {
    content: "\e900";
    margin-right: 10px;
    transform: rotate(-180deg);
}
.pagination__link_next:after {
    content: "\e900";
    margin-left: 10px;
}
.pagination__link_active, .pagination__link_active:hover {
    background: #9F33FF;
    color: #fff !important;
}
.pagination a.pagination__link:hover {
    color: #9F33FF;
}

.nav-full__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1000;
    display: none;
}
.nav-full__content {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 120px 64px;
    position: relative;
}
.nav-full__content-inner {
    display: flex;
    align-items: flex-end;
}
.nav-full__item:not(:last-child) {
    margin-bottom: 48px;
}
.nav-full__link {
    font-weight: 800;
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    color: #231F25;
}
.nav-full__link:hover {
    color: #9F33FF;
}
.nav-full__submenu {
    margin-top: 28px;
}
.nav-full__submenu-item:not(:last-child) {
    margin-bottom: 16px;
}
.nav-full__submenu-link {
    font-weight: bold;
    font-size: 17px;
    line-height: 100%;
    color: #231F25;
}
.nav-full__submenu-link:hover {
    color: #9F33FF;
}
.nav-full__submenu-back {
    font-weight: bold;
    font-size: 13px;
    line-height: 130%;
    display: inline-flex;
    align-items: center;
    color: #231F25;
    margin-bottom: 46px;
}
.nav-full__submenu-back:before {
    content: "\e904";
    font-family: "cls-icons";
    font-size: 7px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    transform: rotate(90deg);
    margin-right: 8px;
}
.nav-full__form {
    display: none;
}
@media screen and (max-width: 767px) {
    .nav-full {
        flex: 0 0 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    .nav-full__wrapper {
        top: 44px;
    }
    .nav-full__content {
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        padding: 32px 15px 150px;
    }
    .nav-full__content-inner {
        flex: 0 0 100%;
        align-items: center;
        height: 100%;
    }
    .nav-full__content:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 44px;
        height: 109px;
        background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), url("../images/bg/bg-nav-full@2x.jpg") no-repeat center bottom;
        background-size: 100% auto;
    }
    .nav-full__item:nth-child(n) {
        margin: 0;
    }
    .nav-full__link {
        font-weight: bold;
        font-size: 22px;
        line-height: 130%;
        display: flex;
        color: #231F25;
        text-transform: none;
        padding: 12px 0;
        position: relative;
    }
    .nav-full__link_with_submenu:after {
        content: "\e904";
        position: absolute;
        top: 50%;
        right: 0;
        font-family: "cls-icons";
        font-size: 7px;
        line-height: 1;
        font-weight: normal;
        font-style: normal;
        transform: rotate(-90deg);
    }
    .nav-full__submenu {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        margin: 0;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .nav-full__submenu-item:nth-child(n) {
        margin: 0;
    }
    .nav-full__submenu-link {
        font-size: 16px;
        line-height: 130%;
        padding: 12px 0;
        display: block;
    }
    .nav-full__submenu_active {
        opacity: 1;
        visibility: visible;
    }
}
@media screen and (min-width: 768px) {
    .nav-full__content:after {
        content: "crealytics";
        position: absolute;
        left: 56px;
        bottom: -37px;
        color: #231F25;
        opacity: 0.03;
        font-weight: 800;
        font-size: 130px;
        line-height: 1;
        text-transform: uppercase;
        pointer-events: none;
    }
    .nav-full__submenu-back {
        display: none !important;
    }
    .nav-full__wrapper_404 {
        display: block !important;
        opacity: 1 !important;
        background: none;
        position: relative;
        height: 100%;
        min-height: 100vh;
    }
    .nav-full__wrapper_404 .nav-full__content {
        position: static;
        padding-left: 24px;
        padding-right: 24px;
    }
    .nav-full__wrapper_404 .nav-full__content-inner {
        width: 100%;
        max-width: 790px;
        justify-content: space-between;
    }
    .nav-full__wrapper_404 .nav-full__item:not(:last-child) {
        margin-bottom: 16px;
    }
    .nav-full__wrapper_404 .nav-full__link {
        font-size: 17px;
    }
    .nav-full__wrapper_404 .nav-full__submenu {
        margin-top: 16px;
    }
    .nav-full__wrapper_404 .nav-full__submenu-item:not(:last-child) {
        margin-bottom: 12px;
    }
    .nav-full__wrapper_404 .nav-full__submenu-link {
        font-size: 13px;
    }
    .nav-full__wrapper_404 .modal-contacts {
        margin-left: 0;
    }
}

.modal-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: 145px;
    flex: 1 1 auto;
}
.modal-contacts__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: stretch;
}
.modal-contacts__feedback {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    line-height: 175%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 30px 56px 30px 25px;
    background: #9F33FF;
    position: relative;
    transition: background 0.3s ease;
    position: absolute;
    right: 0;
}
.modal-contacts__feedback:after {
    content: "\e900";
    font-family: "cls-icons";
    font-size: 12px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    margin-left: 63px;
    transition: transform 0.3s ease;
}
.modal-contacts__feedback:hover {
    background: #8837D0;
    color: #fff;
}
.modal-contacts__feedback:hover:after {
    transform: translate(8px, 0);
}
.modal-contacts__phone {
    font-weight: bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A161C;
    white-space: nowrap;
    margin-bottom: 10px;
}
.modal-contacts__phone:hover {
    color: #9F33FF;
}
.modal-contacts__callback {
    font-weight: bold;
    font-size: 12px;
    line-height: 175%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9F33FF;
}
.modal-contacts__callback:hover {
    color: #8837D0;
}
.modal-contacts__address {
    font-weight: normal;
    font-size: 13px;
    line-height: 130%;
    color: #231F25;
    margin-top: 32px;
    margin-bottom: 16px;
}
.modal-contacts__email {
    font-weight: normal;
    font-size: 13px;
    line-height: 130%;
    color: #231F25;
    white-space: nowrap;
}
.modal-contacts__email:hover {
    color: #9F33FF;
}
@media screen and (max-width: 767px) {
    .modal-contacts {
        margin: 0;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: row;
        justify-content: flex-start;
    }
    .modal-contacts__phone {
        height: 44px;
        line-height: 44px;
        background: #231F25;
        color: #fff;
        margin: 0;
        flex: 0 0 100%;
        font-weight: bold;
        font-size: 15px;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .modal-contacts__phone:after {
        content: "\e908";
        position: relative;
        font-family: "cls-icons";
        font-size: 16px;
        line-height: 1;
        font-style: normal;
        font-weight: normal;
        color: #4AF6CD;
    }
    .modal-contacts__phone:hover {
        color: #fff;
    }
}

.article-info {
    position: relative;
    z-index: 3;
}
.article-info__item {
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 18px 18px 20px rgba(233, 233, 233, 0.5), -18px -18px 20px rgba(250, 250, 250, 0.15);
    border-radius: 6px;
    height: 100%;
    position: relative;
}
.article-info__item-footer {
    margin-top: 32px;
}
.article-info__item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}
.article-info__item-content {
    position: relative;
    z-index: 3;
}
.article-info__item_column {
    display: flex;
    flex-direction: column;
    min-height: 540px;
}
.article-info__item_column .article-info__item-body {
    flex: 1 1 auto;
}
.article-info__item_column .article-info__item-footer {
    flex: 0 0 auto;
}
.article-info__item_grey {
    background: #F9FBFF;
    box-shadow: none;
}
.article-info__item_shadow_full {
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FAFAFA;
}
.article-info__item_cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 370px;
    overflow: hidden;
}
.article-info__item_inverse {
    color: #fff;
}
.article-info__item_inverse .article-info__name {
    color: #fff;
}
.article-info__item_inverse .article-info__text {
    color: rgba(255, 255, 255, 0.8);
}
.article-info__name {
    font-weight: bold;
    font-size: 24px;
    line-height: 130%;
    color: #231F25;
    margin-bottom: 24px;
}
.article-info__logo {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.5;
    filter: grayscale(100);
}
.article-info__logo-wrapper {
    display: flex;
    width: 173px;
    height: 60px;
    align-items: center;
    margin-bottom: 8px;
}
.article-info__text {
    font-weight: normal;
    font-size: 20px;
    line-height: 170%;
    color: rgba(35, 31, 37, 0.8);
}
.article-info__text a:not([class]) {
    color: #9F33FF;
}
.article-info__helper {
    font-weight: normal;
    font-size: 17px;
    line-height: 170%;
    color: rgba(35, 31, 37, 0.8);
}
.article-info_mt {
    margin-top: -40px;
}
@media screen and (max-width: 1199px) {
    .article-info__item_column {
        min-height: 450px;
    }
    .article-info__text {
        font-size: 18px;
    }
    .article-info__helper {
        font-size: 15px;
    }
}
@media screen and (max-width: 991px) {
    .article-info__item {
        padding: 24px;
    }
    .article-info__item-wrapper_cover {
        margin-bottom: 32px;
    }
    .article-info__item_column {
        min-height: 360px;
    }
    .article-info__name {
        margin-bottom: 16px;
    }
    .article-info__text {
        font-size: 18px;
    }
    .article-info__helper {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .article-info__item {
        padding: 24px 15px;
    }
    .article-info__item-footer {
        margin-top: 16px;
    }
    .article-info__item_column {
        min-height: 0;
        padding: 15px;
    }
    .article-info__item-wrapper + .article-info__item-wrapper {
        margin-top: 8px;
    }
    .article-info__name {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .article-info__text {
        font-size: 14px;
        line-height: 150%;
        color: #231F25;
    }
    .article-info__helper {
        font-size: 11px;
        line-height: 150%;
        color: #231F25;
    }
    .article-info_mt {
        margin-top: -16px;
    }
}

.map-block {
    position: relative;
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
}
.map-block__frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
@media screen and (max-width: 767px) {
    .map-block {
        height: 180px;
    }
}

.contacts-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.contacts-block__wrapper {
    margin-top: 32px;
    margin-bottom: 60px;
}
.contacts-block__address {
    font-weight: normal;
    font-size: 17px;
    line-height: 130%;
    color: #231F25;
    margin-bottom: 32px;
}
.contacts-block__phone {
    font-weight: bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A161C;
    white-space: nowrap;
    margin-bottom: 16px;
}
.contacts-block__phone:hover {
    color: #9F33FF;
}
.contacts-block__callback {
    margin-bottom: 32px;
}
.contacts-block__email {
    font-weight: normal;
    font-size: 17px;
    line-height: 100%;
    color: #17D7A9;
    margin-bottom: 32px;
}
.contacts-block__email:hover {
    color: #9F33FF;
}
@media screen and (max-width: 991px) {
    .contacts-block {
        margin-bottom: 32px;
    }
}
@media screen and (max-width: 767px) {
    .contacts-block {
        margin-bottom: 24px;
    }
    .contacts-block__wrapper {
        margin-top: 24px;
        margin-bottom: 40px;
    }
    .contacts-block__address {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .contacts-block__callback {
        margin-bottom: 24px;
    }
    .contacts-block__email {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

.block-404 {
    max-width: 450px;
}
.block-404__wrapper {
    display: table;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 3;
}
.block-404__wrapper .block-404 {
    margin-left: auto;
    margin-right: auto;
}
.block-404__inner {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding: 124px 0;
}
.block-404__title {
    font-weight: 800;
    font-size: 64px;
    line-height: 130%;
    color: #231F25;
}
.block-404__text {
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    color: rgba(35, 31, 37, 0.8);
}
.block-404_mb_md {
    margin-bottom: 120px;
}
.block-getaudit {
	text-align: center;
}

@media screen and (max-width: 991px) {
    .block-404__title {
        font-size: 56px;
    }
}
@media screen and (max-width: 767px) {
    .block-404 {
        text-align: center;
    }
    .block-404__title {
        font-size: 40px;
    }
    .block-404__text {
        font-size: 15px;
    }
}

#footer {
    margin-top: 104px;
    background: #181A1A;
}
@media screen and (max-width: 767px) {
    #footer {
        margin-top: 40px;
    }
}

.footer-inner {
    flex-wrap: nowrap;
}
.footer-inner__content {
    padding-top: 60px;
    padding-bottom: 60px;
}
.footer-inner__side {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.footer-contacts {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-contacts__phone {
    font-weight: bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
}
.footer-contacts__phone:hover {
    color: #9F33FF;
}
.footer-contacts__callback {
    margin-top: 10px;
}
.footer-contacts__address {
    font-weight: normal;
    font-size: 13px;
    line-height: 162%;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    margin-top: 32px;
}
.footer-contacts__email {
    font-weight: normal;
    font-size: 13px;
    line-height: 162%;
    color: rgba(255, 255, 255, 0.7);
}
.footer-contacts__email:hover {
    color: #fff;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
.footer-social {
    display: flex;
    align-items: center;
}
.footer-social__link {
    position: relative;
    color: #fff;
    display: block;
    width: 20px;
    height: 20px;
    transition: color 0.3s ease, background 0.3s ease;
}
.footer-social__link:before {
    font-family: "cls-icons";
    line-height: 1;
    font-weight: normal;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.footer-social__link:not(:last-child) {
    margin-right: 16px;
}
.footer-social__link:hover {
    color: #9F33FF;
}
.footer-social__link_instagram:before {
    content: "\e906";
}
.footer-social__link_facebook:before {
    content: "\e905";
}
.footer-social__link_vk:before {
    content: "\e90c";
}
.footer-social_modal {
    position: absolute;
    right: 56px;
    bottom: 56px;
    z-index: 1;
}
.footer-social_modal .footer-social__link {
    color: #1A161C;
}
.footer-social_modal .footer-social__link:hover {
    color: #9F33FF;
}
.footer-social_contacts .footer-social__link {
    color: #1A161C;
}
.footer-social_contacts .footer-social__link:hover {
    color: #9F33FF;
}
.footer-social_404 {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 0);
    z-index: 1;
    margin: 0 !important;
}
.footer-social_404 .footer-social__link {
    color: #1A161C;
    width: 20px;
    height: 20px;
}
.footer-social_404 .footer-social__link:before {
    font-size: 20px;
}
.footer-social_404 .footer-social__link:hover {
    color: #9F33FF;
}
.footer-info {
    display: flex;
    flex-wrap: wrap;
}
.footer-info__item {
    font-weight: 500;
    font-size: 9px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}
.footer-info__item:not(:last-child) {
    padding-right: 16px;
    margin-right: 15px;
}
.footer-info__item:not(:last-child):after {
    content: "";
    position: absolute;
    top: 1px;
    right: 0;
    bottom: 1px;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
}
.footer-info__link {
    color: rgba(255, 255, 255, 0.5);
}
.footer-info__link:hover {
    color: #fff;
}
.footer-gotop {
    background: #9F33FF;
    width: 80px;
    height: calc(100% + 24px);
    display: flex;
    flex-direction: column;
    padding: 84px 16px 60px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: background 0.5s ease;
}
.footer-gotop:before {
    content: "\e900";
    position: relative;
    font-family: "cls-icons";
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    font-size: 12px;
    transform: rotate(-90deg);
    color: #fff;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
}
.footer-gotop__img {
    flex: 0 0 auto;
}
@media (hover: hover) {
    .footer-gotop:hover {
        background: #8837D0;
    }
    .footer-gotop:hover:before {
        transform: translate(0, -8px) rotate(-90deg);
    }
}
@media screen and (max-width: 1199px) {
    .footer-contacts__phone {
        letter-spacing: 1px;
    }
}
@media screen and (max-width: 767px) {
    .footer-inner__content {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .footer-contacts {
        align-items: flex-start;
        text-align: left;
    }
    .footer-contacts__phone {
        letter-spacing: 2px;
        font-size: 16px;
    }
    .footer-contacts__callback {
        margin-top: 16px;
    }
    .footer-contacts__address {
        margin-top: 24px;
        margin-bottom: 16px;
    }
    .footer-bottom {
        flex-wrap: wrap;
        margin-top: 24px;
    }
    .footer-social {
        order: -1;
        margin-bottom: 16px;
    }
    .footer-social__link {
        width: 32px;
        height: 32px;
    }
    .footer-social__link:before {
        font-size: 32px;
    }
    .footer-social_modal {
        left: 15px;
        bottom: 84px;
        margin: 0;
    }
    .footer-social_contacts {
        order: initial;
        margin: 0;
    }
    .footer-social_contacts .footer-social__link {
        width: 20px;
        height: 20px;
    }
    .footer-social_contacts .footer-social__link:before {
        font-size: 20px;
    }
    .footer-info__item {
        line-height: 150%;
        flex: 0 0 100%;
    }
    .footer-info__item:nth-child(n) {
        padding: 0;
        margin: 0;
    }
    .footer-info__item:nth-child(n):after {
        content: none;
        display: none;
    }
    .footer-gotop {
        width: 60px;
        padding: 40px 16px 24px;
        height: calc(100% + 16px);
    }
}

.nav-footer {
    display: flex;
    flex-wrap: wrap;
}
.nav-footer__item:not(last-child) {
    margin-bottom: 9px;
}
.nav-footer__link {
    font-weight: bold;
    font-size: 17px;
    line-height: 162%;
    color: #FFFFFF;
}
.nav-footer__link:hover {
    color: #9F33FF;
}
.nav-footer__link_secondary {
    font-weight: normal;
    font-size: 13px;
    line-height: 162%;
    color: rgba(255, 255, 255, 0.7);
}


.landing_page {
    display: table;
    width: 100%;
    position: relative;
    z-index: 3;
}
.landing_page__inner {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding: 124px 0;
}
#footer.footer_langing_page {
	margin-top: 0;
	z-index: 3;
}

@media screen and (max-width: 767px) {
	.landing_page__inner {
	    display: table-cell;
	    width: 100%;
	    vertical-align: middle;
	    padding: 90px 20px;
	}
}