/* For old browsers */
@supports (not(--css: variables))
{
    .supports_error
    {
        display: flex !important;
    }
}

/* For IE */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none)
{
    .supports_error
    {
        display: flex !important;
    }
}



/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;

    overscroll-behavior-y: contain;
    -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: #252525;
    --font_size: 16px;
    --font_family: 'Inter', 'MS Sans Serif', sans-serif;
    --font_family2: 'Arimo', 'MS Sans Serif', sans-serif;
}



::selection
{
    color: #fff;

    background: #ef7800;
}

::-moz-selection
{
    color: #fff;

    background: #ef7800;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}



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: #ccc;
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #ef7800;
}

html.custom_scroll
{
    scrollbar-color: #ef7800 #ccc;
    scrollbar-width: thin;
}


body
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}

body.lock
{
    overflow: hidden;

    padding-right: var(--scroll_width);
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    position: relative;
    z-index: 9;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-width: 375px;
    min-height: 100%;

    transition: background .3s linear;

    background: var(--bg);
}

.wrap.green
{
    background: #eff7ea;
}

.wrap.blue
{
    background: #ebf5ff;
}

.wrap.orange
{
    background: #fff3eb;
}


.main
{
    display: flex;
    flex-direction: column;

    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    margin: 0 auto;
    padding: 0 72px;
}


.lazyload
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lazyload.loaded
{
    opacity: 1;
}


.row
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



.supports_error
{
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.supports_error.show
{
    display: flex;
}



/*---------------
    Keyframes
---------------*/
@keyframes videoShow
{
    0%
    {
        opacity: 0;
    }
}


@keyframes videoHide
{
    0%
    {
        opacity: 1;
    }
}


@keyframes categoriesShow
{
    0%
    {
        transform: translateY(100%);

        opacity: 0;
    }
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #e0e0e0;
    --form_hover_color: var(--text_color);
    --form_focus_color: #ef7800;
    --form_error_color: red;
    --form_border_radius: 2px;
    --form_bg_color: #fff;
    --form_placeholder_color: #828282;
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .columns
{
    display: flex;

    margin-left: calc(var(--form_columns_offset) * -1);

    --form_columns_offset: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.form .columns > *
{
    width: calc(50% - var(--form_columns_offset));
    margin-left: var(--form_columns_offset);
}


.form .line
{
    margin-bottom: 30px;
}


.form .field
{
    position: relative;
}


.form .input
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 19px;

    display: block;

    width: 100%;
    height: 70px;
    padding: 0 19px;

    transition: border-color .2s linear;

    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 .input[readonly]
{
    padding-right: 63px;

    cursor: pointer;
    user-select: none;
    text-overflow: ellipsis;
}


.form textarea
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 19px;
    line-height: 28px;

    display: block;

    width: 100%;
    height: 140px;
    padding: 19px;

    resize: none;
    transition: border-color .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form textarea::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}


.form .drop_arrow
{
    position: absolute;
    z-index: 3;
    top: 0;
    right: 23px;
    bottom: 0;

    width: 12px;
    height: 7px;
    margin: auto;

    transition: transform .2s linear;
    pointer-events: none;

    border-top: 7px solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}

.form .dropdown_open .drop_arrow
{
    transform: rotate(180deg);
}


.form .dropdown
{
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;

    visibility: hidden;

    width: 100%;

    transition: .15s ease-in;
    transition-property: transform, visibility, opacity;
    transform: translate(0, 10px);
    pointer-events: none;

    opacity: 0;
    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: #fff;
}

.form .dropdown_open .dropdown
{
    visibility: visible;

    transform: translate(0, 0);
    pointer-events: all;

    opacity: 1;
}


.form .dropdown .value
{
    color: var(--text_color);

    display: block;

    width: 100%;
    padding: 10px 19px;

    cursor: pointer;
    user-select: none;
    transition: background .2s linear;
    text-align: left;

    border: none;
    background: transparent;
}

.form .dropdown .value:hover,
.form .dropdown .value:focus
{
    background: #fff4ea;
}

.form .dropdown .value.selected,
.form .dropdown .value.selected:hover
{
    background: #fce4cc;
}


.form .input:hover,
.form textarea:hover
{
    border-color: var(--form_hover_color);
}

.form .input:focus,
.form textarea:focus
{
    border-color: var(--form_focus_color);
}

.form .error
{
    border-color: var(--form_error_color);
}


.form .submit_btn
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 19px;
    line-height: 28px;

    position: relative;
    z-index: 3;

    display: block;

    width: 100%;
    padding: 19px;

    transition: color .2s linear, border-color .2s linear;
    letter-spacing: -1px;

    border: 1px solid #e0e0e0;
}

.form .submit_btn:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 0;
    height: 100%;

    content: '';
    transition: opacity .35s linear, width .35s linear;
    pointer-events: none;

    opacity: 0;
    background: #ef7800;
}


.form .submit_btn:hover
{
    color: #fff;

    border-color: #ef7800;
}

.form .submit_btn:hover:before
{
    width: 100%;

    opacity: 1;
}


.form .submit_btn:disabled
{
    color: #bdbdbd;

    cursor: not-allowed;

    border-color: #e0e0e0;
    background: #f2f2f2;
}

.form .submit_btn:disabled:before
{
    display: none;
}


.form .agree
{
    color: #5c5c5c;
    font-family: var(--font_family2);
    font-size: 15px;
    line-height: 22px;

    margin-top: 20px;

    text-align: center;
}


.form .agree a
{
    color: currentColor;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}


.form .agree span
{
    position: relative;

    display: block;
}

.form .agree span:before,
.form .agree span:after
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: #e0e0e0;
}

.form .agree span:after
{
    z-index: 2;

    width: 0;

    transition: width .3s linear;

    background: #ef7800;
}


.form .agree a:hover span:after
{
    width: 100%;
}



/*----------------
    Typography
----------------*/
.text_block
{
    color: #5c5c5c;
    font-family: var(--font_family2);
    font-size: 19px;
    line-height: 26px;
}


.text_block > *
{
    margin-bottom: 24px;
}


.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 24px;

    list-style-type: none;
}

.text_block ul li.mar_t
{
    margin-top: 24px;
}

.text_block ul li:before
{
    position: absolute;
    top: 10px;
    left: 0;

    display: block;

    width: 6px;
    height: 6px;

    content: '';

    border-radius: 50%;
    background: currentColor;
}



/*------------
    Header
------------*/
header .back_link a,
header .feedback_btn
{
    color: var(--text_color);
}




/*----------------
    Head block
----------------*/
.head_block .mask
{
    color: var(--bg) !important;
}



/*---------------
    Portfolio
---------------*/
.portfolio .row
{
    position: relative;

    margin-bottom: -68px;
    margin-left: -24px;
}

.portfolio .row > *
{
    width: calc(50% - 24px);
    margin-bottom: 68px;
    margin-left: 24px;
}


.portfolio .item
{
    color: var(--text_color);
    font-size: 15px;
    line-height: 21px;

    display: flex;

    text-decoration: none;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.portfolio .item .thumb
{
    position: relative;

    display: flex;
    overflow: hidden;

    width: 100%;
    padding-bottom: 58.36%;

    background: #ddd;

    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}


.portfolio .item .thumb img
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    min-width: 200px;
    height: 100%;
    min-height: 200px;
    margin: auto;

    border-radius: 5px;

    object-fit: cover;
    object-position: 50% 100%;
    filter: drop-shadow(0px 26px 64px rgba(8, 55, 82, .07));
}


.portfolio .item .info
{
    color: #bdbdbd;

    display: flex;

    width: 100%;
    margin-top: 19px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.portfolio .item .year
{
    width: 33.333%;
    padding-top: 20px;

    border-top: 1px solid #e0e0e0;
}

.portfolio .item .category
{
    width: 66.666%;
    padding-top: 19px;

    text-align: right;

    border-top: 1px solid #e0e0e0;
}


.portfolio .item .company
{
    color: #5c5c5c;

    width: 100%;
    margin-top: 30px;
}


.portfolio .item .name
{
    font-weight: bold;

    width: 100%;
    margin-top: 14px;
    margin-right: 86px;

    letter-spacing: -.5px;
}


.portfolio .item.big_w .year
{
    width: 224px;
}

.portfolio .item.big_w .category
{
    width: calc(100% - 248px);

    text-align: left;
}

.portfolio .item.big_w .company
{
    width: 224px;
}

.portfolio .item.big_w .name
{
    width: calc(100% - 248px);
    margin: 30px 0 0;
}



/*------------------
    Action block
------------------*/
.action_block
{
    margin-top: 100px;
}


.action_block .feedback_btn
{
    color: var(--text_color);
    font-size: 29px;
    font-weight: bold;
    line-height: 34px;

    position: relative;
    z-index: 3;

    display: flex;

    width: 100%;
    padding: 29px;

    transition: color .2s linear, border-color .2s linear;
    letter-spacing: -.01em;

    border: 1px solid #e0e0e0;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.action_block .feedback_btn:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 0;
    height: 100%;

    content: '';
    transition: opacity .35s linear, width .35s linear;
    pointer-events: none;

    opacity: 0;
    background: #ef7800;
}

.action_block .feedback_btn .icon
{
    display: block;

    width: 40px;
    height: 40px;
    margin-right: 30px;

    transition: filter .2s linear .2s;
}

.action_block .feedback_btn br
{
    display: none;
}


.action_block .feedback_btn:hover
{
    color: #fff;

    border-color: #ef7800;
}

.action_block .feedback_btn:hover:before
{
    width: 100%;

    opacity: 1;
}

.action_block .feedback_btn:hover .icon
{
    transition: filter .2s linear .1s;

    filter: brightness(0) invert(1);
}



/*-----------------
    About block
-----------------*/
.about_block
{
    margin-top: 192px;
}


.about_block .cont
{
    max-width: 1440px;
}


.about_block .logo img
{
    display: block;

    width: 635px;
    height: 336px;
}


.about_block .data
{
    width: 416px;
    max-width: 100%;
    margin-left: auto;
}


.about_block .title
{
    font-size: 58px;
    font-weight: 800;
    line-height: 80px;

    letter-spacing: -2px;
}

.about_block .desc
{
    color: #5c5c5c;
    font-size: 29px;
    line-height: 38px;

    margin-top: 32px;

    letter-spacing: -1px;
}


.about_block .link
{
    color: #ef7800;
    font-size: 46px;
    font-weight: 800;
    line-height: 54px;

    position: relative;

    display: inline-block;

    margin-top: 30px;
    padding-right: 40px;

    vertical-align: top;
    text-decoration: none;
    letter-spacing: -1px;
}


.about_block .link span
{
    position: relative;

    display: block;

    padding-bottom: 2px;
}

.about_block .link span:before,
.about_block .link span:after
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: #e0e0e0;
}

.about_block .link span:after
{
    z-index: 2;

    width: 0;

    transition: width .3s linear;

    background: currentColor;
}


.about_block .link .icon
{
    position: absolute;
    top: 0;
    right: 0;

    display: block;

    width: 30px;
    height: 30px;

    transition: transform .2s linear;
}


.about_block .link:hover span:after
{
    width: 100%;
}

.about_block .link:hover .icon
{
    transform: translate(4px, -4px);
}



/*---------------
    Case head
---------------*/
.case_head
{
    margin-bottom: 40px;
    padding-top: 149px;

    text-align: center;
}

.case_head.bg1
{
    background: #ebf5ff;
}

.case_head.bg2
{
    background: #ffebea;
}

.case_head.bg3
{
    background: #f8fdf6;
}

.case_head.bg4
{
    background: #f4f4ff;
}


.case_head .pre_title
{
    color: #5c5c5c;
    font-size: 29px;
    line-height: 38px;

    margin-bottom: 30px;

    letter-spacing: -1px;
}


.case_head .title
{
    font-size: 70px;
    font-weight: 800;
    line-height: 80px;

    margin-bottom: 48px;

    letter-spacing: -2px;

    font-feature-settings: 'ss01' on;
}


.case_head img
{
    display: block;

    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}



/*---------------
    Case data
---------------*/
.case_data .info
{
    color: #bdbdbd;
    font-size: 15px;
    line-height: 21px;

    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.case_data .year
{
    width: 306px;
    max-width: 100%;
    padding-bottom: 29px;

    border-bottom: 1px solid #e0e0e0;
}


.case_data .category
{
    width: calc(100% - 330px);
    padding-bottom: 29px;

    border-bottom: 1px solid #e0e0e0;
}



.case_data .info_block
{
    margin-top: 100px;
}


.case_data .info_block .head
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.case_data .info_block .title
{
    font-size: 29px;
    font-weight: 700;
    line-height: 36px;

    width: 306px;
    max-width: 100%;

    letter-spacing: -1px;
}


.case_data .info_block .desc
{
    color: #5c5c5c;
    font-size: 24px;
    line-height: 34px;

    width: calc(100% - 330px);
    margin-left: auto;

    letter-spacing: -.5px;
}

.case_data .info_block .desc div
{
    width: 746px;
    max-width: 100%;
}

.case_data .info_block .desc div.big_w
{
    width: 855px;
}


.case_data .info_block .images
{
    display: flex;

    margin-top: 100px;
    margin-bottom: -24px;
    margin-left: -24px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.case_data .info_block .images.full_w
{
    width: calc(100% + 168px);
    margin-right: -72px;
    margin-left: -96px;
}


.case_data .info_block .image
{
    width: calc(50% - 24px);
    margin-bottom: 24px;
    margin-left: 24px;
}

.case_data .info_block .image.full_w
{
    width: calc(100% - 24px);
}

.case_data .info_block .image img
{
    display: block;

    width: 100%;
}



.case_data .links
{
    display: flex;

    margin-top: 50px;
    margin-bottom: -50px;
    margin-left: -24px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.case_data .links > *
{
    width: calc(50% - 24px);
    margin-bottom: 50px;
    margin-left: 24px;
}


.case_data .links .name
{
    color: #5c5c5c;
    font-size: 15px;
    line-height: 21px;

    margin-bottom: 16px;
}


.case_data .links a
{
    color: var(--text_color);
    font-size: 29px;
    font-weight: 700;
    line-height: 34px;

    position: relative;
    z-index: 3;

    display: flex;

    padding: 32px;

    transition: color .2s linear, border-color .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: -1px;

    border: 1px solid #e0e0e0;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.case_data .links a:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 0;
    height: 100%;

    content: '';
    transition: opacity .35s linear, width .35s linear;
    pointer-events: none;

    opacity: 0;
    background: #ef7800;
}

.case_data .links .icon
{
    color: #ef7800;

    display: block;

    width: 30px;
    height: 30px;
    margin-left: 16px;

    transition: color .2s linear .1s, transform .2s linear .1s;
}


.case_data .links a:hover
{
    color: #fff;

    border-color: #ef7800;
}

.case_data .links a:hover:before
{
    width: 100%;

    opacity: 1;
}

.case_data .links a:hover .icon
{
    color: #fff;

    transition: color .2s linear .2s, transform .2s linear .2s;
    transform: translate(4px, -4px);
}



/*---------------
    Next case
---------------*/
.next_case
{
    margin-top: 230px;
}


.next_case .link
{
    color: #fff;

    position: relative;
    z-index: 3;

    display: block;

    padding-top: 199px;

    text-align: center;
    text-decoration: none;
}


.next_case .next
{
    color: #ededed;

    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;

    transition: color .2s linear, transform .2s linear;
}

.next_case .link:hover .next
{
    color: #ef7800;

    transform: translateY(-30px);
}


.next_case .data
{
    position: relative;
    z-index: 3;

    overflow: hidden;

    height: 729px;
    padding: 106px 64px;

    text-align: center;

    background: #ddd;
}


.next_case .company
{
    font-size: 29px;
    line-height: 38px;

    position: relative;
    z-index: 1;

    width: 856px;
    max-width: 100%;
    margin: 0 auto;

    letter-spacing: -1px;
}


.next_case .name
{
    font-size: 70px;
    font-weight: 800;
    line-height: 80px;

    position: relative;
    z-index: 1;

    width: 856px;
    max-width: 100%;
    margin: 120px auto 0;

    letter-spacing: -3px;

    font-feature-settings: 'ss01' on;
}


.next_case .thumb
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/*--------------------
    Privacy policy
--------------------*/
.privacy_policy
{
    padding-top: 149px;
    padding-bottom: 65px;
}


.privacy_policy .page_title
{
    font-size: 70px;
    font-weight: 800;
    line-height: 80px;

    margin-bottom: 132px;

    text-align: center;
    letter-spacing: -2px;

    font-feature-settings: 'ss01' on;
}


.privacy_policy .data
{
    width: 1074px;
    max-width: 100%;
    margin: 0 auto;
}


.privacy_policy .section
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.privacy_policy .section + .section
{
    margin-top: 60px;
}


.privacy_policy .title
{
    font-size: 29px;
    font-weight: 700;
    line-height: 36px;

    display: block;

    width: 306px;
    max-width: 100%;

    letter-spacing: -1px;
}

.privacy_policy .text_block
{
    width: calc(100% - 330px);
    margin-left: auto;
}



/*------------
    Footer
------------*/
footer
{
    margin-top: 208px;
    padding-bottom: 38px;
}



footer .top
{
    margin-bottom: 132px;
}

footer .top .row
{
    width: 75%;
    max-width: 100%;
    margin-left: auto;

    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}


footer .bottom
{
    margin-top: 148px;
}



footer .email
{
    margin-right: 40px;
}


footer .email a
{
    color: var(--text_color);
    font-size: 29px;
    font-weight: bold;
    line-height: 34px;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: -1px;
}


footer .email a span
{
    position: relative;

    display: block;
}

footer .email a span:before,
footer .email a span:after
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: #e0e0e0;
}

footer .email a span:after
{
    z-index: 2;

    width: 0;

    transition: width .3s linear;

    background: #ef7800;
}


footer .email a:hover span:after
{
    width: 100%;
}



footer .feedback_btn
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 19px;
    line-height: 28px;

    position: relative;
    z-index: 3;

    display: flex;

    width: calc(66.666% - 12px);
    max-width: 100%;
    padding: 14px 23px;

    transition: color .2s linear, border-color .2s linear;

    border: 1px solid #e0e0e0;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .feedback_btn:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 0;
    height: 100%;

    content: '';
    transition: opacity .35s linear, width .35s linear;
    pointer-events: none;

    opacity: 0;
    background: #ef7800;
}

footer .feedback_btn .icon
{
    display: block;

    width: 40px;
    height: 40px;
    margin-right: 48px;

    transition: filter .2s linear .2s;
}

footer .feedback_btn .arrow
{
    color: var(--text_color);

    display: block;

    width: 24px;
    height: 24px;
    margin-left: auto;

    transition: color .2s linear, transform .2s linear;
}


footer .feedback_btn:hover
{
    color: #fff;

    border-color: #ef7800;
}

footer .feedback_btn:hover:before
{
    width: 100%;

    opacity: 1;
}

footer .feedback_btn:hover .icon
{
    transition: filter .2s linear;

    filter: brightness(0) invert(1);
}

footer .feedback_btn:hover .arrow
{
    color: currentColor;

    transition: color .2s linear .09s, transform .2s linear .09s;
    transform: translate(4px, -4px);
}



footer .logo img
{
    display: block;

    width: 65px;
    height: 31px;
}



footer .socials
{
    margin-top: 45px;
}

footer .socials > * + *
{
    margin-top: 30px;
}


footer .socials a
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 19px;
    line-height: 26px;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}


footer .socials span
{
    position: relative;

    display: block;
}

footer .socials span:before,
footer .socials span:after
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: #e0e0e0;
}

footer .socials span:after
{
    z-index: 2;

    width: 0;

    transition: width .3s linear;

    background: #ef7800;
}


footer .socials a:hover span:after
{
    width: 100%;
}


footer .contacts_wrap
{
    width: 75%;
    max-width: 100%;
    margin-left: auto;
}

footer .contacts_wrap .row
{
    margin-bottom: -98px;
    margin-left: -24px;
}

footer .contacts_wrap .row > *
{
    width: calc(33.333% - 24px);
    margin-bottom: 98px;
    margin-left: 24px;
}


footer .contacts .country
{
    font-size: 29px;
    font-weight: bold;
    line-height: 36px;

    margin-bottom: 30px;

    letter-spacing: -1px;
}


footer .contacts .city
{
    font-family: var(--font_family2);
    font-size: 19px;
    line-height: 26px;
}


footer .contacts .phone
{
    margin-top: 10px;
}

footer .contacts .phone a
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 19px;
    line-height: 26px;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}


footer .contacts .phone span
{
    position: relative;

    display: block;
}

footer .contacts .phone span:before,
footer .contacts .phone span:after
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: #e0e0e0;
}

footer .contacts .phone span:after
{
    z-index: 2;

    width: 0;

    transition: width .3s linear;

    background: #ef7800;
}


footer .contacts .phone a:hover span:after
{
    width: 100%;
}



footer .copyright
{
    color: #5c5c5c;
    font-family: var(--font_family2);
    font-size: 15px;
    line-height: 21px;
}



footer .links
{
    color: #5c5c5c;
    font-family: var(--font_family2);
    font-size: 15px;
    line-height: 21px;

    margin-left: auto;
}

footer .links > * + *
{
    margin-left: 40px;
}

footer .links a
{
    color: currentColor;

    transition: opacity .2s linear;
    text-decoration: none;

    opacity: .7;
}

footer .links a:hover
{
    opacity: 1;
}



/*-----------
    Modal
-----------*/
.modal
{
    position: fixed;
    z-index: 250;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;

    width: 100%;
    padding: 40px;

    transition: .2s linear;
    transition-property: opacity, visibility, transform;
    transform: translate(0, 5%);
    pointer-events: none;

    opacity: 0;
    background: rgba(255, 255, 255, .98);

    justify-content: center;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.lock .modal
{
    width: calc(100% - var(--scroll_width));
}


.modal.open
{
    visibility: visible;

    transform: translate(0, 0);
    pointer-events: auto;

    opacity: 1;
}


.modal_data
{
    position: relative;

    width: 1200px;
    max-width: 100%;
    margin: auto;
}


.modal .close_btn
{
    position: absolute;
    top: 10px;
    right: 0;

    display: block;

    width: 32px;
    height: 32px;
}

.modal .close_btn:before,
.modal .close_btn:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 44px;
    height: 2px;
    margin-top: -1px;
    margin-left: -22px;

    content: '';
    transition: background .2s linear;

    background: #ef7800;
}

.modal .close_btn:before
{
    transform: rotate(45deg);
}

.modal .close_btn:after
{
    transform: rotate(-45deg);
}

.modal .close_btn:hover:before,
.modal .close_btn:hover:after
{
    background: var(--text_color);
}


.modal_title
{
    font-size: 46px;
    font-weight: 800;
    line-height: 52px;

    margin-bottom: 76px;

    letter-spacing: -1px;
}


.modal .text
{
    font-size: 29px;
    line-height: 42px;

    width: 600px;
    max-width: 100%;

    letter-spacing: -1px;
}


.modal .contacts
{
    margin-left: auto;
}


.modal .contacts .email
{
    font-size: 29px;
    font-weight: 700;
    line-height: 34px;

    letter-spacing: -1px;
}


.modal .contacts .email a
{
    color: currentColor;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}


.modal .contacts .email a span
{
    position: relative;

    display: block;
}

.modal .contacts .email a span:before,
.modal .contacts .email a span:after
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: #e0e0e0;
}

.modal .contacts .email a span:after
{
    z-index: 2;

    width: 0;

    transition: width .3s linear;

    background: #ef7800;
}


.modal .contacts .email a:hover span:after
{
    width: 100%;
}



.modal .contacts .links
{
    display: flex;

    margin-top: 56px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.modal .contacts .links > * + *
{
    margin-left: 30px;
}


.modal .contacts .links a
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 19px;
    line-height: 28px;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}


.modal .contacts .links span
{
    position: relative;

    display: block;
}

.modal .contacts .links span:before,
.modal .contacts .links span:after
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: #e0e0e0;
}

.modal .contacts .links span:after
{
    z-index: 2;

    width: 0;

    transition: width .3s linear;

    background: #ef7800;
}


.modal .contacts .links a:hover span:after
{
    width: 100%;
}


.modal .form
{
    margin-top: 100px;
}



#success_modal .icon
{
    display: block;

    width: 62px;
    height: 61px;
    margin: 0 auto 40px;
}


#success_modal .title
{
    color: #ef7800;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;

    text-align: center;
    letter-spacing: -1px;
}
