/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    scroll-margin-top: 24px;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;

    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #fff;
    --scroll_width: 17px;
    --text_color: #000;
    --font_size: 18px;
    --font_size_title: 54px;
    --font_size_title_big: 60px;
    --font_size_title_small: 43px;
    --font_family:  'Montserrat', 'Arial', sans-serif;
    --font_family2: 'Montserrat', 'Arial', sans-serif;
    --fancybox-scrollbar-compensate: var(--scroll_width) !important;
}


::selection
{
    color: #fff;
    background: #3a449f;
}

::-moz-selection
{
    color: #fff;
    background: #3a449f;
}



html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: var(--bg);
}


html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #3a449f;
}


body
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 400;
    line-height: normal;

    color: var(--text_color);
}


body.lock
{
    overflow: hidden;
}


button
{
    display: inline-block;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    cursor: pointer;
    vertical-align: top;

    color: inherit;
    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: clip;
    flex-direction: column;

    min-height: 100%;

    z-index: 9;

    background: var(--bg);
}


.wrap > .main
{
    position: relative;

    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}


.cont
{
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 40px;
}


.row
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
}



.block
{
    margin-bottom: 108px;
}

.block.small_m
{
    margin-bottom: 53px;
}

.block.middle_m
{
    margin-bottom: 70px;
}

.block.middle_m2
{
    margin-bottom: 94px;
}

.block.middle_m3
{
    margin-bottom: 80px;
}



.modal_btn > *
{
    pointer-events: none;
}



/*----------------
    Mini modal
----------------*/
.modal_cont
{
    position: relative;
}


.mini_modal
{
    position: absolute;
    top: 100%;
    left: 0;

    visibility: hidden;

    z-index: 100;
    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
}


.mini_modal.active
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}



/*--------------
    Fancybox
--------------*/
.fancybox__backdrop
{
    background: rgba(57, 67, 158, .50);
}


.fancybox__slide
{
    padding: 40px;
}


.fancybox__content > .f-button.is-close-btn,
.is-compact .fancybox__content > .f-button.is-close-btn
{
    top: 20px;
    right: 20px;

    opacity: 1;

    --f-button-width: 34px;
    --f-button-height: 34px;
    --f-button-border-radius: 0;
    --f-button-color: var(--text_color);
    --f-button-hover-color: var(--text_color);
    --f-button-svg-width: 24px;
    --f-button-svg-height: 24px;
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
}



/*----------
    Tabs
----------*/
.tab_content
{
    position: relative;

    visibility: hidden;
    overflow: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}


.tab_content.active
{
    visibility: visible;
    overflow: visible;

    height: auto;

    transition: opacity .5s linear;
    pointer-events: auto;

    opacity: 1;
}



/*------------
    Header
------------*/
header
{
    position: relative;
    top: 0;
    left: 0;

    width: 100%;
    margin-bottom: 76px;
    padding: 24px 0 28px;

    z-index: 90;

    color: #fff;
    background: linear-gradient(87deg, #3a449f 53.01%, #39439e 92.77%);
}


header.no_m
{
    margin-bottom: 0;
}


header.absolute
{
    position: absolute;

    margin-bottom: 0;

    background: none;
}



header .cont
{
    align-content: center;
    align-items: center;
    justify-content: space-between;
}



header .logo
{
    display: block;

    text-decoration: none;

    color: currentColor;
}


header .logo img
{
    display: block;

    width: 218px;
    height: 45px;
}



header .menu
{
    gap: 60px;
}


header .menu_item > a
{
    position: relative;

    display: block;

    font-weight: 600;
    line-height: 36px;

    text-decoration: none;

    color: currentColor;
}


header .menu_item > a:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 0;
    height: 1px;
    margin: auto;

    content: '';
    transition: width .3s linear;

    background: currentColor;
}


header .menu_item > a:hover:after,
header .menu_item > a.active:after
{
    width: 100%;
}



header .contacts_btn
{
    padding: 10px 36px;

    font-weight: 600;
    line-height: 22px;

    border: 1px solid;
    border-radius: 30px;
}



.langs 
{
    width: 80px;
}


.langs .btn
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    width: 100%;

    font-weight: 600;
    line-height: 36px;

    z-index: 101;
}




.langs .btn img
{
    display: block;

    width: 17px;
    height: 17px;
    margin-left: 16px;

    border-radius: 50%;
}


.langs .mini_modal
{
    top: -28px;
    left: -50%;

    display: flex;
    flex-direction: column;

    width: 200%;
    padding: 75px 50% 0;

    border-radius: 25px;
    background: rgba(57, 67, 158, .40);
}


.langs .mini_modal > *
{
    border-top: 1px solid;
}


.langs .mini_modal .btn
{
    justify-content: space-between;

    width: 100%;
    padding: 12px 0;
}



.langs .mini_modal .btn img
{
    margin-left: 16px;
}


.mob_menu .langs .mini_modal {
    top: auto;
    bottom: -28px;
    background: rgba(36, 43, 101, 0.9);
    padding: 0 50% 75px;
}


.mob_menu .langs .mini_modal > * {
    border-top: none;
    border-bottom: 1px solid;
}

header .mob_menu_btn
{
    display: none;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 40px;
    height: 32px;
    margin-right: -8px;
    margin-left: 24px;
    padding: 8px;

    color: currentColor;
}


header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: currentColor;
}


header .mob_menu_btn span:before,
header .mob_menu_btn span:after
{
    position: absolute;
    top: -8px;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s linear;

    background: currentColor;
}


header .mob_menu_btn span:after
{
    top: 8px;
}


header .mob_menu_btn.active span
{
    background: none;
}


header .mob_menu_btn.active span:before
{
    top: 0;

    transform: rotate(-45deg);
}


header .mob_menu_btn.active span:after
{
    top: 0;

    transform: rotate(45deg);
}



/*---------------
    Mob. menu
---------------*/
.mob_menu
{
    position: fixed;
    top: 85px;
    left: 100%;
    bottom: 0;
    z-index: 90;

    width: 100%;
    padding: 24px 24px 0;

    transition: .25s linear;
    color: #fff;
    background: #39439e;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.mob_menu.show
{
    transform: translateX(-100%);
}



.mob_menu .menu
{
    display: flex;
    flex-direction: column;

    font-size: 18px;
    font-weight: 600;

    gap: 40px;
}


.mob_menu .menu a
{
    display: block;

    text-decoration: none;

    color: currentColor;
}



.mob_menu .contacts_btn
{
    margin-bottom: 40px;
    padding: 10px 36px;

    font-weight: 600;
    line-height: 22px;

    color: #fff;
    border: 1px solid;
    border-radius: 30px;
}


.mob_menu .footer
{
    border-top: 1px solid;
    padding: 12px 0;
}


/*---------------
    Page head
---------------*/
.page_head
{
    margin-bottom: 32px;
    padding-top: 20px;
}



.breadcrumbs
{
    color: currentColor;
}


.breadcrumbs a
{
    transition: color .2s linear;
    text-decoration: none;

    color: currentColor;
}


.breadcrumbs a:hover
{
    color: #000;
}


.breadcrumbs .sep
{
    position: relative;
    top: -1px;

    display: inline-block;

    width: 6px;
    height: 8px;
    margin: 0 6px;

    vertical-align: middle;
}


.breadcrumbs .sep:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 6px;
    height: 6px;
    margin: auto;

    content: '';
    transform: rotate(-45deg);

    border-right: 1px solid;
    border-bottom: 1px solid;
}



.page_title
{
    display: block;

    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: calc(var(--font_size_title) + 6px);
}



/*----------------
    Block head
----------------*/
.block_head
{
    display: flex;
    flex-direction: column;

    margin-bottom: 40px;

    gap: 40px;
}


.block_head.center
{
    text-align: center;
}


.block_head .title
{
    display: block;

    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: calc(100% + 13px);
}


.block_head .title.small
{
    font-size: var(--font_size_title_small);
    line-height: calc(100% + 14px);
}


.block_head .desc
{
    font-size: 24px;
    line-height: calc(100% + 16px);
}


.block_head .link
{
    margin-top: 8px;
}


.block_head .link .btn
{
    display: inline-block;

    padding: 17px 48px;

    font-size: 20px;
    font-weight: 600;
    line-height: 25px;

    vertical-align: top;
    text-decoration: none;

    color: #fff;
    border-radius: 90px;
    background: #a9ca4b;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #000;
    --form_focus_color: #000;
    --form_error_color: red;
    --form_bg_color: transparent;
    --form_placeholder_color: #000;
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
}

.form ::-moz-placeholder
{
    opacity: 1;
    color: var(--form_placeholder_color);
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .columns
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-left: calc(var(--form_columns_offset) * -1);

    --form_columns_offset: 40px;
}

.form .columns > *
{
    width: calc(50% - var(--form_columns_offset));
    margin-left: var(--form_columns_offset);
}


.form .line
{
    margin-bottom: 12px;
}


.form .field
{
    position: relative;
}


.form .input
{
    display: block;

    width: 100%;
    height: 60px;
    padding: 0 9px;

    font-family: var(--font_family2);
    font-size: 20px;

    transition: border-color .2s linear;

    color: var(--text_color);
    border: none;
    border-bottom: 1px solid var(--form_border_color);
    background: var(--form_bg_color);
}

.form .input:-webkit-autofill
{
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


.form textarea
{
    display: block;

    width: 100%;
    height: 122px;
    padding: 9px;

    font-family: var(--font_family2);
    font-size: 20px;

    resize: none;
    transition: border-color .2s linear;

    color: var(--text_color);
    border: none;
    border-bottom: 1px solid var(--form_border_color);
    background: var(--form_bg_color);
}

.form textarea::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}


.form select
{
    display: none;
}


.form .nice-select
{
    position: relative;

    z-index: 3;
    cursor: pointer;
}


.form .nice-select .current
{
    position: relative;

    display: flex;
    overflow: clip;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    height: 60px;
    padding: 0 9px;

    font-family: var(--font_family2);
    font-size: 20px;

    z-index: 10;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;

    border-bottom: 1px solid var(--form_border_color);
    background: var(--form_bg_color);
}


.form .nice-select-dropdown
{
    position: absolute;
    top: 100%;
    left: 0;

    visibility: hidden;
    overflow: hidden;

    width: 100%;
    padding: 12px 20px;

    font-family: var(--font_family2);

    z-index: 9;
    transition: .2s linear;
    transform: none;

    opacity: 0;
    border-radius: 0 0 25px 25px;
    background: #fff;
}


.form .nice-select .list .option
{
    display: block;

    padding: 12px 0;

    list-style-type: none;

    font-size: 20px;
    line-height: 100%;

    cursor: pointer;
}


.form .nice-select .list .option:empty,
.form .nice-select .list .option.selected
{
    display: none;
}


.form .field .arr
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 24px;
    height: 24px;
    margin: auto 0;

    z-index: 11;
    pointer-events: none;

    border-radius: 50%;
    background: #edf7f9;
}


.form .field .arr svg
{
    display: block;

    width: 12px;
    height: 9px;

    transition: transform .2s linear;
}


.form .nice-select.open
{
    z-index: 5;
}


.form .nice-select.open .nice-select-dropdown
{
    visibility: visible;

    transform: none;

    opacity: 1;
}


.form .nice-select.open + .arr svg
{
    transform: rotate(180deg);
}


.form .input:focus,
.form textarea:focus,
.form .nice-select.open .current
{
    border-color: var(--form_focus_color);
}


.form .error
{
    border-color: var(--form_error_color);
}


.form .row
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-top: 30px;
}


.form .row .agree
{
    width: 178px;
    max-width: 100%;
}


.form .captcha img
{
    display: block;

    max-width: 100%;
}


.form .checkbox
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    min-height: 24px;
    padding-left: 28px;

    font-size: 10px;

    cursor: pointer;
}


.form .checkbox input
{
    display: none;
}


.form .checkbox .check
{
    position: absolute;
    top: 4px;
    left: 0;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 16px;
    height: 16px;

    border: 1px solid #000;
    border-radius: 2px;
}


.form .checkbox .check:after
{
    display: block;

    width: 10px;
    height: 5px;
    margin-top: -2px;

    content: '';
    transition: opacity .2s linear;
    transform: rotate(-45deg);

    opacity: 0;
    border-bottom: 1px solid;
    border-left: 1px solid;
}


.form .checkbox a
{
    color: currentColor;

    text-decoration-thickness: 1px;
}


.form .checkbox input:checked ~ .check:after
{
    opacity: 1;
}


.form .submit
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;

    padding-top: 14px;
}


.form .submit_btn
{
    min-width: 115px;
    height: 60px;
    padding: 10px 32px;

    font-size: 20px;
    font-weight: 600;

    text-transform: uppercase;

    color: #fff;
    border-radius: 100px;
    background: #a9ca4b;
}



/*----------------
    Typography
----------------*/
.text_block
{
    font-size: var(--font_size);
}


.text_block > *
{
    margin-bottom: 23px;
}


.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block img
{
    display: block;

    max-width: 100%;
}


.text_block ul
{
    display: flex;
    flex-direction: column;

    gap: 20px;
}


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 20px;

    list-style-type: none;
}


.text_block ul li:before
{
    position: absolute;
    top: 10px;
    left: 0;

    display: block;

    width: 7px;
    height: 7px;

    content: '';

    border-radius: 50%;
    background: currentColor;
}


.text_block ul.columns
{
    display: block;

    column-gap: 24px;
    column-count: 2;
}


.text_block ul.columns > *
{
    transform: translateZ(0);

    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}


.text_block ul.columns > * + *
{
    margin-top: 20px;
}



/*-----------------
    Main slider
-----------------*/
.main_slider
{
    background: #3a449f;
}


.main_slider .swiper-slide
{
    position: relative;

    overflow: hidden;
}


.main_slider .swiper-button-prev
{
    display: none;
}


.main_slider .swiper-button-next
{
    right: 50%;
    bottom: 80px;

    width: 234px;
    height: 183px;
    margin-right: -955px;

    color: #c3e85b;
    border: 2px solid #c3e85b;
    border-radius: 23px 900px 900px 23px;
}


.main_slider .swiper-pagination
{
    display: none;
}


.main_slider .bg
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    z-index: 1;
    pointer-events: none;
}


.main_slider .bg img
{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.main_slider .cont
{
    position: relative;

    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;

    min-height: 820px;
    padding-top: 170px;
    padding-bottom: 80px;

    z-index: 3;
}


.main_slider .data
{
    width: 687px;
    max-width: 100%;
    padding-bottom: 40px;

    color: #fff;
}


.main_slider .data.big
{
    width: 862px;
    padding-bottom: 12px;
}


.main_slider .head
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-bottom: 12px;

    font-size: 19px;

    gap: 22px;
}


.main_slider .head picture,
.main_slider .head picture img
{
    display: block;
}


.main_slider .head .sep
{
    width: 1px;
    height: 19px;

    background: currentColor;
}


.main_slider .title
{
    font-size: var(--font_size_title_big);
    font-weight: 600;
    line-height: calc(100% + 10px);
}


.main_slider .desc
{
    margin-top: 24px;

    font-size: 24px;
    line-height: calc(100% + 16px);
}


.main_slider .link
{
    margin-top: 24px;
}


.main_slider .link a
{
    display: inline-block;

    padding: 16px 57px;

    font-size: 20px;
    font-weight: 600;
    line-height: 24px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    color: #c3e85b;
    border: 1px solid #c3e85b;
    border-radius: 90px;
}


.main_slider .link a:hover
{
    color: #fff;
    border-color: #a9ca4b;
    background: #a9ca4b;
}


.main_slider .items
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 548px;
    max-width: 100%;
    margin-top: 40px;
    margin-bottom: -40px;
    margin-left: -40px;

    font-family: var(--font_family2);
    font-size: 20px;
}


.main_slider .data.big .items
{
    width: 692px;
    margin-top: 72px;
}


.main_slider .items > *
{
    position: relative;

    width: calc(50% - 40px);
    margin-bottom: 40px;
    margin-left: 40px;
    padding-left: 16px;
}


.main_slider .data.big .items > *
{
    width: calc(33.333% - 40px);
}


.main_slider .items > *:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 1px;
    height: calc(100% - 8px);
    margin: auto 0;

    content: '';
    pointer-events: none;

    background: currentColor;
}


.main_slider .message
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 234px;
    max-width: 100%;
    min-height: 183px;
    margin-right: 10px;
    padding: 38px 32px 38px 30px;

    line-height: 33px;

    color: #fff;
    border-radius: 23px 900px 900px 23px;
    background: #39439e;
}



/*----------------
    About info
----------------*/
.about_info .block_head
{
    align-self: center;

    width: 400px;
    max-width: 100%;
    margin-bottom: 0;
}


.about_info .block_head .desc
{
    width: 364px;
    max-width: 100%;
}



.about_info .industries
{
    width: calc(100% - 494px);
    margin-left: auto;
}



.about_info .mob_link
{
    display: none;
    order: 3;

    width: 100%;
    margin-top: 40px;

    text-align: center;
}


.about_info .mob_link a
{
    display: inline-block;

    padding: 16px 40px;

    font-size: 18px;
    font-weight: 600;
    line-height: 22px;

    vertical-align: top;
    text-decoration: none;

    color: #fff;
    border-radius: 90px;
    background: #a9ca4b;
}



/*----------------
    Industries
----------------*/
.industries
{
    display: flex;
    flex-direction: column;

    gap: 18px;
}


.industries .industry
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
}


.industries .info
{
    width: calc(100% - 413px);
    padding: 47px 62px;

    border-radius: 23px 690px 690px 23px;
    background: #edf7f9;
}


.industries .info .name
{
    display: inline-block;

    font-size: 43px;
    font-weight: 600;
    line-height: calc(100% + 14px);

    vertical-align: top;
    text-decoration: none;

    color: #060606;
}


.industries .info .stats
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 30px;

    font-family: var(--font_family2);
    font-size: 15px;

    gap: 52px;
}


.industries .info .stats > *
{
    position: relative;

    padding-left: 17px;
}


.industries .info .stats > *:before
{
    position: absolute;
    bottom: 4px;
    left: 0;

    display: block;

    width: 1px;
    height: calc(100% - 40px);

    content: '';
    pointer-events: none;

    background: currentColor;
}


.industries .info .stats .val
{
    margin-bottom: -8px;

    font-size: 33px;
    font-weight: 600;
    line-height: 74px;

    color: #060606;
}


.industries .image
{
    position: relative;

    overflow: hidden;

    width: 388px;
    max-width: 100%;
    min-height: 343px;

    border-radius: 30px 900px 30px 30px;
}


.industries .image .swiper,
.industries .image picture
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border-radius: inherit;
}


.industries .image img
{
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}



/*-------------
    Clients
-------------*/
.clients
{
    padding: 40px 0;

    background: #edf7f9;
}


.clients .block_head
{
    align-content: center;

    margin: 0;
}


.clients .logos
{
    display: flex;
    align-content: center;
    align-items: center;
    align-self: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: calc(100% - 418px);
    margin-left: auto;

    gap: 24px 52px;
}


.clients .logos picture
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 74px;
}


.clients .logos img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



/*-----------
    Cases
-----------*/
.cases .cont.row
{
    justify-content: space-between;
}


.cases .head
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-bottom: 48px;
}


.cases .head .title
{
    width: 280px;
    max-width: 100%;

    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: calc(100% + 13px);
}


.cases .head .title + *
{
    display: flex;
    flex-direction: column;

    width: calc(100% - 473px);

    gap: 40px;
}


.cases .head .desc
{
    width: 776px;
    max-width: 100%;

    font-size: 24px;
    line-height: calc(100% + 16px);
}


.cases .filter
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 24px 138px;
}


.cases .filter .field
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}


.cases .filter select
{
    display: none;
}


.cases .filter .nice-select
{
    position: relative;

    z-index: 3;
    cursor: pointer;
}


.cases .filter .nice-select .current
{
    position: relative;

    display: block;
    overflow: hidden;

    max-width: 180px;
    height: 74px;
    padding-right: 36px;

    font-size: 20px;
    font-weight: 600;
    line-height: 74px;

    z-index: 10;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.cases .filter .nice-select-dropdown
{
    position: absolute;
    top: 0;
    left: -38px;

    visibility: hidden;
    overflow: hidden;

    width: 269px;
    min-width: calc(100% + 100px);
    padding: 75px 44px 24px 38px;

    z-index: 9;
    transition: .2s linear;
    transform: none;

    opacity: 0;
    border-radius: 25px;
    background: #edf7f9;
}


.cases .filter .nice-select .list
{
    gap: 0;
}


.cases .filter .nice-select .list .option
{
    display: block;

    padding: 18px 0;

    list-style-type: none;

    font-size: 20px;
    font-weight: 600;
    line-height: 100%;

    cursor: pointer;

    border-top: 1px solid #a2a4af;
}


.cases .filter .nice-select .list .option:empty,
.cases .filter .nice-select .list .option.selected
{
    display: none;
}


.cases .filter .field .arr
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 24px;
    height: 24px;
    margin: auto 0;

    z-index: 11;
    pointer-events: none;

    border-radius: 50%;
    background: #edf7f9;
}


.cases .filter .field .arr svg
{
    display: block;

    width: 12px;
    height: 9px;

    transition: transform .2s linear;
}


.cases .filter .nice-select.open
{
    z-index: 5;
}


.cases .filter .nice-select.open .nice-select-dropdown
{
    visibility: visible;

    transform: none;

    opacity: 1;
}


.cases .filter .nice-select.open + .arr svg
{
    transform: rotate(180deg);
}


.cases .block_head
{
    width: 470px;
    max-width: 100%;
    margin-top: 80px;
    margin-bottom: 0;
    padding-right: 56px;
}


.cases .block_head.big_w
{
    width: 508px;
    padding-right: 10px;
}


.cases .block_head .desc
{
    width: 400px;
    max-width: 100%;
}


.cases .list
{
    display: flex;
    flex-direction: column;

    gap: 56px;
}


.cases .swiper
{
    overflow: visible !important;

    width: calc(100% - 555px);
    margin: 0;
    padding-bottom: 40px;
}


.cases .swiper.small
{
    width: calc(100% - 599px);
}


.cases .swiper-fade .swiper-slide
{
    z-index: 1;
    pointer-events: auto;
}


.cases .swiper .swiper-slide + .swiper-slide
{
    display: none;
}

.cases .swiper-initialized .swiper-slide + .swiper-slide
{
    display: block;
}


.cases .swiper-fade .swiper-slide.active
{
    z-index: 3;
}


.cases .case
{
    position: relative;

    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    padding: 67px 61px 68px 80px;

    text-decoration: none;

    color: currentColor;
    border-radius: 20px;
    background: #edf7f9;
}


.cases .case .image
{
    display: block;
    overflow: hidden;

    width: 255px;
    max-width: 100%;
    height: 225px;

    border-radius: 30px 900px 30px 30px;
}


.cases .case .image.left
{
    border-radius: 30px 900px 900px 30px;
}


.cases .list .case .image
{
    width: 381px;
    height: 336px;
}

.cases .list .case .image.left
{
    width: 388px;
    height: 342px;
}


.cases .case .image img
{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.cases .case .info
{
    width: calc(100% - 476px);
}


.cases .case .name
{
    display: inline-block;

    width: 324px;
    max-width: 100%;

    font-size: 43px;
    font-weight: 600;
    line-height: calc(100% + 14px);

    vertical-align: top;
    text-decoration: none;

    color: #060606;
}


.cases .list .case .name
{
    width: 691px;
}


.cases .case .industry
{
    width: 100%;
    margin-top: 20px;

    font-size: 15px;
    line-height: 30px;
}


.cases .list .case .industry
{
    margin-top: 60px;
}


.cases .case .tags
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 509px;
    max-width: calc(100% - 255px);
    margin-top: 24px;

    gap: 16px 12px;
}


.cases .case .info .tags
{
    max-width: 100%;
}


.cases .case .tags > *
{
    padding: 10px 23px;

    font-size: 15px;
    line-height: 21px;

    white-space: nowrap;

    color: #fff;
    border-radius: 90px;
    background: #39439e;
}


.cases .case .stats
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 100%;
    margin-top: 24px;

    font-family: var(--font_family2);
    font-size: 15px;

    gap: 40px;
}


.cases .case .stats .val
{
    margin-bottom: -8px;

    font-family: var(--font_family);
    font-size: 33px;
    font-weight: 600;
    line-height: 74px;

    white-space: nowrap;

    color: #060606;
}


.cases .case .stats .val + *
{
    max-width: 255px;
}


.cases .case .stats .sep
{
    align-self: flex-end;

    width: 1px;
    height: 80px;
    max-height: 100%;

    background: #010101;
}


.cases .mob_link
{
    display: none;
    order: 3;

    width: 100%;
    margin-top: 32px;
}


.cases .mob_link a
{
    display: inline-block;

    padding: 16px 40px;

    font-size: 18px;
    font-weight: 600;
    line-height: 22px;

    vertical-align: top;
    text-decoration: none;

    color: #fff;
    border-radius: 90px;
    background: #a9ca4b;
}



.cases .more
{
    margin-top: 48px;

    text-align: center;
}


.cases .more .btn
{
    width: 208px;
    max-width: 100%;
    height: 59px;

    font-size: 20px;
    font-weight: 600;

    color: #fff;
    border-radius: 90px;
    background: #a9ca4b;
}



/*--------------
    Articles
--------------*/
.articles
{
    padding-bottom: 24px;
}


.articles .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -38px;
    margin-left: -38px;
}


.articles .row > *
{
    width: 396px;
    max-width: calc(50% - 38px);
    margin-bottom: 38px;
    margin-left: 38px;
}


.articles .row > *.big
{
    width: calc(100% - 906px);
}


.articles .article
{
    display: flex;
    flex-direction: column;

    padding: 48px 50px;

    text-decoration: none;

    color: #39439e;
    border-radius: 20px;
    background: #edf7f9;
}


.articles .article .date
{
    margin-bottom: 16px;

    font-family: var(--font_family2);
    font-size: 13px;

    text-transform: uppercase;
}


.articles .article .title
{
    font-size: 26px;
    font-weight: 600;
    line-height: calc(100% + 14px);
}


.articles .article .arrow
{
    margin-top: 24px;
}


.articles .article .arrow .icon
{
    display: block;

    width: 107px;
    height: 16px;
}


.articles .article .author
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-top: 32px;

    font-family: var(--font_family2);
    font-size: 14px;
}


.articles .article .author .photo
{
    width: 53px;
    height: 53px;

    border-radius: 50%;
    background: #fff;
}


.articles .article .author .photo img
{
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.articles .article .author .photo + *
{
    align-self: center;

    width: calc(100% - 74px);
}


.articles .article .author .post
{
    font-weight: 700;
}


.articles .article.big
{
    padding: 48px 84px;

    color: #fff;
    border-radius: 23px 690px 690px 23px;
    background: #39439e;
}


.articles .article.big .date
{
    margin-bottom: 24px;
}


.articles .article.big .title
{
    width: 330px;
    max-width: 100%;
}


.articles .article.big .arrow
{
    margin-top: 28px;

    color: #a9ca4b;
}



/*--------------
    Partners
--------------*/
.partners .row
{
    align-content: center;
    align-items: center;
    justify-content: space-between;

    gap: 24px 52px;
}


.partners picture
{
    display: block;
}


.partners picture img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



/*-------------------
    Contacts info
-------------------*/
.contacts_info
{
    position: relative;

    padding-top: 105px;
    padding-bottom: 82px;

    color: #fff;
    background: #39439e;
}


.contacts_info .cont
{
    position: relative;

    z-index: 3;
}


.contacts_info .block_head
{
    position: relative;

    margin-bottom: 320px;

    z-index: 3;
}


.contacts_info .image
{
    position: absolute;
    top: -60px;
    left: 50%;

    display: block;

    width: 939px;
    max-width: 100%;
    margin-left: -300px;

    z-index: 1;
    pointer-events: none;
}


.contacts_info .image img
{
    display: block;

    width: 100%;
}


.contacts_info .mob_contacts_title
{
    display: none;

    margin-bottom: 32px;

    font-size: 25px;
    font-weight: 600;
    line-height: 150%;
}


.contacts_info .row
{
    gap: 40px 200px;
}


.contacts_info .row > *
{
    width: 306px;
    max-width: 100%;
}


.contacts_info .item
{
    font-size: 20px;
}


.contacts_info .item .head
{
    position: relative;

    pointer-events: none;
}


.contacts_info .item .head .icon
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: none;

    width: 12px;
    height: 9px;
    margin-block: auto;

    transition: transform .2s linear;
}


.contacts_info .item .head.active .icon
{
    transform: rotate(180deg);
}


.contacts_info .item .name
{
    font-size: 24px;
    font-weight: 600;
}


.contacts_info .item .address
{
    margin-top: 48px;
}


.contacts_info .item .phone,
.contacts_info .item .email
{
    font-size: 24px;
    font-weight: 600;
}


.contacts_info .item .phone a,
.contacts_info .item .email a
{
    white-space: nowrap;
    text-decoration: none;

    color: currentColor;
}



/*---------------
    Case info
---------------*/
.case_info .head
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-bottom: 80px;
}


.case_info .head .title
{
    width: 524px;
    max-width: 100%;

    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: calc(100% + 13px);
}


.case_info .head .title + *
{
    display: flex;
    flex-direction: column;

    width: calc(100% - 624px);

    gap: 40px;
}


.case_info .head .desc
{
    width: 802px;
    max-width: 100%;

    font-size: 24px;
    line-height: calc(100% + 16px);
}


.case_info .stats
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    font-family: var(--font_family2);
    font-size: 15px;

    gap: 40px;
}


.case_info .stats > *:not(.sep)
{
    min-width: 225px;
}


.case_info .stats .val
{
    margin-bottom: -8px;

    font-family: var(--font_family);
    font-size: 33px;
    font-weight: 600;
    line-height: 74px;

    color: #060606;
}


.case_info .stats .sep
{
    align-self: flex-end;

    width: 1px;
    height: 80px;
    max-height: 100%;

    background: #010101;
}



.case_info .big_image
{
    display: block;

    padding: 63px 24px 64px;

    background: #edf7f9;
}


.case_info .big_image img
{
    display: block;

    max-width: 100%;
    max-height: 483px;
    margin: 0 auto;

    mix-blend-mode: darken;
}



.case_info .section
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-top: 48px;
}


.case_info .section + .section
{
    padding-top: 48px;

    border-top: 1px solid #cee1e5;
}


.case_info .tags
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 468px;
    max-width: 100%;

    gap: 16px 12px;
}


.case_info .tags > *
{
    padding: 10px 23px;

    font-size: 15px;
    line-height: 21px;

    white-space: nowrap;

    color: #fff;
    border-radius: 90px;
    background: #39439e;
}


.case_info .section .info
{
    width: 921px;
    max-width: 100%;
}


.case_info .section .info.small
{
    width: 456px;
}


.case_info .section .info.middle
{
    width: 787px;
    margin-right: 36px;
}


.case_info .section .info .title
{
    margin-bottom: 23px;

    font-size: 20px;
    font-weight: 600;
}


.case_info .section .info .desc
{
    line-height: 40px;
}

.case_info .section .info.small .desc
{
    line-height: 30px;
}


.case_info .section .logo
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;

    width: 200px;
    max-width: 100%;
}


.case_info .section .logo img
{
    display: block;

    max-width: 100%;
}


.case_info .section .image
{
    display: block;
    overflow: hidden;

    width: 381px;
    max-width: 100%;
    height: 336px;

    border-radius: 30px 900px 30px 30px;
}


.case_info .section .image img
{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.case_info .section .default_image
{
    display: block;

    width: 554px;
    max-width: 100%;
    margin-top: 53px;
}


.case_info .section .default_image img
{
    display: block;

    width: 100%;
}


.case_info .section .quote
{
    width: 426px;
    max-width: 100%;
}


.case_info .section .quote .icon
{
    display: block;

    width: 112px;
    max-width: 100%;
    margin-bottom: 20px;
}


.case_info .section .quote .text
{
    line-height: 30px;
}


.case_info .section .quote .author
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-top: 20px;

    font-family: var(--font_family2);
    font-size: 14px;
}


.case_info .section .quote .author .photo
{
    width: 53px;
    height: 53px;

    border-radius: 50%;
    background: #fff;
}


.case_info .section .quote .author .photo img
{
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.case_info .section .quote .author .photo + *
{
    align-self: center;

    width: calc(100% - 74px);
}


.case_info .section .quote .author .post
{
    font-weight: 700;
}



/*---------------
    Service info
---------------*/
.service_info .head
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-bottom: 48px;
}


.service_info .head .title
{
    width: 508px;
    max-width: 100%;

    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: calc(100% + 13px);
}


.service_info .head .title + *
{
    display: flex;
    flex-direction: column;

    width: calc(100% - 617px);

    gap: 48px;
}


.service_info .head .desc
{
    width: 797px;
    max-width: 100%;

    font-size: 24px;
    line-height: calc(100% + 16px);
}


.service_info .stats
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    font-family: var(--font_family2);
    font-size: 15px;

    gap: 100px;
}


.service_info .stats > *
{
    padding-left: 16px;

    border-left: 1px solid;
}


.service_info .stats .val
{
    margin-bottom: 4px;

    font-family: var(--font_family);
    font-size: 43px;
    font-weight: 600;
    line-height: 100%;

    color: #060606;
}



/*------------------------
    Service industries
------------------------*/
.service_industries .block_title
{
    margin-bottom: 24px;

    font-size: 20px;
    font-weight: 600;
}


.service_industries .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -26px;
    margin-left: -30px;
}


.service_industries .row > *
{
    width: calc(33.333% - 30px);
    margin-bottom: 26px;
    margin-left: 30px;
}


.service_industries .industry
{
    display: flex;
    flex-direction: column;

    padding: 48px 76px 76px 55px;

    border-radius: 23px;
    background: #edf7f9;
}


.service_industries .industry.bottom_border
{
    border-bottom-right-radius: 200px;
}

.service_industries .industry.top_border
{
    border-top-right-radius: 200px;
}


.service_industries .industry .thumb
{
    width: 133px;
    max-width: 100%;
    height: 117px;
    margin-bottom: 24px;

    border-radius: 50px 900px 50px 7px;
}


.service_industries .industry .thumb.border1
{
    border-radius: 50px 900px 900px 7px;
}


.service_industries .industry .thumb.border2
{
    border-radius: 50px 50px 50px 7px;
}


.service_industries .industry .thumb img
{
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.service_industries .industry .name
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    min-height: 74px;

    font-size: 26px;
    font-weight: 600;
    line-height: calc(100% + 14px);
}


.service_industries .industry .desc
{
    margin-top: 10px;

    font-size: 17px;
    line-height: calc(100% + 15px);
}



.service_industries .action
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    padding: 75px;

    font-size: 35px;
    font-weight: 600;
    line-height: calc(100% + 8px);

    border-radius: 23px 23px 200px;
    background: #edf7f9;
}


.service_industries .action div
{
    width: 100%;
}


.service_industries .action .btn
{
    height: 59px;
    margin-top: 40px;
    padding: 0 48px;

    font-size: 20px;
    font-weight: 600;

    color: #fff;
    border-radius: 90px;
    background: #a9ca4b;
}



/*------------------
    Service data
------------------*/
.service_data .cont
{
    justify-content: space-between;

    gap: 48px;
}



.service_data .line
{
    width: 100%;
    height: 1px;

    background: #cee1e5;
}



.service_data .expertise
{
    width: 508px;
    max-width: 100%;
}


.service_data .expertise.full_w
{
    width: 100%;
}


.service_data .expertise .items
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    font-family: var(--font_family2);
    font-size: 20px;

    gap: 48px;
}


.service_data .expertise .col
{
    display: flex;
    flex-direction: column;

    gap: 20px;
}


.service_data .expertise .col > *
{
    position: relative;

    padding-left: 20px;
}


.service_data .expertise .col > *:before
{
    position: absolute;
    top: 10px;
    left: 0;

    display: block;

    width: 7px;
    height: 7px;

    content: '';

    border-radius: 50%;
    background: currentColor;
}



.service_data .team
{
    width: calc(100% - 636px);
}



/*------------------
    Action block
------------------*/
.action_block
{
    padding: 40px 0;

    background: #edf7f9;
}


.action_block .cont
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    gap: 24px 100px;
}


.action_block .title
{
    font-size: 35px;
    font-weight: 600;
    line-height: calc(100% + 8px);
}


.action_block .btn
{
    height: 59px;
    padding: 0 48px;

    font-size: 20px;
    font-weight: 600;

    color: #fff;
    border-radius: 90px;
    background: #a9ca4b;
}



/*----------------
    About head
----------------*/
.about_head
{
    position: relative;

    padding: 100px 0 110px;

    color: #fff;
    background: linear-gradient(87deg, #3a449f 53.01%, #39439e 92.77%);
}


.about_head .bg
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    z-index: 1;
    pointer-events: none;
}


.about_head .bg img
{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about_head .cont
{
    position: relative;

    align-content: flex-end;
    align-items: flex-end;
    justify-content: space-between;

    z-index: 3;
}


.about_head .data
{
    width: 672px;
    max-width: 100%;
    margin-bottom: 24px;
}


.about_head .title
{
    font-size: 60px;
    font-weight: 600;
    line-height: calc(100% + 10px);
}


.about_head .desc
{
    margin-top: 16px;

    font-size: 24px;
    line-height: calc(100% + 16px);
}


.about_head .message
{
    position: relative;

    width: 300px;
    max-width: 100%;
    margin-top: 32px;
    padding-left: 28px;

    font-size: 20px;
    line-height: 2;
}


.about_head .message:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 1px;
    height: calc(100% - 14px);
    margin: auto 0;

    content: '';

    background: currentColor;
}


.about_head .exp
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 402px;
    max-width: 100%;
    padding: 48px 85px 48px 47px;

    font-size: 20px;
    line-height: 2;

    border-radius: 23px 690px 690px 23px;
    background: #39439e;
}



/*----------------
    About data
----------------*/
.about_data
{
    position: relative;

    margin-bottom: 72px;
    padding-top: 154px;

    z-index: 3;
}


.about_data .cont
{
    justify-content: space-between;
}


.about_data .image
{
    display: block;

    width: 422px;
    max-width: 100%;
}


.about_data .image img
{
    display: block;

    width: 100%;
}


.about_data .data
{
    display: flex;
    flex-direction: column;

    width: 456px;
    max-width: 100%;
    margin-top: -390px;
    margin-right: auto;
    margin-left: 48px;

    gap: 69px;
}


.about_data .data .exp
{
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 412px;
    max-width: 100%;
    min-height: 363px;
    padding: 44px 98px 44px 44px;

    font-size: 20px;
    line-height: 2;

    color: #39439e;
    border-radius: 20px 610px 20px 20px;
    background: #edf7f9;
}


.about_data .data .desc
{
    font-size: 20px;
    line-height: 2;
}


.about_data .stats
{
    display: flex;
    flex-direction: column;

    width: 380px;
    max-width: 100%;
    margin-top: 25px;

    gap: 8px;
}


.about_data .stats .val
{
    font-size: 33px;
    font-weight: 600;
    line-height: 100%;

    color: #060606;
}


.about_data .stats .desc
{
    font-size: 20px;
    line-height: 2;
}



/*------------
    Why we
------------*/
.why_we .row
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;

    padding-top: 24px;
}


.why_we .col
{
    position: relative;

    width: 100%;
    padding-bottom: 24px;
}


.why_we .col + .col
{
    margin-left: 50px;
    padding-left: 50px;
}


.why_we .col + .col:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 1px;
    height: 100%;
    margin: auto 0;

    content: '';

    background: #cee1e5;
}


.why_we .col .title
{
    font-size: 30px;
    font-weight: 600;
    line-height: calc(100% + 10px);
}


.why_we .col .stats
{
    margin-top: 28px;
}


.why_we .col .stats .val
{
    font-size: 33px;
    font-weight: 600;
    line-height: 100%;

    color: #060606;
}


.why_we .col .stats .desc
{
    font-size: 20px;
    line-height: 2;
}


.why_we .col .items
{
    display: flex;
    flex-direction: column;

    margin-top: 28px;

    font-size: 20px;

    gap: 16px;
}


.why_we .col .desc
{
    margin-top: 6px;

    font-size: 20px;
    line-height: 2;
}


.why_we .col .logos_wrap
{
    overflow: hidden;

    height: 160px;
    margin-top: 48px;

    transition: height .2s linear;
}


.why_we .col .logos_wrap.full
{
    height: auto;
}


.why_we .col .logos
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    gap: 40px 48px;
}


.why_we .col .logos picture
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 60px;
}


.why_we .col .logos img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.why_we .col .spoler_btn
{
    display: none;

    margin: 24px auto 0;

    font-size: 20px;
    font-weight: 600;

    color: #39439e;
    border-bottom: 1px solid;
}


.why_we .col .spoler_btn.show
{
    display: block;
}


.why_we .col .spoler_btn span + span,
.why_we .col .spoler_btn.active span
{
    display: none;
}


.why_we .col .spoler_btn.active span + span
{
    display: block;
}



/*------------------
    Article info
------------------*/
.article_info .head
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-bottom: 80px;
    padding: 40px 65px 38px;

    border-radius: 20px;
    background: #edf7f9;
}


.article_info .head .data
{
    display: flex;
    flex-direction: column;

    width: calc(100% - 350px);
}


.article_info .head .date
{
    margin-bottom: 24px;

    color: #a8a8ab;
}


.article_info .head .title
{
    display: block;

    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 130%;
}


.article_info .image
{
    width: 285px;
    max-width: 100%;

    border-radius: 30px 900px 30px 30px;
}


.article_info .image img
{
    display: block;

    width: 100%;

    border-radius: inherit;
}


.article_info .text_block
{
    width: calc(100% - 415px);
    padding-left: 65px;
}



/*-------------------
    Services head
-------------------*/
.services_head .section + .section
{
    margin-top: 80px;
}


.services_head .image
{
    display: block;

    width: 445px;
    max-width: 100%;

    border-radius: 30px 900px 30px 30px;
}


.services_head .image img
{
    display: block;

    width: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.services_head .info
{
    align-self: center;

    width: calc(100% - 525px);
    margin-left: auto;
}


.services_head .block_head
{
    margin-bottom: 28px;
}


.services_head .items
{
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-bottom: -30px;
    margin-left: -30px;

    counter-reset: number;
}


.services_head .item
{
    position: relative;

    width: calc(33.333% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
    padding: 24px;

    border: 1px solid #a9ca4b;
    border-radius: 20px;
}


.services_head .item:nth-child(1)
{
    padding: 64px 24px 137px 25px;
}


.services_head .item:nth-child(2)
{
    padding: 98px 24px 82px 25px;
}


.services_head .item:nth-child(3)
{
    padding: 146px 65px 90px 25px;

    color: #fff;
    border: none;
    border-radius: 23px 690px 690px 23px;
    background: #39439e;
}


.services_head .item .number
{
    position: absolute;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 102px;
    height: 90px;

    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 130%;

    text-align: center;

    color: #fff;
    border-radius: 50px 50px 50px 7px;
    background-color: #39439e;
}


.services_head .item .number span:before
{
    content: counter(number);
    counter-increment: number;
}


.services_head .item:nth-child(1) .number
{
    bottom: 13px;
    left: 24px;
}


.services_head .item:nth-child(2) .number
{
    top: -41px;
    left: 27px;
}


.services_head .item:nth-child(3) .number
{
    top: 2px;
    left: 25px;

    width: 135px;
    height: 119px;

    border-radius: 0;
}


.services_head .item .number span
{
    position: relative;

    z-index: 2;
}


.services_head .item .number picture,
.services_head .item .number img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    z-index: 1;
    pointer-events: none;

    border-radius: inherit;

    object-fit: cover;
}



/*------------------
    Our services
------------------*/
.our_services .swiper.tabs
{
    overflow: visible !important;
}


.our_services .swiper.tabs .swiper-slide
{
    width: auto;
}


.our_services .tabs
{
    margin-bottom: 48px;

    border-top: 1px solid #39439e;
    border-bottom: 1px solid #39439e;
}


.our_services .tabs .btn
{
    position: relative;

    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 100%;
    padding: 27px 0;

    font-size: 24px;
    font-weight: 700;

    transition: color .2s linear;
    text-align: left;
}


.our_services .tabs .btn:after
{
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;

    width: 0;
    height: 4px;
    margin: auto;

    content: '';
    transition: width .3s linear;
    pointer-events: none;

    background: #39439e;
}


.our_services .tabs .btn:hover,
.our_services .tabs .btn.active
{
    color: #39439e;
}


.our_services .tabs .btn.active:after
{
    width: 100%;
}


.our_services .image
{
    width: 445px;
    max-width: 100%;
    margin-left: auto;

    border-radius: 30px 900px 30px 30px;
}


.our_services .image img
{
    display: block;

    width: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.our_services .data
{
    align-self: center;

    width: calc(100% - 552px);
}


.our_services .data > * + *
{
    margin-top: 20px;
}


.our_services .link
{
    margin-top: 40px;
}


.our_services .link .btn
{
    display: inline-block;

    padding: 17px 48px;

    font-size: 20px;
    font-weight: 600;
    line-height: 25px;

    vertical-align: top;
    text-decoration: none;

    color: #fff;
    border-radius: 90px;
    background: #a9ca4b;
}



/*-------------
    Why we2
-------------*/
.why_we2 .row
{
    align-content: stretch;
    align-items: stretch;
    justify-content: space-between;
}


.why_we2 .block_head
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 445px;
    max-width: 100%;
    margin-bottom: 0;
    padding: 64px 68px 64px 48px;

    border: 1px solid #a9ca4b;
    border-radius: 23px 690px 690px 23px;
}


.why_we2 .data
{
    width: calc(100% - 475px);
    padding: 78px 95px;

    border-radius: 20px;
    background: #edf7f9;
}


.why_we2 .data .name
{
    font-size: 24px;
    font-weight: 700;
}


.why_we2 .data .desc
{
    margin-top: 20px;
}



/*----------------
    Error page
----------------*/
.error_page
{
    padding-block: 218px;
}


.error_page .cont
{
    align-content: center;
    align-items: center;
    justify-content: space-between;
}


.error_page .data
{
    display: flex;
    flex-direction: column;

    width: 430px;
    max-width: 100%;

    gap: 44px;
}


.error_page .title
{
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: calc(100% + 13px);
}


.error_page .desc
{
    font-size: 24px;
    line-height: calc(100% + 16px);

    color: #060606;
}


.error_page .links
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 10px;
}


.error_page .links a
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: fit-content;
    height: 59px;
    padding-inline: 62px;

    font-size: 20px;
    font-weight: 600;

    text-align: center;
    text-decoration: none;

    color: #fff;
    border-radius: 900px;
    background: #a9ca4b;
}


.error_page .code
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: calc(100% - 560px);
    padding-block: 153px;
    padding-inline: 138px;

    border-radius: 23px 900px 900px 23px;
    background: #edf7f9;
}


.error_page .code.mob
{
    display: none;
}


.error_page .code img
{
    display: block;

    max-width: 100%;
}



/*-----------
    Products
-----------*/
.products
{
    position: relative;

    padding-bottom: 53px;
}


.products:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 1460px;
    max-width: calc(100% - 80px);
    height: 1px;
    margin-inline: auto;

    content: '';
    pointer-events: none;

    background: #cee1e5;
}


.products .cont.row
{
    justify-content: space-between;
}


.products .head
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-bottom: 48px;
}


.products .head .title
{
    width: 280px;
    max-width: 100%;

    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: calc(100% + 13px);
}


.products .head .title + *
{
    display: flex;
    flex-direction: column;

    width: calc(100% - 473px);

    gap: 40px;
}


.products .head .desc
{
    width: 776px;
    max-width: 100%;

    font-size: 24px;
    line-height: calc(100% + 16px);
}



.products .filter
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 24px 138px;
}


.products .filter .field
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}


.products .filter select
{
    display: none;
}


.products .filter .nice-select
{
    position: relative;

    z-index: 3;
    cursor: pointer;
}


.products .filter .nice-select .current
{
    position: relative;

    display: block;
    overflow: hidden;

    max-width: 180px;
    height: 74px;
    padding-right: 36px;

    font-size: 20px;
    font-weight: 600;
    line-height: 74px;

    z-index: 10;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.products .filter .nice-select-dropdown
{
    position: absolute;
    top: 0;
    left: -38px;

    visibility: hidden;
    overflow: hidden;

    width: 269px;
    min-width: calc(100% + 100px);
    padding: 75px 44px 24px 38px;

    z-index: 9;
    transition: .2s linear;
    transform: none;

    opacity: 0;
    border-radius: 25px;
    background: #edf7f9;
}


.products .filter .nice-select .list
{
    gap: 0;
}


.products .filter .nice-select .list .option
{
    display: block;

    padding: 18px 0;

    list-style-type: none;

    font-size: 20px;
    font-weight: 600;
    line-height: 100%;

    cursor: pointer;

    border-top: 1px solid #a2a4af;
}


.products .filter .nice-select .list .option:empty,
.products .filter .nice-select .list .option.selected
{
    display: none;
}


.products .filter .field .arr
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 24px;
    height: 24px;
    margin: auto 0;

    z-index: 11;
    pointer-events: none;

    border-radius: 50%;
    background: #edf7f9;
}


.products .filter .field .arr svg
{
    display: block;

    width: 12px;
    height: 9px;

    transition: transform .2s linear;
}


.products .filter .nice-select.open
{
    z-index: 5;
}


.products .filter .nice-select.open .nice-select-dropdown
{
    visibility: visible;

    transform: none;

    opacity: 1;
}


.products .filter .nice-select.open + .arr svg
{
    transform: rotate(180deg);
}



.products .swiper
{
    overflow: visible !important;
}


.products .grid
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-bottom: -30px;
    margin-left: -30px;
}


.products .grid > *
{
    display: flex;
    flex-direction: column;

    width: calc(33.333% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
}


.products .product
{
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;
    padding-block: 48px;
    padding-inline: 55px;

    text-decoration: none;

    color: currentColor;
    border-radius: 23px;
    background: #edf7f9;

    gap: 12px;
}


.products .product .icon
{
    position: absolute;
    top: 48px;
    right: 55px;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 61px;

    aspect-ratio: 1 / 1;
}


.products .product .icon img
{
    display: block;

    width: 100%;
    height: 100%;
}


.products .product .name
{
    width: calc(100% - 97px);

    font-size: 26px;
    font-weight: 500;
    line-height: 160%;
}


.products .product .desc
{
    width: calc(100% - 97px);
    min-height: 44px;

    font-size: 15px;
    line-height: 160%;
}


.products .product .tags
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 24px;

    gap: 12px;
}


.products .product .tags > *
{
    padding-block: 5px;
    padding-inline: 24px;

    font-size: 15px;
    line-height: 30px;

    white-space: nowrap;

    color: #fff;
    border-radius: 100px;
    background: #39439e;
}


.products .controls
{
    display: none;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;

    margin-top: 24px;

    gap: 20px;
}


.products .swiper-horizontal > .swiper-pagination-bullets,
.products .swiper-pagination-bullets.swiper-pagination-horizontal,
.products .swiper-pagination-custom,
.products .swiper-pagination-fraction
{
    position: relative;
    inset: 0;

    width: auto;
    height: 3px;
    margin: 0;

    gap: 10px;
}


.products .swiper-pagination-bullet
{
    width: 3px;
    height: 3px;

    border: none;
    background: #c0d2d5;
}


.products .swiper-pagination-bullet:hover,
.products .swiper-pagination-bullet.active
{
    background: #39439e;
}


.products .swiper-button-prev,
.products .swiper-button-next
{
    position: relative;
    inset: 0;

    margin: 0;
}


.products .swiper-button-prev
{
    display: none;
}



.products .more
{
    margin-top: 48px;

    text-align: center;
}


.products .more .btn
{
    width: 208px;
    max-width: 100%;
    height: 59px;

    font-size: 20px;
    font-weight: 600;

    color: #fff;
    border-radius: 90px;
    background: #a9ca4b;
}



/*------------------
    Product info
------------------*/
.product_info
{
    margin-top: -80px;
}

.product_info .head
{
    position: relative;

    color: #fff;
    background: #d8cff4;
}


.product_info .head:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 84.739%;
    height: 100%;

    content: '';
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(90deg, #3a449f 44.45%, rgba(63, 73, 151, .00) 92.7%);
}


.product_info .head .cont
{
    position: relative;

    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    height: 669px;
    padding-top: 109px;

    z-index: 3;
}


.product_info .head .info
{
    display: flex;
    flex-direction: column;

    width: 732px;
    max-width: 100%;

    gap: 20px;
}


.product_info .head .title
{
    display: block;

    font-size: 60px;
    font-weight: 600;
    line-height: calc(100% + 10px);
}


.product_info .head .desc
{
    width: 680px;
    max-width: 100%;

    font-size: 24px;
    line-height: calc(100% + 16px);
}


.product_info .head .actions
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: -3px;

    font-size: 20px;
    line-height: calc(100% + 20px);

    gap: 35px;
}


.product_info .head .actions > *
{
    width: 209px;
    max-width: 100%;
    padding-left: 18px;

    border-left: 1px solid;
}


.product_info .head .actions > *.big
{
    width: 443px;
}


.product_info .head .image
{
    display: block;

    width: 722px;
    max-width: 100%;
    margin-top: 26px;
    margin-right: -54px;
}


.product_info .head .image img
{
    display: block;

    max-width: 100%;
    margin-inline: auto;
}



/*---------------------
    Product anchors
---------------------*/
.product_anchors
{
    position: sticky;
    top: 0;

    padding-block: 10px;

    z-index: 10;

    background: #edf7f9;
}


.product_anchors .cont
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    gap: 17px;
}


.product_anchors .btn
{
    position: relative;

    padding-inline: 10px;

    font-family: var(--font_family2);
    font-size: 17px;
    font-weight: 600;
    line-height: calc(100% + 15px);

    color: #39439e;
}


.product_anchors .btn:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 0;
    height: 1px;
    margin: auto;

    content: '';
    transition: width .3s linear;

    background: currentColor;
}


.product_anchors .btn:hover:after,
.product_anchors .btn.active:after
{
    width: 100%;
}


.product_anchors .contacts_btn
{
    height: 44px;
    padding-inline: 38px;

    font-family: var(--font_family2);
    font-size: 17px;
    font-weight: 600;
    line-height: calc(100% + 15px);

    color: #fff;
    border-radius: 30px;
    background: #a9ca4b;
}



/*------------------
    Product data
------------------*/
.product_data
{
    margin-top: 100px;

    scroll-margin-top: 88px;
}


.product_data .description
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}


.product_data .description .title
{
    width: 415px;
    max-width: 100%;

    font-size: 26px;
    font-weight: 600;
    line-height: calc(100% + 14px);
}


.product_data .description .text_block
{
    width: calc(100% - 511px);

    font-size: 26px;
    line-height: calc(100% + 14px);
}


.product_data .items
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 80px;

    row-gap: 80px;
}


.product_data .items .item
{
    display: flex;
    flex-direction: column;

    width: 33.333%;
    padding-inline: 50px 20px;

    border-left: 1px solid #cee1e5;

    gap: 30px;
}


.product_data .items .name
{
    font-size: 30px;
    font-weight: 600;
    line-height: calc(100% + 10px);
}


.product_data .items .desc
{
    font-size: 20px;
    line-height: 2;
}


.product_data .items .desc a
{
    color: #39439e;

    text-decoration-thickness: 1px;
}


.product_data .items .logos
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 60px;
}


.product_data .items .logos a
{
    display: block;

    text-decoration: none;

    color: currentColor;
}


.product_data .items .logos .logo
{
    display: block;
}


.product_data .items .logos img
{
    display: block;

    max-width: 147px;
    max-height: 88px;
}


.product_data .swiper .item {
    display: flex;
    flex-direction: column;
    padding-inline: 50px 20px;

    border-left: 1px solid #cee1e5;

    gap: 30px;
}


.product_data .swiper .name {
    font-size: 22px;
    font-weight: 600;
    line-height: calc(100% + 8px);
}


.product_data .swiper .desc {
    font-size: 15px;
    line-height: 2;
}


.product_data .swiper .desc a
{
    color: #39439e;

    text-decoration-thickness: 1px;
}


.product_data .swiper .logos
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 60px;
}


.product_data .swiper .logos a
{
    display: block;

    text-decoration: none;

    color: currentColor;
}


.product_data .swiper .logos .logo
{
    display: block;
}


.product_data .swiper .logos img
{
    display: block;

    max-width: 147px;
    max-height: 88px;
}

/*--------------------------
    Product architecture
--------------------------*/
.product_architecture
{
    scroll-margin-top: 88px;
}


.product_architecture .block_head
{
    margin-bottom: 50px;
}


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


.product_architecture .image + .row
{
    margin-top: 90px;
}


.product_architecture .icons
{
    position: relative;

    display: flex;
    overflow: clip;
    align-content: flex-end;
    align-items: flex-end;
    align-self: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    width: 388px;
    max-width: 100%;
    height: 369px;
    padding: 48px 60px 48px 40px;

    border-radius: 30px 900px 30px 30px;
    background: #e3e0e5;

    gap: 48px 24px;
}


.product_architecture .icons .icon
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: calc(50% - 12px);
    height: 84px;

    z-index: 3;
}


.product_architecture .icons .icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.product_architecture .icons .bg
{
    position: absolute;
    inset: 0;

    display: block;

    z-index: 1;
    pointer-events: none;

    opacity: .5;
}


.product_architecture .icons .bg img
{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.product_architecture .data
{
    display: flex;
    flex-direction: column;

    width: calc(100% - 484px);

    gap: 30px;
}


.product_architecture .item
{
    display: flex;
    flex-direction: column;

    font-size: 24px;
    line-height: calc(100% + 16px);

    gap: 20px;
}


.product_architecture .item .name
{
    font-weight: 600;
}


.product_architecture .item .desc ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 28px;

    list-style-type: none;
}


.product_architecture .item .desc ul li:before
{
    position: absolute;
    top: .5lh;
    left: 8px;

    display: block;

    width: 6px;

    content: '';
    transform: translateY(-50%);

    border-radius: 50%;
    background: currentColor;

    aspect-ratio: 1 / 1;
}



.product_architecture .image
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 500px;
    margin-top: 80px;
    padding: 48px;

    border-radius: 30px;
    background: linear-gradient(90deg, var(--Surface-Secondary, rgba(137, 110, 222, .30)) 23.27%, rgba(187, 247, 213, .30)) 81.88%;
}


.product_architecture .image img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



/*-----------------------
    Product use cases
-----------------------*/
.product_use_cases
{
    scroll-margin-top: 88px;
}


.product_use_cases .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -34px;
    margin-left: -26px;
}


.product_use_cases .row > *
{
    width: calc(33.333% - 26px);
    margin-bottom: 34px;
    margin-left: 26px;
}


.product_use_cases .row > *.big_w
{
    width: calc(66.666% - 26px);
}


.product_use_cases .item
{
    display: flex;
    flex-direction: column;

    padding: 48px 76px 48px 55px;

    border-radius: 23px;
    background: #edf7f9;

    gap: 20px;
}


.product_use_cases .item.radius2
{
    border-radius: 23px 200px 23px 23px;
}


.product_use_cases .item .thumb
{
    display: block;

    width: 133px;
    height: 117px;
    margin-bottom: 2px;
}


.product_use_cases .item .thumb.radius1
{
    border-radius: 50px 50px 50px 7px;
}

.product_use_cases .item .thumb.radius2
{
    border-radius: 7px 50px 50px 7px;
}

.product_use_cases .item .thumb.radius3
{
    border-radius: 7px 50px 900px 50px;
}

.product_use_cases .item .thumb.radius4
{
    border-radius: 50px 900px 50px 7px;
}


.product_use_cases .item .thumb img
{
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.product_use_cases .item .name
{
    font-size: 26px;
    font-weight: 600;
    line-height: calc(100% + 14px);
}


.product_use_cases .item .desc
{
    font-family: var(--font_family2);
    font-size: 17px;
    line-height: calc(100% + 15px);
}


.product_use_cases .item .desc ul
{
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.product_use_cases .item .desc ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 20px;

    list-style-type: none;
}


.product_use_cases .item .desc ul li:before
{
    position: absolute;
    top: .5lh;
    left: 6px;

    display: block;

    width: 3px;

    content: '';
    transform: translateY(-50%);

    border-radius: 50%;
    background: currentColor;

    aspect-ratio: 1 / 1;
}


.product_use_cases .image
{
    display: block;

    background: linear-gradient(90deg, var(--Surface-Secondary, rgba(137, 110, 222, .30)) 23.27%, rgba(187, 247, 213, .30)) 81.88%;
}


.product_use_cases .image img
{
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}



/*------------------------
    Product advantages
------------------------*/
.product_advantages .block_head
{
    margin-bottom: 30px;
}


.product_advantages .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -26px;
    margin-left: -34px;
}


.product_advantages .row > *
{
    width: calc(33.333% - 34px);
    margin-bottom: 26px;
    margin-left: 34px;
}


.product_advantages .row > *.big_w
{
    width: calc(66.666% - 26px);
}


.product_advantages .item
{
    display: flex;
    flex-direction: column;

    padding: 48px 76px 48px 55px;

    gap: 20px;
}


.product_advantages .item .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 133px;
    height: 117px;
    margin-bottom: 2px;

    background: #edf7f9;
}


.product_advantages .item .icon img
{
    display: block;

    width: 42px;

    aspect-ratio: 1 / 1;
}


.product_advantages .item .icon.radius1
{
    border-radius: 7px 50px 50px 7px;
}

.product_advantages .item .icon.radius2
{
    border-radius: 7px 50px 50px 50px;
}


.product_advantages .item .name
{
    font-size: 26px;
    font-weight: 600;
    line-height: calc(100% + 14px);
}


.product_advantages .item .desc
{
    font-family: var(--font_family2);
    font-size: 17px;
    line-height: calc(100% + 15px);
}


.product_advantages .image
{
    display: block;

    background: linear-gradient(90deg, var(--Surface-Secondary, rgba(137, 110, 222, .30)) 23.27%, rgba(187, 247, 213, .30)) 81.88%;
}


.product_advantages .image img
{
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}



/*---------------------
    Product license
---------------------*/
.product_license .cont
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}


.product_license .data
{
    width: calc(100% - 625px);
    padding: 70px 60px 70px 70px;

    border-radius: 20px;
    background: #edf7f9;
}


.product_license .data .title
{
    margin-bottom: 20px;

    font-size: var(--font_size_title_small);
    font-weight: 600;
    line-height: calc(100% + 14px);
}


.product_license .data .section + .section
{
    margin-top: 25px;
}


.product_license .data .label
{
    margin-bottom: 25px;

    font-size: 15px;
    line-height: calc(100% + 15px);
}


.product_license .data .items
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    font-size: 15px;
    line-height: calc(100% + 15px);

    gap: 16px 12px;
}


.product_license .data .items > *
{
    padding: 5px 23px;

    color: #fff;
    border-radius: 200px;
    background: #39439e;
}


.product_license .block_head
{
    align-self: center;

    width: 508px;
    max-width: 100%;
    margin-right: 36px;
    margin-bottom: 0;
}


.product_license .block_head .desc
{
    display: flex;
    flex-direction: column;

    gap: 20px;
}



/*-------------
    Tariffs
-------------*/
.tariffs
{
    scroll-margin-top: 88px;
}


.tariffs .block_head
{
    margin-bottom: 50px;
}


.tariffs .block_head .desc
{
    width: 993px;
    max-width: 100%;

    font-size: 26px;
    font-weight: 600;
    line-height: calc(100% + 14px);
}


.tariffs .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -30px;
    margin-left: -30px;
}


.tariffs .row > *
{
    width: calc(25% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
}


.tariffs .tariff
{
    display: flex;
    flex-direction: column;

    padding: 10px 20px 20px 20px;

    border-radius: 50px;
    background: #edf7f9;

    gap: 16px;
}


.tariffs .tariff .name
{
    padding: 6px 10px;

    font-size: 20px;
    line-height: 2;

    border-bottom: 1px solid #cee1e5;
}


.tariffs .tariff .price
{
    font-family: var(--font_family2);
    font-size: 17px;
    font-weight: 600;
    line-height: calc(100% + 15px);
}


.tariffs .tariff .price span
{
    font-family: var(--font_family);
    font-size: var(--font_size_title_small);
    font-weight: 600;
    line-height: calc(100% + 14px);
}


.tariffs .tariff .exp
{
    padding: 8px 10px;

    font-family: var(--font_family2);
    font-size: 17px;
    font-weight: 600;
    line-height: calc(100% + 15px);

    border-radius: 12px;
    background: #eaf6c8;
}



/*-----------------
    Action form
-----------------*/
.action_form
{
    padding-block: 60px 78px;

    background: #edf7f9;
}


.action_form .cont
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}


.action_form .block_head
{
    width: 587px;
    max-width: 100%;

    gap: 8px;
}


.action_form .block_head .desc
{
    font-size: 17px;
    line-height: calc(100% + 15px);
}


.action_form .form
{
    width: 715px;
    max-width: 100%;
    margin-left: auto;
}


.action_form .form .row .agree
{
    width: 292px;
}


.action_form .form .checkbox
{
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}


.action_form .form .checkbox .check
{
    border-color: #39439e;
}


.action_form .form .checkbox .check:after
{
    margin-top: -4px;

    color: #fff;
}


.action_form .form .checkbox input:checked ~ .check
{
    background: #39439e;
}


.action_form .form .submit_btn
{
    padding: 0 48px;
}



/*------------
    Footer
------------*/
footer
{
    padding-top: 82px;
    padding-bottom: 105px;

    color: #fff;
    background: #39439e;
}


footer .cont
{
    align-content: center;
    align-items: center;
    justify-content: space-between;
}



footer .logo
{
    display: block;
}


footer .logo img
{
    display: block;

    width: 218px;
    height: 45px;
}



footer .menu
{
    margin-right: auto;
    margin-left: 169px;

    gap: 60px;
}


footer .menu a
{
    display: inline-block;

    vertical-align: top;
    text-decoration: none;

    color: currentColor;
}



footer .bottom
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    width: 100%;
    margin-top: 48px;
    padding-left: 387px;
}



footer .socials
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 24px;
}


footer .socials a
{
    display: block;

    text-decoration: none;

    color: currentColor;
    border-radius: 50%;
}


footer .socials .icon
{
    display: block;

    width: 50px;

    aspect-ratio: 1 / 1;
}



footer .copyright
{
    font-size: 14px;
    font-weight: 500;
}



/*-----------
    PopUp
-----------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 765px;
    max-width: 100%;
    padding: 28px 50px 40px 50px;

    color: var(--text_color);
    border-radius: 20px;
    background: #edf7f9;
}


.modal_title
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    min-height: 68px;
    margin-bottom: 12px;

    font-size: 26px;
    font-weight: 600;
}
