/*-----------
    Fonts
-----------*/
@font-face
{
    font-family: 'FrutigerLTStd';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/FrutigerLTStd-Bold.woff2') format('woff2'),
    url('../fonts/FrutigerLTStd-Bold.woff') format('woff'),
    url('../fonts/FrutigerLTStd-Bold.ttf') format('truetype');
}

@font-face
{
    font-family: 'FrutigerLTStd';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/FrutigerLTStd-Roman.woff2') format('woff2'),
    url('../fonts/FrutigerLTStd-Roman.woff') format('woff'),
    url('../fonts/FrutigerLTStd-Roman.ttf') format('truetype');
}


@font-face
{
    font-family: 'HelveticaNeueCyr';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/HelveticaNeueCyr-Bold.woff2') format('woff2'),
    url('../fonts/HelveticaNeueCyr-Bold.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Bold.ttf') format('truetype');
}



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

    scroll-margin-top: 0;
}

*: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;
    width: auto;
    height: auto;
}

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
{
    --zero_px: calc(0 * 1px);
    --bg: #041531;
    --content_width: 1920px;
    --cont_padding: 15px;
    --cont_padding_double: calc(var(--cont_padding) * 2);
    --cont_padding_half: calc(var(--cont_padding) * .5);
    --scroll_width: 17px;
    --custom_scroll_width: 10px;
    --custom_scroll_height: 10px;
    --dark_color: #0b0f16;
    --light_color: #fff;
    --font_size: 27px;
    --font_size_title: 55px;
    --font_family: 'FrutigerLTStd', 'Arial', sans-serif;
    --font_family2: 'HelveticaNeueCyr', 'Arial', sans-serif;
    --font_family3: 'Montserrat', 'Arial', sans-serif;
}


::selection
{
    color: var(--light_color);
    background: var(--light_color);
}

::-moz-selection
{
    color: var(--light_color);
    background: var(--light_color);
}



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


html.custom_scroll ::-webkit-scrollbar
{
    width: var(--custom_scroll_width);
    height: var(--custom_scroll_height);

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


html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: var(--light_color);
}


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(--light_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: calc(var(--content_width) + var(--cont_padding_double));
    margin-inline: auto;
    padding-inline: var(--cont_padding);
}



img.cover
{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/*--------------
    Grid row
--------------*/
.grid_row
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-bottom: calc(var(--offset_v) * -1);
    margin-left: calc(var(--offset_h) * -1);

    --count_per_line: 3;
    --offset_h: var(--inner_gap);
    --offset_v: var(--inner_gap);
}


.grid_row > *
{
    width: calc(100% / var(--count_per_line) - var(--offset_h));
    margin-bottom: var(--offset_v);
    margin-left: var(--offset_h);
}



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

    width: 100%;
    padding-block: 40px;

    z-index: 9;
}


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



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

    gap: 48px;
}


header .menu_item .btn
{
    font-size: 30px;

    letter-spacing: .012em;
}


header .menu_item .btn:hover
{
    text-decoration: underline;
}



header .langs a
{
    text-decoration: none;

    color: currentColor;
}
header .langs a:hover
{
    text-decoration: underline;
}



/*-----------------
    Mob. header
-----------------*/
.mob_header
{
    position: absolute;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    padding-block: var(--cont_padding);

    z-index: 50;
}


.mob_header .cont
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}



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

    width: 40px;
    height: 40px;
}


.mob_header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 36px;
    height: 4px;

    transition: background .2s linear;

    background: currentColor;
}


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

    display: block;

    width: 100%;
    height: 100%;

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

    background: currentColor;
}


.mob_header .mob_menu_btn span:after
{
    top: 11px;
}


.mob_header .mob_menu_btn.active span
{
    background: transparent;
}


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

    transform: rotate(45deg);
}


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

    transform: rotate(-45deg);
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #fff;
    --form_focus_color: #fff;
    --form_error_color: red;
    --form_border_radius: 0;
    --form_bg_color: #fff;
    --form_placeholder_color: rgba(46,45,38,.5);
    --form_columns_offset: 40px;
    --form_line_offset: 35px;
    --form_input_height: 54px;
    --form_textarea_height: 133px;
    --form_input_padding_inline: 26px;
    --form_textarea_padding_block: 26px;
    --form_textarea_padding_inline: 26px;
}


.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 > *
{
    width: calc(50% - var(--form_columns_offset));
    margin-left: var(--form_columns_offset);
}


.form .line
{
    margin-bottom: var(--form_line_offset);
}


.form .field
{
    position: relative;
}


.form .input
{
    display: block;

    width: 100%;
    height: var(--form_input_height);
    padding-inline: var(--form_input_padding_inline);

    font-family: var(--font_family3);
    font-size: 16px;
    font-weight: 300;

    transition: border-color .2s linear;

    color: var(--dark_color);
    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    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: var(--form_textarea_height);
    padding-block: var(--form_textarea_padding_block);
    padding-inline: var(--form_textarea_padding_inline);

    font-family: var(--font_family3);
    font-size: 16px;
    font-weight: 300;

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

    color: var(--dark_color);
    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);

    --custom_scroll_width: 4px;
    --custom_scroll_height: 4px;
}


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


.form select
{
    display: none;
}


.form .nice-select
{
    position: relative;

    cursor: pointer;
}


.form .nice-select > .current,
.form .nice-select .multiple-options
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    height: var(--form_input_height);
    padding-inline: var(--form_input_padding_inline);

    font-family: var(--font_family3);
    font-size: 16px;
    font-weight: 300;

    cursor: pointer;
    transition: border-color .2s linear;

    color: var(--form_placeholder_color);
    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}


.form select.selected + .nice-select > .current,
.form select.selected + .nice-select .multiple-options
{
    color: var(--dark_color);
}


.form .nice-select > .current span
{
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}


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

    visibility: hidden;
    overflow: hidden;

    width: 100%;
    margin-top: 4px;
    padding-block: 8px;

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

    opacity: 0;
    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form .nice-select .list .option
{
    font-size: 16px;
    font-weight: 300;

    display: block;

    padding: 15px 27px;

    list-style-type: none;

    font-family: var(--font_family3);

    color: var(--dark_color);

    cursor: pointer;
}

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

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #f6f7f9;
}
.nice-select .option.selected {
    font-weight: bold;
}
.nice-select .option.disabled {
    background-color: transparent;
    color: #90a1b5;
    cursor: default;
}



.form select ~ .arr
{
    position: absolute;
    top: -10px;
    right: 20px;
    bottom: 0;

    display: block;

    width: 20px;
    height: 20px;
    margin-block: auto;

    z-index: 3;
    transition: .2s linear;
    transform: rotate(-45deg);
    pointer-events: none;

    border-bottom: 1px solid #ababaa;
    border-left: 1px solid #ababaa;
}


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

    transform: none;

    opacity: 1;
}


.form .nice-select.open ~ .arr
{
    top: 10px;

    transform: rotate(135deg);
}


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


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

.form p.error {
    color: var(--form_error_color);
    font-size: 14px;
    margin-top: 5px;
}


.form .submit_btn
{
    width: 340px;
    max-width: 100%;
    height: 50px;

    font-family: var(--font_family3);
    font-size: 18px;
    font-weight: 700;

    border-radius: 10px;
    background: url(../images/bg_btn.png) 50%/cover no-repeat;
}



/*-------------------
    First section
-------------------*/
.first_section
{
    position: sticky;
    top: var(--cont_padding);

    padding-bottom: 40px;
    /*min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;*/
}

.bottom_block .first_section
{
    display: block;
}

.first_section .cont
{
    display: flex;
    flex-direction: column;
}


.blocks .col:first-child .logo
{
    padding-left: var(--cont_padding);
}
.blocks .col:nth-child(2) .logo
{
    padding-right: var(--cont_padding);
}


.blocks .col .logo img
{
    display: block;
    width: 100%;
}


.blocks .mob_logo
{
    display: none;
}


.blocks .mob_logo img
{
    display: block;

    width: 100%;
}


.first_section .data
{
    width: 668px;
    max-width: calc(100% - 40px);
    margin-top: 100px;
}


.first_section .title
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 700;

    letter-spacing: .012em;
}


.first_section .desc
{
    margin-top: 28px;

    line-height: 1.5;

    letter-spacing: .012em;
}


.first_section .btn
{
    width: 485px;
    max-width: 100%;
    height: 55px;
    margin-top: 28px;

    font-weight: 700;

    border-radius: 10px;
    background: url(../images/bg_btn.png) 50%/cover no-repeat;
}



/*------------
    Blocks
------------*/
.blocks
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-top: var(--cont_padding);
}


.blocks > .col
{
    position: relative;
    z-index: 3;
}

.blocks > .col:first-child {
    width: 51.1%;
    flex: 0 0 51.1%;
}
.blocks > .col:nth-child(2) {
    width: 48.9%;
    flex: 0 0 48.9%;
}


.blocks .data
{
    display: flex;
    flex-direction: column;
}


.blocks > .bg
{
    position: fixed;
    inset: 0;

    display: block;

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



/*-------------------
    Our advantage
-------------------*/
.our_advantage
{
    padding-block: 0 40px;
}


.our_advantage .logo
{
    margin-bottom: 40px;
}


.our_advantage .image
{
    display: block;

    width: 100%;
    margin-bottom: 80px;
}


.our_advantage .image img
{
    display: block;

    width: 100%;
}


.our_advantage .title
{
    padding-inline: var(--cont_padding_double);

    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 700;

    letter-spacing: .012em;
}


.our_advantage .desc
{
    margin-top: 28px;
    padding-inline: var(--cont_padding_double);

    line-height: 1.5;

    letter-spacing: .012em;
}



/*----------------------
    How we serve you
----------------------*/
.how_we_serve_you
{
    padding-block: 40px;
}


.how_we_serve_you .bg
{
    padding-block: 40px;
    padding-inline: var(--cont_padding);

    color: var(--dark_color);
    background: var(--light_color);
}


.how_we_serve_you .title
{
    margin-bottom: 40px;

    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 700;

    letter-spacing: .012em;
}


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


.how_we_serve_you .col
{
    display: flex;
    flex-direction: column;

    width: calc(50% - var(--cont_padding));

    gap: 25px;
}


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


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

    width: 80px;
    height: 80px;
}


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

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


.how_we_serve_you .item .info
{
    display: flex;
    flex-direction: column;

    width: calc(100% - 102px);
    padding: 20px var(--cont_padding);

    border-radius: 10px;
    background: #dcdad6;

    gap: 25px;
}


.how_we_serve_you .item .name
{
    font-weight: 700;
}


.how_we_serve_you .item .desc
{
    font-size: 20px;
    line-height: 1.4;
}



/*--------------------
    How we operate
--------------------*/
.how_we_operate
{
    padding-block: 40px;
}


.how_we_operate .title
{
    padding-inline: var(--cont_padding_double);

    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 700;

    letter-spacing: .012em;
}


.how_we_operate .desc
{
    margin-top: 28px;
    padding-inline: var(--cont_padding_double);

    line-height: 1.6;

    letter-spacing: .012em;
}



/*--------------
    Projects
--------------*/
.projects
{
    padding-block: 40px;
}


.projects .title
{
    margin-bottom: 40px;
    padding-inline: var(--cont_padding_double);

    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 700;

    letter-spacing: .012em;
}


.projects .grid_row
{
    --offset_h: var(--zero_px);
    --offset_v: var(--zero_px);
}


.projects .item
{
    position: relative;

    display: block;

    text-decoration: none;

    color: currentColor;
}


.projects .item .thumb
{
    position: relative;

    display: block;

    width: 100%;
}


.projects .item .info
{
    position: absolute;
    inset: 0;

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

    padding: var(--cont_padding);

    font-family: var(--font_family3);
    font-size: 18px;
    font-weight: 700;

    transition: opacity .2s linear;
    text-align: center;

    opacity: 0;
    background: rgba(11,15,22, .8);

    gap: 4px;
}


.projects .item .info .name
{
    text-transform: uppercase;
}


.projects .item:hover .info
{
    opacity: 1;
}



/*------------------
    Bottom block
------------------*/
.bottom_block
{
    position: relative;

    padding-block: 40px 0;

    z-index: 3;
}



.bottom_block .logo
{
    margin-bottom: 40px;
}


.bottom_block .logo img
{
    display: block;

    width: 100%;
}



.bottom_block .order
{
    max-width: 750px;
    margin-left: 6.3%;
}



.bottom_block .image
{
    display: block;

    width: 100%;
}


.bottom_block .image img
{
    display: block;

    width: 100%;
}



.bottom_block .order .form
{
}


.bottom_block .order .form .title
{
    margin-bottom: 20px;

    font-family: var(--font_family2);
    font-size: 60px;
    font-weight: 700;
}


.bottom_block .order .form .desc
{
    margin-bottom: 36px;

    font-family: var(--font_family3);
    font-size: 24px;
    font-weight: 300;
}



/*------------
    Footer
------------*/
footer
{
    position: relative;

    padding-block: 20px 20px;

    z-index: 3;
}


.blocks footer .data
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}


.blocks footer .logo {
    padding: 0 !important;
    margin: 0;
    width: 100px;
}
.blocks footer .logo img
{
    display: block;

    width: 100px;
}



.blocks footer .info
{
    display: flex;
    flex-direction: column;

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



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

    font-family: var(--font_family3);
    font-size: 18px;
    font-weight: 300;
    line-height: 48px;

    gap: 48px;
}


footer .menu_item .btn:hover
{
    text-decoration: underline;
}



footer .text
{
    margin-top: 52px;

    font-family: var(--font_family3);
    font-size: 18px;
    font-weight: 300;

    text-align: right;
}



footer .bottom
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    width: 100%;
    margin-top: 28px;
    padding-top: 19px;

    font-family: var(--font_family3);
    font-size: 18px;
    font-weight: 500;

    border-top: 1px solid;
}


footer .email a
{
    white-space: nowrap;
    text-decoration: none;

    color: currentColor;
}
footer .email a:hover
{
    text-decoration: underline;
}

.image_mob {
    display: none;
}

.spec_field {
    display: none
}
.ajax_contener {
    position: relative;
}

@media print,
(max-width: 1899px)
{
    /*-------------------
        Global styles
    -------------------*/
    :root
    {
        --font_size: 22px;
        --font_size_title: 48px;
    }



    /*------------
        Header
    ------------*/
    header .menu_item .btn
    {
        font-size: 24px;
    }



    /*------------------
        Form elements
    ------------------*/
    .form
    {
        --form_columns_offset: 28px;
        --form_line_offset: 28px;
        --form_input_height: 52px;
        --form_textarea_height: 124px;
        --form_input_padding_inline: 19px;
        --form_textarea_padding_block: 19px;
        --form_textarea_padding_inline: 19px;
    }


    .form select ~ .arr
    {
        width: 18px;
        height: 18px;
    }


    .form .submit_btn
    {
        width: calc(50% - var(--form_columns_offset) * .5);
        height: 48px;
    }



    /*-----------------
        Main slider
    -----------------*/

    .first_section .desc
    {
        margin-top: 24px;
    }


    .first_section .btn
    {
        width: 400px;
        height: 52px;
        margin-top: 24px;
    }



    /*-------------------
        Our advantage
    -------------------*/
    .our_advantage .image
    {
        margin-bottom: 60px;
    }


    .our_advantage .desc
    {
        margin-top: 24px;
    }



    /*----------------------
        How we serve you
    ----------------------*/
    .how_we_serve_you .col
    {
        width: 100%;

        gap: 20px;
    }


    .how_we_serve_you .col + .col
    {
        margin-top: 20px;
    }


    .how_we_serve_you .item .desc
    {
        font-size: 18px;
    }



    /*--------------
        Projects
    --------------*/
    .projects .item .info
    {
        font-size: 16px;
    }



    /*------------------
        Bottom block
    ------------------*/

    .bottom_block .order .form .title
    {
        font-size: 52px;
    }


    .bottom_block .order .form .desc
    {
        margin-bottom: 32px;

        font-size: 20px;
    }



    /*------------
        Footer
    ------------*/
    footer
    {
        padding-block: 20px 120px;
    }


    .blocks footer .logo
    {
        width: 80px;
    }


    footer .info
    {
        width: calc(100% - 120px);
    }


    footer .menu
    {
        font-size: 15px;
        line-height: 40px;

        gap: 20px;
    }


    footer .text
    {
        margin-top: 40px;

        font-size: 15px;
    }


    footer .bottom
    {
        font-size: 15px;
    }
}


@media print,
(max-width: 1439px)
{
    /*-------------------
        Global styles
    -------------------*/
    :root
    {
        --font_size: 18px;
        --font_size_title: 40px;
    }



    /*------------
        Header
    ------------*/
    header
    {
        padding-block: 24px;
    }


    header .menu
    {
        gap: 40px;
    }


    header .menu_item .btn
    {
        font-size: 22px;
    }



    /*------------------
        Form elements
    ------------------*/
    .form
    {
        --form_columns_offset: 24px;
        --form_line_offset: 24px;
        --form_input_height: 48px;
        --form_textarea_height: 120px;
    }


    .form select ~ .arr
    {
        width: 16px;
        height: 16px;
    }



    /*-------------------
        First section
    -------------------*/
    .first_section .data
    {
        margin-top: 60px;
    }


    .first_section .btn
    {
        width: 340px;
        height: 48px;
    }



    /*------------------
        Bottom block
    ------------------*/

    .bottom_block .order .form .title
    {
        font-size: 48px;
    }


    .bottom_block .order .form .desc
    {
        margin-bottom: 28px;

        font-size: var(--font_size);
    }



    /*------------
        Footer
    ------------*/
    footer
    {
        padding-block: 20px 80px;
    }


    .blocks footer .logo
    {
        width: 68px;
    }


    .blocks footer .info
    {
        width: calc(100% - 108px);
    }


    footer .menu
    {
        font-size: 13px;
        line-height: 20px;
        gap: 15px;
    }


    footer .text
    {
        margin-top: 28px;

        font-size: 14px;
    }


    footer .bottom
    {
        font-size: 14px;
    }
}


@media print,
(max-width: 1279px)
{
    /*-------------------
        Global styles
    -------------------*/
    :root
    {
        --custom_scroll_width: 5px;
        --custom_scroll_height: 5px;
        --font_size: 16px;
        --font_size_title: 36px;
    }



    /*------------
        Header
    ------------*/
    header .menu_item .btn
    {
        font-size: 20px;
    }



    /*------------------
        Form elements
    ------------------*/
    .form
    {
        --form_columns_offset: 20px;
        --form_line_offset: 20px;
    }


    .form select ~ .arr
    {
        width: 14px;
        height: 14px;
    }


    .form .submit_btn
    {
        font-size: var(--font_size);
    }



    /*-------------------
        First section
    -------------------*/
    .first_section .data
    {
        margin-top: 80px;
    }


    .first_section .btn
    {
        width: 308px;
    }



    /*----------------------
        How we serve you
    ----------------------*/
    .how_we_serve_you .item .icon
    {
        width: 60px;
        height: 60px;
    }


    .how_we_serve_you .item .info
    {
        width: calc(100% - 88px);

        gap: 20px;
    }


    .how_we_serve_you .item .desc
    {
        font-size: var(--font_size);
    }



    /*--------------
        Projects
    --------------*/
    .projects .item .info
    {
        font-size: 14px;
    }



    /*------------------
        Bottom block
    ------------------*/
    .bottom_block .order {
        margin-left: 0;
    }

    .bottom_block .order .form .title
    {
        font-size: 40px;
    }


    .bottom_block .order .form .desc
    {
        margin-bottom: 24px;
    }



    /*------------
        Footer
    ------------*/
    footer
    {
        padding-block: 20px 60px;
    }


    .blocks footer .logo
    {
        width: 60px;
    }


    .blocks footer .info
    {
        width: calc(100% - 80px);
    }


    footer .menu
    {
        font-size: 11px;
        line-height: 32px;

        gap: 12px;
    }


    footer .text
    {
        margin-top: 24px;

        font-size: 11px;
    }


    footer .bottom
    {
        font-size: 11px;
    }
}

@media print,
(max-width: 1023px)
{
    /*------------
        Header
    ------------*/
    header
    {
        position: absolute;
    }


    header .menu
    {
        gap: 24px;
    }


    header .menu_item .btn
    {
        font-size: 16px;
    }



    /*------------
        Blocks
    ------------*/
    .blocks
    {
        padding-top: 80px;
    }


    .blocks > .col
    {
        width: 100% !important;
        flex: 0 0 100% !important;
    }




    /*-------------------
        First section
    -------------------*/
    .first_section
    {
        padding-bottom: 80px;
        min-height: 0;
    }


    .first_section .logo
    {
        display: none;
    }


    .first_section .mob_logo
    {
        display: block;
    }


    .first_section .data
    {
        width: 100%;
        max-width: 100%;
        margin-top: 60px;
    }


    .first_section .title
    {
        text-align: center;
    }


    .first_section .btn
    {
        display: block;

        width: 300px;
        margin-inline: auto;
    }



    /*------------
        Blocks
    ------------*/
    .blocks .data
    {
        width: 100%;
    }



    /*-------------------
        Our advantage
    -------------------*/
    .our_advantage
    {
        padding-block: 0 40px;
    }


    .our_advantage .cont
    {
        padding: 0;
    }


    .our_advantage .logo
    {
        display: none;
    }


    .our_advantage .image
    {
        margin-bottom: 48px;
    }


    .our_advantage .title
    {
        text-align: center;
    }



    /*----------------------
        How we serve you
    ----------------------*/
    .how_we_serve_you .cont
    {
        padding: 0;
    }


    .how_we_serve_you .title
    {
        margin-bottom: 32px;

        text-align: center;
    }



    /*--------------------
        How we operate
    --------------------*/
    .how_we_operate .title
    {
        text-align: center;
    }



    /*--------------
        Projects
    --------------*/
    .projects .cont
    {
        padding: 0;
    }


    .projects .title
    {
        margin-bottom: 32px;
        padding-inline: var(--cont_padding);

        text-align: center;
    }



    /*------------------
        Bottom block
    ------------------*/
    .bottom_block {
        flex-direction: column-reverse;
        padding-top: 40px;
    }

    .bottom_block .order {
        margin-top: 60px;
    }

    .bottom_block .order .image
    {
        width: calc(100% + var(--cont_padding_double));
        margin-inline: calc(var(--cont_padding) * -1);
        margin-bottom: 40px;
    }

    .bottom_block .col:first-child > .logo {
        display: none;
    }

    .bottom_block .order .form
    {
        width: 100%;
    }


    .bottom_block .order .form .title
    {
        font-size: 36px;

        text-align: center;
    }


    .bottom_block .order .form .desc
    {
        text-align: center;
    }

    .bottom_block .image {
        display: none;
    }

    .bottom_block .image_mob {
        display: block;
        margin: 60px calc(var(--cont_padding) * -1) 0;
    }
    .bottom_block .image_mob img {
        width: 100%;
    }



    /*------------
        Footer
    ------------*/
    footer
    {
        padding-block: 40px;
    }


    footer .data
    {
        width: 100%;
    }


    footer .menu
    {
        font-size: 12px;

        gap: 20px;
    }


    footer .text
    {
        margin-top: 20px;

        font-size: 12px;
    }


    footer .bottom
    {
        font-size: 12px;
    }
}

@media (max-width: 767px)
{
    /*-------------------
        Global styles
    -------------------*/
    :root
    {
        --font_size: 15px;
        --font_size_title: 32px;
    }



    /*------------------
        Form elements
    ------------------*/
    .form
    {
        --form_input_padding_inline: 15px;
        --form_textarea_padding_block: 15px;
        --form_textarea_padding_inline: 15px;
        --form_input_height: 40px;
        --form_textarea_height: 100px;
    }


    .form select ~ .arr
    {
        top: -8px;
        right: 16px;

        width: 12px;
        height: 12px;
    }


    .form .nice-select.open ~ .arr
    {
        top: 8px;
    }


    .form .submit_btn
    {
        height: 40px;
    }



    /*------------
        Header
    ------------*/
    header
    {
        position: fixed;
        top: 0;
        left: 100%;

        width: 100%;
        height: 100%;
        min-height: -moz-available;
        min-height: -webkit-fill-available;
        min-height:         fill-available;
        margin: 0;
        padding-block: 88px var(--cont_padding_double);

        z-index: 40;
        transition: transform .3s linear;

        background: url(../images/bg_first_section.jpg) 50%/cover no-repeat;
    }


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


    header .menu
    {
        flex-direction: column;

        width: 100%;

        text-align: center;
        gap: 30px;
    }


    header .menu_item
    {
        width: 100%;
    }

    header .menu_item .btn {
        font-size: 30px;
    }


    header .langs
    {
        width: 100%;
        margin-top: 60px;
        font-size: 20px;

        text-align: center;
    }



    /*-----------------
        Mob. header
    -----------------*/
    .mob_header
    {
        display: block;
    }



    /*-------------------
        First section
    -------------------*/
    .first_section
    {
        padding-bottom: 60px;
    }


    .first_section .data
    {
        margin-top: 52px;
    }



    /*-------------------
        Our advantage
    -------------------*/
    .our_advantage
    {
        padding-block: 0 30px;
    }


    .our_advantage .image
    {
        margin-bottom: 40px;
    }



    /*----------------------
        How we serve you
    ----------------------*/
    .how_we_serve_you
    {
        padding-block: 30px;
    }


    .how_we_serve_you .title
    {
        margin-bottom: 24px;
    }


    .how_we_serve_you .item .icon
    {
        width: 56px;
        height: 56px;
    }


    .how_we_serve_you .item .info
    {
        width: calc(100% - 80px);

        gap: 16px;
    }



    /*--------------------
        How we operate
    --------------------*/
    .how_we_operate
    {
        padding-block: 30px;
    }


    .how_we_operate .desc
    {
        margin-top: 24px;
        padding-inline: var(--cont_padding);
    }



    /*--------------
        Projects
    --------------*/
    .projects
    {
        padding-block: 30px;
    }


    .projects .title
    {
        margin-bottom: 24px;
    }


    .projects .item .info
    {
        font-size: 12px;
    }



    /*------------------
        Bottom block
    ------------------*/
    .bottom_block
    {
        padding-block: 30px 0;
    }


    .bottom_block .logo
    {
        margin-bottom: 30px;
    }


    .bottom_block .order .form .title
    {
        font-size: 32px;
    }



    /*------------
        Footer
    ------------*/
    footer
    {
        padding-block: 0 30px;
    }


    .blocks footer .data
    {
        align-content: flex-start;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .blocks footer .logo
    {
        margin-bottom: 40px;
        width: 115px;
    }


    .blocks footer .logo img
    {
        margin-inline: auto;
    }


    footer .info
    {
        width: 100%;
    }


    footer .menu
    {
        justify-content: space-between;

        gap: 0;
        font-size: 16px;
    }


    footer .text
    {
        text-align: center;
        font-size: 14px;
    }
}

@media (max-width: 479px)
{
    /*------------------
        Form elements
    ------------------*/
    .form .columns > *
    {
        width: calc(100% - var(--form_columns_offset));
    }


    .form .submit_btn
    {
        display: block;

        margin-inline: auto;
    }



    /*-------------------
        First section
    -------------------*/
    .first_section .btn
    {
        width: 260px;
        height: 40px;
    }



    /*--------------
        Projects
    --------------*/
    .projects .grid_row
    {
        --count_per_line: 2;
    }


    .projects .item .info
    {
        font-size: 14px;
    }



    /*------------------
        Bottom block
    ------------------*/
    .bottom_block .order .form .title
    {
        font-size: 28px;
    }



    /*------------
        Footer
    ------------*/
    footer .menu
    {
        align-content: center;
        align-items: center;
        flex-direction: column;

        text-align: center;
    }


    footer .bottom
    {
        align-content: center;
        align-items: center;
        flex-direction: column;

        text-align: center;

        gap: 12px;
    }
}
