/* 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;
    }
}



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

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

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

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

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

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



/*------------------
    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;

    -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;
}

: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: #fdfdfd;
    --sidebar_width: 254px;
    --scroll_width: 17px;
    --text_color: #003;
    --font_size: 16px;
    --font_size_title: 42px;
    --font_family: 'UniNeue', 'Arial', sans-serif;
}


::selection
{
    color: #fff;

    background: #009bc6;
}

::-moz-selection
{
    color: #fff;

    background: #009bc6;
}


.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: #009bc6;
}

html.custom_scroll
{
    scrollbar-color: #009bc6 #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
{
    position: fixed;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;
}


button
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    cursor: pointer;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

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

    min-width: 360px;
    min-height: 100%;

    background: var(--bg);
}


.main
{
    flex: 1 0 auto;
}


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


.compensate-for-scrollbar
{
    margin-right: var(--scroll_width) !important;
}


.lozad
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.row
{
    display: flex;

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



.content_flex.row,
.content_flex > .cont.row
{
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.content_flex .content
{
    position: relative;

    width: calc(100% - var(--sidebar_width) - 32px);
}

.content_flex .content > :first-child
{
    margin-top: 0;
}

.content_flex .content > :last-child
{
    margin-bottom: 0;
}



.block
{
    margin-bottom: 50px;
}

.block.bg
{
    padding: 50px 0;

    background: #fff;
}

.block.no_margin
{
    margin-bottom: 0 !important;
}

.block.big_margin
{
    margin-bottom: 95px;
}



.owl-carousel
{
    font-size: 0;

    display: block;

    white-space: nowrap;
}

.owl-carousel.owl-loaded .slide
{
    display: block;

    width: auto !important;
}

.owl-carousel .owl-item,
.owl-carousel .slide
{
    font-size: var(--font_size);

    display: inline-block;

    vertical-align: top;
    white-space: normal;
}

.owl-carousel .slide .lozad
{
    transition: .2s linear;
}



.modal_cont
{
    position: relative;
}

.mini_modal_link
{
    display: inline-block;

    vertical-align: top;
}

.mini_modal
{
    position: absolute;
    z-index: 100;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;

    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
}

.mini_modal.active
{
    top: 100%;

    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}



.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;
}



.overlay
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .95;
    background: #fff;
}



.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;
}



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

    width: 100%;

    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}



header .info
{
    padding: 18px 0 10px;
}

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



header .logo
{
    margin-right: 64px;
}

header .logo a,
header .logo img
{
    display: block;
}



header .slogan
{
    font-size: 15px;
    line-height: 20px;
}



header .phone
{
    color: #4f4f4f;
    font-size: 15px;
    line-height: 20px;

    margin-right: auto;
    margin-left: 70px;
}

header .phone .number
{
    color: currentColor;
    font-size: 21px;
    font-weight: bold;
    line-height: 30px;

    display: inline-block;

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

header .phone .number + *
{
    margin-top: -3px;
}



header .order_btn
{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;

    display: flex;

    width: 216px;
    height: 54px;
    margin-right: 48px;
    padding: 0 15px;

    border-radius: 4px;
    background: #009bc6;

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

header .order_btn .icon
{
    display: block;

    width: 27px;
    height: 27px;
    margin-right: 22px;

    fill: currentColor;
}



header .account
{
    margin-right: 42px;
}

header .account > .btn
{
    color: currentColor;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;

    position: relative;

    display: flex;

    width: 145px;
    height: 54px;
    padding: 0 15px;

    transition: .2s linear;

    border: 1px solid #bdbdbd;
    border-radius: 4px;

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

header .account > .btn .icon
{
    display: block;

    width: 22px;
    height: 21px;
    margin-right: 18px;

    fill: currentColor;
}

header .account > .btn:hover
{
    color: #fff;

    border-color: #009bc6;
    background: #009bc6;
}

header .account > .btn.active
{
    z-index: 102;

    border-color: transparent;
}


header .account .mini_modal
{
    z-index: 101;
    top: 0;
    right: 0;
    left: auto;

    width: 409px;
    padding: 77px 32px 32px;

    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}

header .account .mini_modal .title
{
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;

    margin-bottom: 13px;
}

header .account .mini_modal .form .submit
{
    padding-top: 4px;
    padding-left: var(--form_label_width);
}


header .account .mini_modal .contacts
{
    color: #333;
    font-size: 15px;
    line-height: 136%;

    margin-top: 18px;
}

header .account .mini_modal .contacts .number
{
    color: var(--text_color);
    font-weight: bold;

    white-space: nowrap;
    text-decoration: none;
}

header .account .mini_modal .contacts .email
{
    color: var(--text_color);

    white-space: nowrap;
}

header .account .mini_modal .contacts .email:hover
{
    text-decoration: none;
}

header .account .mini_modal .bottom
{
    color: #333;
    font-size: 15px;
    line-height: 20px;

    display: flex;

    margin-top: 18px;

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

header .account .mini_modal .bottom .btn
{
    color: #007394;
    font-size: 22px;
    line-height: 32px;

    transition: border-color .2s linear;

    border-bottom: 1px dashed;
}

header .account .mini_modal .bottom .btn:hover
{
    border-color: transparent;
}


header .search
{
    margin-right: 42px;
}

header .search .btn
{
    color: #007394;

    display: flex;

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

header .search .btn .icon
{
    display: block;

    width: 20px;
    height: 20px;

    fill: currentColor;
}



header .burger_menu .btn
{
    color: currentColor;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;

    position: relative;

    display: flex;

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

header .burger_menu .btn .icon
{
    position: relative;

    width: 24px;
    height: 3px;
    margin-left: 19px;

    transition: background .2s linear;

    border-radius: 2px;
    background: #003;
}

header .burger_menu .btn .icon:before,
header .burger_menu .btn .icon:after
{
    position: absolute;
    top: -8px;

    display: block;

    width: 100%;
    height: 100%;

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

    border-radius: 2px;
    background: #003;
}

header .burger_menu .btn .icon:after
{
    top: 8px;
}


header .burger_menu .btn.active
{
    z-index: 102;
}

header .burger_menu .btn.active .icon
{
    background: transparent;
}

header .burger_menu .btn.active .icon:before
{
    top: 0;

    transform: rotate(45deg);
}

header .burger_menu .btn.active .icon:after
{
    top: 0;

    transform: rotate(-45deg);
}



header .burger_menu .mini_modal
{
    z-index: 101;
    top: -16px;
    right: -22px;
    left: auto;

    width: 262px;
    padding: 94px 39px 44px 48px;

    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}


header .burger_menu .links a
{
    color: currentColor;
    font-size: 17px;
    font-weight: bold;
    line-height: 35px;

    position: relative;

    display: inline-block;

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

header .burger_menu .links a:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 0;
    height: 5px;

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

    background: #07a5d1;
}

header .burger_menu .links a:hover,
header .burger_menu .links a.active
{
    color: #007394;
}

header .burger_menu .links a:hover:after,
header .burger_menu .links a.active:after
{
    width: 100%;
}


header .burger_menu .phone
{
    margin-top: 32px;
    margin-left: 0;
}

header .phone .number
{
    color: #000;
}


header .burger_menu .socials
{
    display: flex;

    margin-top: 23px;

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

header .burger_menu .socials a
{
    color: #fff;

    display: flex;

    width: 38px;
    height: 38px;
    padding: 5px;

    transition: background .2s linear;

    border-radius: 50%;
    background: #007394;

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

header .burger_menu .socials a + a
{
    margin-left: 23px;
}

header .burger_menu .socials .icon
{
    display: block;

    fill: currentColor;
}

header .burger_menu .socials .vkontakte .icon
{
    width: 22px;
    height: 22px;
}

header .burger_menu .socials .facebook .icon
{
    width: 11px;
    height: 20px;
}

header .burger_menu .socials .odnokl .icon
{
    width: 12px;
    height: 20px;
}

header .burger_menu .socials a:hover
{
    background: #009bc6;
}



header .menu
{
    display: flex;

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

header .menu .item > a
{
    color: currentColor;
    font-size: 17px;
    font-weight: bold;
    line-height: 23px;

    position: relative;

    display: flex;

    min-height: 47px;
    padding: 12px 0;

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

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

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

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

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

    background: #07a5d1;
}

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

header .menu .item:hover > a,
header .menu .item > a.active
{
    color: #007394;
}



.mob_header
{
    display: none;

    width: 100%;
    padding: 20px 0;

    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

.mob_header .cont
{
    display: flex;

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



.mob_header .logo
{
    margin-right: auto;
}

.mob_header .logo a,
.mob_header .logo img
{
    display: block;

    height: 64px;
}



.mob_header .phone
{
    color: #4f4f4f;
    font-size: 14px;
    line-height: 20px;
}

.mob_header .phone .number
{
    color: #000;
    font-size: 21px;
    font-weight: bold;
    line-height: 25px;

    display: inline-block;

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

.mob_header .phone .number + *
{
    margin-top: -1px;
}



.mob_header .order_btn
{
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    line-height: 21px;

    display: flex;

    width: 190px;
    height: 48px;
    margin-left: 28px;
    padding: 0 15px;

    border-radius: 4px;
    background: #009bc6;

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

.mob_header .order_btn .icon
{
    display: block;

    width: 25px;
    height: 25px;
    margin-right: 17px;

    fill: currentColor;
}



.mob_header .search
{
    margin-left: 28px;
}

.mob_header .search .btn
{
    color: var(--text_color);

    display: flex;

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

.mob_header .search .btn .icon
{
    display: block;

    width: 20px;
    height: 20px;

    fill: currentColor;
}



.mob_header .account
{
    margin-left: 28px;
}

.mob_header .account > .btn
{
    color: var(--text_color);

    position: relative;

    display: flex;

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

.mob_header .account > .btn .icon
{
    display: block;

    width: 20px;
    height: 20px;

    fill: currentColor;
}

.mob_header .account > .btn.active
{
    z-index: 102;
}


.mob_header .account .mini_modal
{
    z-index: 101;
    top: -14px;
    right: -20px;
    left: auto;

    width: 380px;
    padding: 50px 25px 25px;

    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}

.mob_header .account .mini_modal .title
{
    font-size: 28px;
    font-weight: bold;
    line-height: 125%;

    margin-bottom: 20px;
}

.mob_header .account .mini_modal .form .submit
{
    padding-top: 4px;
    padding-left: var(--form_label_width);
}


.mob_header .account .mini_modal .contacts
{
    color: #333;
    font-size: 15px;
    line-height: 125%;

    margin-top: 20px;
}

.mob_header .account .mini_modal .contacts .number
{
    color: var(--text_color);
    font-weight: bold;

    white-space: nowrap;
    text-decoration: none;
}

.mob_header .account .mini_modal .contacts .email
{
    color: var(--text_color);

    white-space: nowrap;
}

.mob_header .account .mini_modal .contacts .email:hover
{
    text-decoration: none;
}

.mob_header .account .mini_modal .bottom
{
    color: #333;
    font-size: 15px;
    line-height: 21px;

    display: flex;

    margin-top: 18px;

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

.mob_header .account .mini_modal .bottom .btn
{
    color: #007394;
    font-size: 20px;
    line-height: 26px;

    transition: border-color .2s linear;

    border-bottom: 1px dashed;
}

.mob_header .account .mini_modal .bottom .btn:hover
{
    border-color: transparent;
}



.mob_header .mob_menu_btn
{
    position: relative;

    display: block;

    width: 44px;
    height: 39px;
    margin-right: -10px;
    margin-left: 18px;
    padding: 10px;

    cursor: pointer;

    border: none;
    background: none;
}

.mob_header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 100%;
    height: 3px;

    transition: background .2s linear;

    border-radius: 2px;
    background: #003;
}

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

    display: block;

    width: 100%;
    height: 100%;

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

    background: #003;
}

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

.mob_header .mob_menu_btn.active
{
    z-index: 102;
}

.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);
}



#mob_menu
{
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    padding: 47px 47px 32px;

    border: 1px solid#e0e0e0;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}

#mob_menu .data
{
    width: 216px;
    max-width: 100%;
    margin: 0 auto;
}


#mob_menu .menu
{
    padding-bottom: 24px;
}

#mob_menu .menu > * + *
{
    margin-top: 8px;
}

#mob_menu .menu a
{
    color: var(--text_color);
    font-size: 17px;
    font-weight: bold;
    line-height: 23px;

    position: relative;

    display: inline-block;

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

#mob_menu .menu a:after
{
    position: absolute;
    bottom: -5px;
    left: 0;

    width: 0;
    height: 5px;

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

    background: #07a5d1;
}

#mob_menu .menu a:hover,
#mob_menu .menu a.active
{
    color: #007394;
}

#mob_menu .menu a:hover:after,
#mob_menu .menu a.active:after
{
    width: 100%;
}


#mob_menu .login_btn
{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 19px;

    display: flex;

    width: 100%;
    height: 34px;
    margin-top: 17px;
    padding: 0 15px;

    border-radius: 4px;
    background: #009bc6;

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

#mob_menu .login_btn .icon
{
    display: block;

    width: 22px;
    height: 21px;
    margin-right: 8px;

    fill: currentColor;
}


#mob_menu .order_btn
{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 19px;

    display: flex;

    width: 100%;
    height: 34px;
    margin-top: 17px;
    padding: 0 15px;

    border-radius: 4px;
    background: #009bc6;

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

#mob_menu .order_btn .icon
{
    display: block;

    width: 27px;
    height: 27px;
    margin-right: 17px;

    fill: currentColor;
}


#mob_menu .search
{
    margin-top: 17px;
}

#mob_menu .search form
{
    position: relative;

    display: flex;

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

#mob_menu .search ::-webkit-input-placeholder
{
    color: #828282;
}

#mob_menu .search :-moz-placeholder
{
    color: #828282;
}
#mob_menu .search :-ms-input-placeholder
{
    color: #828282;
}

#mob_menu .search .icon
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 14px;

    display: block;

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

    pointer-events: none;

    fill: var(--text_color);
}

#mob_menu .search .input
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: 14px;
    font-weight: bold;

    display: block;

    width: 100%;
    height: 34px;
    padding: 0 48px 2px;

    text-align: center;

    border: 1px solid #bdbdbd;
    border-radius: 4px;
    background: #fff;
}


#mob_menu .phone
{
    color: #4f4f4f;
    font-size: 15px;
    line-height: 20px;

    margin-top: 15px;

    text-align: center;
}

#mob_menu .phone .number
{
    color: #000;
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;

    display: inline-block;

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

#mob_menu .phone .number + *
{
    margin-top: -3px;
}


#mob_menu .socials
{
    display: flex;

    margin-top: 17px;

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

#mob_menu .socials a
{
    color: #fff;

    display: flex;

    width: 38px;
    height: 38px;
    padding: 5px;

    transition: background .2s linear;

    border-radius: 50%;
    background: #007394;

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

#mob_menu .socials a + a
{
    margin-left: 23px;
}

#mob_menu .socials .icon
{
    display: block;

    fill: currentColor;
}

#mob_menu .socials .vkontakte .icon
{
    width: 22px;
    height: 22px;
}

#mob_menu .socials .facebook .icon
{
    width: 11px;
    height: 20px;
}

#mob_menu .socials .odnokl .icon
{
    width: 12px;
    height: 20px;
}

#mob_menu .socials a:hover
{
    background: #009bc6;
}



/*-------------
    Sidebar
-------------*/
aside
{
    position: relative;

    width: var(--sidebar_width);
    max-width: 100%;
}



aside .links
{
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);
}

aside .links > * + *
{
    border-top: 1px solid #bdbdbd;
}


aside .links > * > a
{
    color: var(--text_color);
    font-size: 17px;
    font-weight: bold;
    line-height: 23px;

    display: block;

    padding: 13px 20px 14px;

    transition: color .2s linear;
    text-decoration: none;
}

aside .links > * > a:hover,
aside .links > * > a.active
{
    color: #007394;
}


aside .links .sub_links
{
    display: none;

    margin-top: -8px;
}

aside .links .sub_links a
{
    color: #333;
    font-size: 15px;
    line-height: 20px;

    position: relative;

    display: block;

    padding: 8px 20px 8px 32px;

    transition: .2s linear;
    text-decoration: none;
}

aside .links .sub_links a:before
{
    position: absolute;
    top: 15px;
    left: 20px;

    display: block;

    width: 5px;
    height: 5px;

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

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

aside .links .sub_links a:hover,
aside .links .sub_links a.active
{
    color: #fff;

    background: #003;
}

aside .links .sub_links a:hover:before,
aside .links .sub_links a.active:before
{
    background: #fff;
}



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

.page_head .cont > * + *
{
    margin-top: 22px;
}


.breadcrumbs
{
    color: #007394;
    font-size: 14px;
    line-height: 19px;
}

.breadcrumbs a
{
    color: #000;

    transition: color .2s linear;
    text-decoration: none;
}

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

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

    display: inline-block;

    width: 5px;
    height: 5px;
    margin: 0 16px;

    vertical-align: middle;

    border-radius: 50%;
    background: #009bc6;
}


.page_title
{
    font-size: var(--font_size_title);
    font-weight: 800;
    line-height: 57px;

    position: relative;

    width: 100%;
    min-height: 57px;
    padding-left: 80px;
}

.page_title:before
{
    position: absolute;
    top: 29px;
    left: 0;

    display: block;

    width: 60px;
    height: 3px;

    content: '';

    background: #009bc6;
}



/*----------------
    Block head
----------------*/
.block_head
{
    position: relative;

    display: flex;

    width: 100%;
    margin-bottom: 30px;

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

.block_head.with_carousel
{
    padding-right: 113px;
}


.block_head .title
{
    font-size: var(--font_size_title);
    font-weight: 800;
    line-height: 57px;

    position: relative;

    width: 100%;
    padding-left: 80px;
}

.block_head .title:before
{
    position: absolute;
    top: 29px;
    left: 0;

    display: block;

    width: 60px;
    height: 3px;

    content: '';

    background: #009bc6;
}

.block_head .title.no_line
{
    padding-left: 0;
}

.block_head .title.no_line:before
{
    display: none;
}


.block_head .desc
{
    font-size: 18px;
    font-weight: bold;
    line-height: 150%;

    margin-top: 30px;
}


.block_head .link
{
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    line-height: 23px;

    display: inline-block;

    margin-top: 30px;
    padding: 16px 40px 15px;

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

    border-radius: 4px;
    background: #009bc6;
    box-shadow: 0 5px 16px rgba(0, 133, 255, .68);
}


.block_head.light
{
    color: #fff;
}

.block_head.light .title:before
{
    background: #fff;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #e2d7d7;
    --form_focus_color: #e2d7d7;
    --form_error_color: red;
    --form_border_radius: 4px;
    --form_bg_color: #fff;
    --form_label_width: 71px;
    --form_placeholder_color: #191919;
}


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

    --form_columns_offset: 13px;
}

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


.form .columns > *.width1of3
{
    width: calc(33.333% - var(--form_columns_offset));
}

.form .columns > *.width2of3
{
    width: calc(66.666% - var(--form_columns_offset));
}

.form .columns > *.width3of3
{
    width: calc(100% - var(--form_columns_offset));
}


.form .columns > *.width1of5
{
    width: calc(20% - var(--form_columns_offset));
}

.form .columns > *.width2of5
{
    width: calc(40% - var(--form_columns_offset));
}

.form .columns > *.width3of5
{
    width: calc(60% - var(--form_columns_offset));
}

.form .columns > *.width4of5
{
    width: calc(80% - var(--form_columns_offset));
}

.form .columns > *.width5of5
{
    width: calc(100% - var(--form_columns_offset));
}


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

.form .line.row
{
    justify-content: flex-end;
}

.form .line.row .label
{
    display: flex;

    width: var(--form_label_width);
    max-width: 100%;
    min-height: 37px;
    margin: 0;
    padding-right: 10px;

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

.form .line.row .field
{
    width: calc(100% - var(--form_label_width));
}


.form .label
{
    color: #191919;
    line-height: 146.3%;

    margin-bottom: 3px;
}


.form .field
{
    position: relative;
}

.form .field.row
{
    display: flex;

    margin-left: -14px;

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

.form .field.row > *
{
    width: calc(50% - 14px);
    margin-left: 14px;
}


.form .input
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    display: block;

    width: 100%;
    height: 37px;
    padding: 0 14px;

    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
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    display: block;

    width: 100%;
    height: 98px;
    padding: 6px 14px;

    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 .input:-webkit-autofill
{
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


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

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


.form .agree
{
    color: #828282;
    font-size: 12px;
    line-height: 109.5%;
}

.form .agree a
{
    color: currentColor;
}

.form .agree a:hover
{
    text-decoration: none;
}


.form .submit
{
    display: flex;

    padding-top: 10px;

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

.form .submit_btn
{
    color: #fff;
    font-size: var(--font_size);
    font-weight: bold;
    line-height: 135.3%;

    display: inline-block;

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

    transition: .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border-radius: var(--form_border_radius);
    background: #009bc6;
}


.form .bottom
{
    display: flex;

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

.form .bottom .agree
{
    width: 410px;
    max-width: calc(100% - 220px);
}

.form .bottom .agree a
{
    color: #013763;
}

.form .bottom .submit
{
    width: 180px;
    max-width: 100%;
    padding: 0;
}

.form .bottom .submit_btn
{
    text-transform: none;
}



/*----------------
    Typography
----------------*/
.text_block
{
    color: #000;
    line-height: 150%;
}

.text_block > :last-child,
.text_block .cols .col > :last-child,
.text_block .message > :last-child,
.text_block .columns > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child,
.text_block .cols .col > :first-child,
.text_block .message > :first-child,
.text_block .columns > :first-child
{
    margin-top: 0 !important;
}


.text_block h2
{
    color: var(--text_color);
    font-size: 36px;
    font-weight: 800;
    line-height: 49px;
}


.text_block h3
{
    color: var(--text_color);
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
}

.text_block h2 + h3
{
    margin-top: 0 !important;
}


.text_block h4
{
    color: var(--text_color);
    font-size: 19px;
    font-weight: bold;
    line-height: 150%;

    margin-bottom: 12px !important;
}

.text_block h2 + h4,
.text_block h3 + h4
{
    margin-top: 0 !important;
}


.text_block * + h2,
.text_block * + h3
{
    margin-top: 50px;
}

.text_block * + h4
{
    margin-top: 30px;
}

.text_block h2 + *,
.text_block h3 + *,
.text_block h4 + *
{
    margin-top: 0 !important;
}


.text_block h2.with_carousel,
.text_block h3.with_carousel,
.text_block h4.with_carousel
{
    padding-right: 113px;
}


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

.text_block > *.clear
{
    margin-bottom: 0;
}


.text_block .company_info
{
    margin-top: 30px;
    margin-bottom: 30px;
}

.text_block .gallery,
.text_block .cols
{
    margin-top: 50px;
    margin-bottom: 50px;
}


.text_block img
{
    display: block;

    max-width: 100%;

    border-radius: 4px;
}

.text_block img.left
{
    max-width: calc(50% - 50px);
    margin-top: 4px;
    margin-right: 50px;
}

.text_block img.right
{
    max-width: calc(50% - 50px);
    margin-top: 4px;
    margin-left: 50px;
}

.text_block img.loaded
{
    height: auto !important;
}


.text_block .table_wrap
{
    overflow: auto;

    max-width: 100%;
    padding-top: 2px;

    border-top: 2px solid #009bc6;
}

.text_block .table_wrap::-webkit-scrollbar
{
    width: 5px;
    height: 5px;

    border-radius: 0;
    background-color: #eee;

    -webkit-appearance: none;
}

.text_block .table_wrap::-webkit-scrollbar-thumb
{
    border-radius: 0;
    background-color: #009bc6;
}

.text_block table
{
    width: 100%;

    border-spacing: 0;
    border-collapse: collapse;
}

.text_block table th
{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 135.3%;

    padding: 8px 13px;

    text-align: center;
    vertical-align: middle;

    background: #007394;
}

.text_block table th:first-child
{
    border-left: 1px solid #007394;
}

.text_block table th:last-child
{
    border-right: 1px solid #007394;
}

.text_block table th + th
{
    border-left: 1px solid #fff;
}

.text_block table td
{
    padding: 8px 13px;

    text-align: left;
    vertical-align: middle;

    border: 1px solid #e0e0e0;
}

.text_block table tbody tr:nth-child(2n) td
{
    background: #fafbfd;
}

.text_block table .aligncenter
{
    text-align: center;
}

.text_block table .nowrap
{
    white-space: nowrap;
}


.text_block .cols
{
    display: flex;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.text_block .cols .col
{
    width: calc(50% - 16px);
}

.text_block .cols .col.align_self_center
{
    align-self: center;
}

.text_block .cols .col img
{
    margin: 0 auto;
}

.text_block .cols .col > *
{
    margin-bottom: 20px;
}


.text_block .message
{
    padding: 40px;

    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);
}

.text_block .cols .message
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}

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


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 31px;

    list-style-type: none;
}

.text_block ul li + li
{
    margin-top: 8px;
}

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

    display: block;

    width: 19px;
    height: 19px;

    content: '';

    background: url(../images/ic_ul_li.svg) 0 0/ 100% 100% no-repeat;
}


.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 24px;

    list-style-type: none;
}

.text_block ol li + li
{
    margin-top: 8px;
}

.text_block ol li:before
{
    color: var(--text_color);
    font-size: 19px;
    font-weight: bold;

    position: absolute;
    top: 0;
    left: 0;

    content: counters(li, '.') '.';
    counter-increment: li;
}


.text_block a
{
    color: #007394;
}

.text_block a:hover
{
    text-decoration: none;
}


.text_block .gallery .slide
{
    width: 286px;
}

.text_block .gallery .item
{
    color: #191919;
    font-weight: bold;
    line-height: 135.3%;

    display: block;

    transition: color .2s linear;
    text-decoration: none;
}

.text_block .gallery .thumb
{
    position: relative;

    overflow: hidden;

    padding-bottom: 100%;

    border-radius: 4px;
    background: #ddd;
}

.text_block .gallery .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: 4px;

    object-fit: cover;
}

.text_block .gallery .caption
{
    margin-top: 20px;
}

.text_block .gallery .item:hover
{
    color: #007394;
}


.text_block .columns
{
    column-gap: 82px;
    column-count: 3;
}

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

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

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


.text_block .video_link
{
    position: relative;

    display: block;
}

.text_block .video_link img
{
    margin: 0;

    widows: 100%;
}

.text_block .video_link .icon
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 54px;
    height: 54px;
    margin: auto;

    fill: #fff;
}


.text_block .links
{
    margin: 15px 0;
}

.text_block .links a
{
    position: relative;

    display: inline-block;

    vertical-align: top;
}

.text_block .links a:before
{
    position: absolute;
    top: 9px;
    left: -29px;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

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

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


.text_block.big
{
    font-size: 18px;
}

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



/*------------------
    Company info
------------------*/
.company_info
{
    display: flex;

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

.company_info .logo
{
    display: flex;

    width: 198px;
    max-width: 100%;
    height: 140px;

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

.company_info .logo img
{
    display: block;

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

.company_info .info
{
    width: calc(100% - 254px);
}



/*---------------
    Accordion
---------------*/
.accordion .item
{
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);
}

.accordion .item + .item
{
    margin-top: 6px;
}


.accordion .item .head
{
    position: relative;

    display: flex;

    min-height: 70px;
    padding: 12px 43px 12px 78px;

    cursor: pointer;

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

.accordion .item .head .icon
{
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 36px;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;

    width: 36px;
    height: 36px;
    margin: auto;

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

    border-radius: 50%;
    background: #009bc6;
}

.accordion .item .head .icon:before
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: calc(100% - 4px);
    height: calc(100% - 4px);
    margin: auto;

    content: '';

    border: 1px solid #fff;
    border-radius: 50%;
}

.accordion .item .head .title
{
    color: #000;
    font-size: 18px;
    font-weight: bold;
    line-height: 130%;

    transition: color .2s linear;
}

.accordion .item .head .arr
{
    position: absolute;
    top: 0;
    right: 23px;
    bottom: 0;

    width: 7px;
    height: 10px;
    margin: auto;
}

.accordion .item .head .arr:before,
.accordion .item .head .arr:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -3px;

    display: block;

    width: 7px;
    height: 2px;
    margin: auto;

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

    border-radius: 1px;
    background: #007394;
}

.accordion .item .head .arr:after
{
    left: 3px;

    transform: rotate(-45deg);
}


.accordion .item .data
{
    display: none;

    padding: 9px 43px 32px 78px;
}


.accordion .item:hover .head .icon,
.accordion .item.active .head .icon
{
    background: #003;
}

.accordion .item:hover .head .title,
.accordion .item.active .head .title
{
    color: #003;
}

.accordion .item:hover .head .arr:before,
.accordion .item:hover .head .arr:after
{
    background: #003;
}

.accordion .item.active .head .arr:before
{
    transform: rotate(-45deg);

    background: #003;
}

.accordion .item.active .head .arr:after
{
    transform: rotate(45deg);

    background: #003;
}



/*----------------
    Pagination
----------------*/
.pagination
{
    font-size: 18px;
    font-weight: bold;
    line-height: 44px;

    display: flex;

    margin-top: 50px;

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

.pagination.center
{
    justify-content: center;
}

.pagination.alignright
{
    justify-content: flex-end;
}

.pagination > * + *
{
    margin-left: 10px;
}

.pagination a,
.pagination .sep
{
    color: currentColor;

    display: inline-block;

    width: 44px;
    height: 44px;

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

    border-radius: 4px;
    background: transparent;
}

.pagination a:hover,
.pagination a.active
{
    background: #e0e0e0;
}


.pagination .prev,
.pagination .next
{
    position: relative;

    background: #e0e0e0;
}

.pagination .prev:after,
.pagination .next:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 4px;

    display: block;

    width: 12px;
    height: 12px;
    margin: auto;

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

    border-top: 2px solid #828282;
    border-left: 2px solid #828282;
}

.pagination .next:after
{
    left: -4px;

    transform: rotate(-225deg);
}

.pagination .prev:hover,
.pagination .next:hover
{
    background: #003;
}

.pagination .prev:hover:after,
.pagination .next:hover:after
{
    border-color: #fff;
}



/*-----------------
    Main slider
-----------------*/
.main_slider
{
    position: relative;

    padding-bottom: 70px;

    background: #fff;
}


.main_slider .slide
{
    width: 100%;
}

.main_slider .slide .cont
{
    display: flex;

    min-height: 489px;

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


.main_slider .slide .info
{
    width: 570px;
    max-width: 100%;
    margin-bottom: 75px;
}

.main_slider .slide .title
{
    font-size: 64px;
    font-weight: 800;
    line-height: 109.5%;
}

.main_slider .slide .desc
{
    color: #1d2124;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;

    width: 400px;
    max-width: 100%;
    margin-top: 20px;
}

.main_slider .slide .img
{
    display: block;

    max-width: calc(100% - 36px);
    margin-right: -36px;
}


.main_slider .count
{
    color: #333;
    font-size: 16px;
    line-height: 22px;

    position: absolute;
    bottom: 66px;
    left: 50%;

    display: flex;

    margin-left: -502px;

    white-space: nowrap;

    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: nowrap;
}

.main_slider .count .current
{
    font-size: 30px;
    line-height: 32px;
}



/*----------------
    Advantages
----------------*/
.advantages
{
    padding-bottom: 50px;

    background: #fff;
}

.advantages .row
{
    margin-bottom: -30px;
    margin-left: -20px;

    justify-content: center;
}

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


.advantages .item
{
    color: currentColor;
    font-size: 17px;
    font-weight: 800;
    line-height: 23px;

    display: block;

    transition: color .2s linear;
    text-align: center;
    text-decoration: none;
}

.advantages .item .icon
{
    position: relative;

    display: flex;

    width: 89px;
    height: 89px;
    margin: 0 auto 30px;
    padding: 5px;

    border: 1px solid #bdbdbd;
    border-radius: 50%;

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

.advantages .item .icon:before,
.advantages .item .icon:after
{
    position: absolute;
    top: -7px;
    left: -7px;

    display: block;

    width: calc(100% + 14px);
    height: calc(100% + 14px);

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

    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.advantages .item .icon:after
{
    top: -14px;
    left: -14px;

    width: calc(100% + 28px);
    height: calc(100% + 28px);

    border: 1px solid #f2f2f2;
}

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

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


.advantages .item:hover
{
    color: #007394;
}

.advantages .item:hover .icon:before
{
    border: 2px solid #e0e0e0;
    box-shadow: inset 0 0 0 4px #009bc6;
}

.advantages .item:hover .icon:after
{
    box-shadow: inset 0 0 0 6px #007394;
}



/*-------------
    Tariffs
-------------*/
.tariffs
{
    position: relative;
    z-index: 3;

    padding: 57px 0 50px;

    background: #009bc6;
}


.tariffs .bg
{
    position: absolute;
    z-index: -1;
    top: 22px;
    left: 11px;

    display: block;

    width: 382px;
    height: 358px;

    pointer-events: none;
}

.tariffs .bg2
{
    position: absolute;
    z-index: -1;
    right: 2px;
    bottom: 85px;

    display: block;

    width: 382px;
    height: 302px;

    pointer-events: none;
}


.tariffs .tabs
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;

    width: 486px;
    max-width: 100%;
    height: 44px;
    margin: auto;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: nowrap;
}

.tariffs .tabs button
{
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    line-height: 28px;

    position: relative;

    display: flex;

    width: calc(50% - 16px);
    height: 44px;
    padding: 7px 20px 9px;

    transition: .2s linear;

    border-radius: 4px;
    background: #007394;

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

.tariffs .tabs button + button
{
    margin-left: 32px;
}


.tariffs .tabs button .tooltip
{
    position: absolute;
    top: -10px;
    right: -10px;
}

.tariffs .tabs button .tooltip .icon
{
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;

    display: block;

    width: 20px;
    height: 20px;

    text-align: center;

    border: 1px solid #fff;
    border-radius: 50%;
    background: #009bc6;
    box-shadow: 0 0 0 2px #009bc6;
}

.tariffs .tabs button .tooltip .text
{
    color: #000;
    font-size: 14px;
    line-height: 150%;

    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;

    visibility: hidden;

    padding: 1px 12px 2px;

    transition: .2s linear;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;

    opacity: 0;
    border: 1px solid #f2f2f2;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .5);
}

.tariffs .tabs button .tooltip .text:after
{
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    left: 0;

    display: block;

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

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

    border-bottom: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
    background: #fff;
}

.tariffs .tabs button .tooltip:hover .text
{
    bottom: calc(100% + 6px);

    visibility: visible;

    opacity: 1;
}


.tariffs .tabs button:hover,
.tariffs .tabs button.active
{
    background: #003;
    box-shadow: 0 4px 35px #8ff2ff;
}


.tariffs .owl-stage-outer
{
    overflow: visible !important;
}

.tariffs .owl-item
{
    visibility: hidden;

    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
}

.tariffs .owl-item.active
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}

.tariffs .slide
{
    width: 286px;
}


.tariffs .row
{
    margin-bottom: -32px;
    margin-left: -32px;

    align-items: stretch;
    align-content: stretch;
}

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

.tariffs .row .tariff:before
{
    border: 2px solid transparent;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);
}

.tariffs .row .tariff .price,
.tariffs .row .tariff .mb
{
    color: #009bc6;

    transition: color .2s linear;
}

.tariffs .row .tariff:hover:before
{
    border-color: #a3e2f3;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}

.tariffs .row .tariff:hover .price,
.tariffs .row .tariff:hover .mb
{
    color: var(--text_color);
}


.tariffs .tariff
{
    position: relative;
    z-index: 3;
}

.tariffs .tariff:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

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

    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 35px #247288;
}


.tariffs .tariff .range
{
    color: #4f4f4f;
    font-size: 15px;
    line-height: 150%;

    padding: 13px 32px 9px;
}

.tariffs .tariff .range b
{
    font-size: 16px;
}


.tariffs .tariff .name
{
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    line-height: 150%;

    padding: 4px 32px 5px;

    transition: background .2s linear;

    background: #007394;
}


.tariffs .tariff .info
{
    padding: 8px 32px 32px;
}


.tariffs .tariff .price_type
{
    color: #009bc6;
    line-height: 24px;

    padding-bottom: 9px;

    border-bottom: 1px solid #bdbdbd;
}


.tariffs .tariff .price
{
    font-weight: bold;
    line-height: 22px;
}

.tariffs .tariff .price b
{
    font-size: 36px;
    font-weight: 800;
    line-height: 150%;
}


.tariffs .tariff .mb
{
    font-weight: bold;
    line-height: 22px;

    margin-top: -6px;
}

.tariffs .tariff .mb b
{
    font-size: 24px;
    font-weight: bold;
    line-height: 150%;
}


.tariffs .tariff .features
{
    color: #4f4f4f;
    font-size: 15px;
    line-height: 150%;

    margin-top: 9px;
    padding-top: 5px;

    border-top: 1px solid #bdbdbd;
}

.tariffs .tariff .features > *
{
    display: flex;

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

.tariffs .tariff .features > * + *
{
    margin-top: 9px;
}

.tariffs .tariff .features > * > *
{
    margin-right: 6px;
}

.tariffs .tariff .features .val
{
    color: #003;
    font-size: var(--font_size);
    font-weight: bold;
    line-height: 150%;

    white-space: nowrap;
}


.tariffs .tariff .link
{
    color: #007394;
    font-size: 17px;
    font-weight: bold;
    line-height: 23px;

    display: block;

    margin-top: 38px;
    padding: 9px 19px 10px;

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

    border: 1px solid #007394;
    border-radius: 4px;
}

.tariffs .tariff .link:hover
{
    color: #fff;

    border-color: #009bc6;
    background: #009bc6;
}


.tariffs .tariff:hover:before
{
    top: -18px;
    left: -13px;

    width: calc(100% + 26px);
    height: calc(100% + 36px);

    box-shadow: 0 4px 35px #8ff2ff;
}

.tariffs .tariff:hover .name
{
    background: #009bc6;
}



/*-----------------------
    Search satellites
-----------------------*/
.search_satellites
{
    position: relative;
    z-index: 3;

    overflow: hidden;

    padding: 50px 0 53px;

    background: #003;
}


.search_satellites .bg
{
    position: absolute;
    z-index: -2;
    top: 0;
    right: 50%;

    width: 1600px;
    height: 100%;
    margin-right: -800px;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}


.search_satellites .img
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 50%;
    bottom: 0;

    display: block;

    max-height: 100%;
    margin: auto;
    margin-right: -484px;
}


.search_satellites .block_head
{
    margin-bottom: 0 !important;
}

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

.search_satellites .block_head .link
{
    margin-top: 40px;
    margin-left: 110px;

    align-self: flex-start;
}



/*-----------------
    Information
-----------------*/
.information .row
{
    margin-bottom: -6px;
    margin-left: -32px;
    padding-top: 10px;

    justify-content: space-between;
}

.information .row > *
{
    width: calc(50% - 32px);
    margin-bottom: 6px;
    margin-left: 32px;
}



/*-----------------
    About block
-----------------*/
.about_block .row
{
    justify-content: space-between;
}


.about_block .img
{
    width: calc(50% - 16px);
    margin-right: auto;
}

.about_block .img img
{
    display: block;

    max-width: 100%;
    margin: -64px auto 0;
}


.about_block .data
{
    width: calc(50% - 16px);
    margin-left: auto;
}

.about_block .data .details
{
    color: #007394;
    font-size: 17px;
    line-height: 23px;

    display: inline-block;

    margin-top: 30px;
    padding: 12px 31px 13px;

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

    border: 1px solid #007394;
    border-radius: 4px;
}

.about_block .data .details:hover
{
    color: #fff;

    background: #007394;
}



/*--------------
    Articles
--------------*/
.articles .slide
{
    width: 286px;
}


.articles .row
{
    margin-bottom: -50px;
    margin-left: -32px;
}

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


.articles .article
{
    color: currentColor;

    display: block;

    transition: color .2s linear;
    text-decoration: none;
}


.articles .article .thumb
{
    position: relative;

    overflow: hidden;

    width: 160px;
    max-width: 100%;
    height: 88px;

    background: #ddd;
}

.articles .article .thumb img
{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.articles .article .date
{
    color: #828282;
    font-size: 13px;
    line-height: 150%;

    margin-top: 10px;
}


.articles .article .name
{
    font-size: 18px;
    font-weight: bold;
    line-height: 150%;

    margin-top: 10px;
    padding-top: 10px;

    border-top: 2px solid;
}

.articles .article .name span
{
    display: block;

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


.articles .article:hover
{
    color: #007394;
}



/*-----------------
    Tariff_info
-----------------*/
.tariff_info .accordion .item .head
{
    min-height: 0;
    padding-right: 85px;
    padding-left: 15px;
}

.tariff_info .accordion .item .title
{
    width: 565px;
    max-width: 100%;
}

.tariff_info .accordion .item .val
{
    color: #000;
    font-size: 18px;
    font-weight: bold;
    line-height: 135.3%;

    margin-left: auto;

    text-align: right;
}

.tariff_info .accordion .item .head
{
    flex-wrap: nowrap;
}

.tariff_info .accordion .item .head .arr
{
    right: 22px;

    width: 26px;
    height: 14px;
}

.tariff_info .accordion .item .head .arr:before,
.tariff_info .accordion .item .head .arr:after
{
    left: -10px;

    width: 19px;
    height: 2px;

    background: #003;
}

.tariff_info .accordion .item .head .arr:after
{
    left: 11px;
}

.tariff_info .accordion .item:hover .head .title,
.tariff_info .accordion .item.active .head .title
{
    color: #007394;
}

.tariff_info .accordion .item.active .head .arr:before,
.tariff_info .accordion .item.active .head .arr:after
{
    background: #009bc6;
}


.tariff_info .accordion .item .data
{
    padding: 9px 85px 32px 36px;
}



/*---------
    FAQ
---------*/
.faq .accordion .item .head
{
    min-height: 0;
    padding-right: 85px;
    padding-left: 15px;
}

.faq .accordion .item .head .arr
{
    right: 22px;

    width: 26px;
    height: 14px;
}

.faq .accordion .item .head .arr:before,
.faq .accordion .item .head .arr:after
{
    left: -10px;

    width: 19px;
    height: 2px;

    background: #003;
}

.faq .accordion .item .head .arr:after
{
    left: 11px;
}

.faq .accordion .item:hover .head .title,
.faq .accordion .item.active .head .title
{
    color: #007394;
}

.faq .accordion .item.active
{
    box-shadow: inset 0 0 0 2px #a3e2f3, 0 0 15px rgba(187, 205, 202, .1);
}

.faq .accordion .item.active .head .arr:before,
.faq .accordion .item.active .head .arr:after
{
    background: #009bc6;
}


.faq .accordion .item .data
{
    padding: 9px 85px 32px 36px;
}



/*-----------------
    Action form
-----------------*/
.action_form .data
{
    display: flex;

    padding: 63px 72px 50px 42px;

    border-radius: 4px;
    background: #f0f6f8 url(../images/bg_action_form.svg) 11px 100% no-repeat;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .2);

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


.action_form .data .info
{
    width: 350px;
    max-width: 100%;
}


.action_form .data .block_title
{
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
}


.action_form .data .phone
{
    margin-top: 30px;
}

.action_form .data .phone .title
{
    color: #007394;
    font-size: 22px;
    line-height: 117.5%;
}

.action_form .data .phone .number
{
    color: var(--text_color);
    font-size: 36px;
    font-weight: bold;
    line-height: 49px;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}


.action_form .data .form
{
    width: 630px;
    max-width: calc(100% - 400px);
}

.action_form .data .form .line
{
    margin-bottom: 20px;
}



/*------------
    Partners
------------*/
.partners .cont.row
{
    justify-content: space-between;
}


.partners .data
{
    width: 694px;
    max-width: calc(100% - 565px);
}


.partners .advantages
{
    margin-top: 30px;
    padding-bottom: 0;
}

.partners .advantages .title
{
    font-size: 22px;
    font-weight: bold;
    line-height: 150%;

    margin-bottom: 44px;
}

.partners .advantages .row
{
    justify-content: flex-start;
}

.partners .advantages .row > *
{
    width: calc(33.333% - 20px);
}


.partners .form
{
    position: relative;
    z-index: 3;

    display: flex;

    width: 511px;
    max-width: 100%;
    height: 511px;
    padding: 84px 84px 84px 93px;

    border-radius: 50%;
    background: #191993;
    box-shadow: 0 0 0 55px #f4f4ff;

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

.partners .form:before,
.partners .form:after
{
    position: absolute;
    z-index: -3;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 307px;
    height: 307px;
    margin: auto;

    content: '';

    border-radius: 50%;
    background: #2424b4;
    box-shadow: 0 0 60px #2626c7;
}

.partners .form:after
{
    z-index: -2;
    top: -100px;

    width: 165px;
    height: 165px;

    background: #3738c8;
    box-shadow: 0 0 60px #4848e4;
}

.partners .form .bg
{
    position: absolute;
    z-index: -1;
    top: 26px;
    left: 26px;

    display: block;

    width: 474px;
    height: 456px;
}

.partners .form .title
{
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    line-height: 150%;

    width: 100%;
    margin-bottom: 12px;

    text-align: center;
}

.partners .form .line
{
    margin-bottom: 16px;
}

.partners .form .input
{
    height: 54px;
    padding: 0 16px;
}

.partners .form .submit
{
    padding: 0;
}

.partners .form .submit_btn
{
    font-size: 17px;
    font-weight: 800;
    line-height: 23px;

    height: 54px;

    background: #009bc6;
    box-shadow: 0 5px 16px rgba(0, 133, 255, .68);
}

.partners .form .agree
{
    color: #bdbdbd;

    margin-top: 11px;
}



/*-----------
    Certs
-----------*/
.certs
{
    position: relative;
    z-index: 3;

    padding: 50px 0;

    background: #009bc6;
}


.certs .bg
{
    position: absolute;
    z-index: -1;
    top: 22px;
    left: 11px;

    display: block;

    width: 382px;
    height: 358px;

    pointer-events: none;
}

.certs .bg2
{
    position: absolute;
    z-index: -1;
    top: -50px;
    right: 2px;
    bottom: 0;

    display: block;

    width: 382px;
    height: 302px;
    margin: auto;

    pointer-events: none;
}


.certs .text_block
{
    color: #fff;

    margin-top: 30px;
}

.certs .text_block a
{
    color: currentColor;
}


.certs .row
{
    margin-top: 30px;
    margin-bottom: -50px;
    margin-left: -32px;
}

.certs .row > *
{
    width: calc(25% - 32px);
    margin-bottom: 50px;
    margin-left: 32px;
}


.certs .cert
{
    color: #fff;
    font-size: 14px;
    line-height: 150%;

    display: block;

    text-decoration: none;
}

.certs .cert .thumb
{
    position: relative;
    z-index: 3;

    display: flex;

    height: 375px;
    margin-bottom: 23px;
    padding: 32px;

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

.certs .cert .thumb:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

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

    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 35px #247288;
}

.certs .cert .thumb img
{
    display: block;

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


.certs .cert:hover .thumb:before
{
    top: -18px;
    left: -13px;

    width: calc(100% + 26px);
    height: calc(100% + 36px);

    box-shadow: 0 4px 35px #8ff2ff;
}



/*-------------------
    Contacts info
-------------------*/
.contacts_info .row
{
    margin-bottom: -32px;
    margin-left: -32px;

    align-items: stretch;
    align-content: stretch;
}

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

.contacts_info .row > *.big
{
    width: calc(50% - 32px);
}


.contacts_info .item
{
    color: #000;
    line-height: 126%;

    padding: 32px;

    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);
}

.contacts_info .item .val
{
    position: relative;

    display: flex;

    min-height: 27px;
    padding-left: 44px;

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

.contacts_info .item .icon
{
    color: #009bc6;

    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 27px;
    height: 27px;

    fill: #009bc6;
}

.contacts_info .item.address .icon
{
    width: 22px;
    height: 27px;
}

.contacts_info .item.feedback .icon
{
    width: 24px;
    height: 27px;
}

.contacts_info .item.email .icon
{
    top: 3px;

    width: 27px;
    height: 21px;
}


.contacts_info .item.phone .val
{
    display: flex;

    margin-bottom: -32px;
    margin-left: -32px;

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

.contacts_info .item.phone .val .icon
{
    left: 32px;
}

.contacts_info .item.phone .val > div
{
    width: calc(50% - 32px);
    margin-bottom: 32px;
    margin-left: 32px;
}


.contacts_info .item .title
{
    font-weight: bold;

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


.contacts_info .item .number
{
    color: var(--text_color);
    font-size: 24px;
    font-weight: bold;
    line-height: 27px;

    white-space: nowrap;
    text-decoration: none;
}

.contacts_info .item .number + div
{
    margin-top: 7px;
}


.contacts_info .item .btn
{
    color: #fff;
    font-weight: bold;
    line-height: 22px;

    width: 100%;
    margin-top: 85px;
    padding: 16px 32px;

    border-radius: 4px;
    background: #009bc6;
}


.contacts_info .item.fax .number
{
    font-size: 22px;
}

.contacts_info .item.fax .number + *
{
    width: 100%;
}


.contacts_info .item.email .val > div
{
    display: flex;

    width: 100%;

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

.contacts_info .item.email .val > div + div
{
    margin-top: 16px;
}

.contacts_info .item.email .name
{
    position: relative;

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

.contacts_info .item.email .name:after
{
    position: absolute;
    z-index: 1;
    bottom: 3px;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: #e0e0e0;
}

.contacts_info .item.email .name span
{
    position: relative;
    z-index: 2;

    display: inline-block;

    padding-right: 6px;

    vertical-align: top;

    background: #fff;
}

.contacts_info .item.email .link
{
    width: 210px;
    max-width: 100%;
    padding-left: 6px;
}

.contacts_info .item.email .link a
{
    color: var(--text_color);

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    white-space: nowrap;
}

.contacts_info .item.email .link a:hover
{
    color: #007394;
}


.contacts_info .item.requisites .val
{
    padding-left: 0;
}



/*---------
    Map
---------*/
.map .block_title
{
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;

    margin-bottom: 20px;
}

.map #map
{
    position: relative;

    overflow: hidden;

    height: 376px;

    background: #ddd;
}



/*---------------------
    Connection info
---------------------*/
.connection_info
{
    padding-bottom: 50px;
}


.connection_info .title
{
    color: #000;
    font-size: 18px;
    line-height: 150%;

    margin-bottom: 30px;
}


.connection_info .first_step
{
    position: relative;

    display: flex;

    margin-bottom: 32px;
    padding: 32px;

    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);

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

.connection_info .first_step:before
{
    color: #e0e0e0;
    font-size: 72px;
    line-height: 68px;

    position: absolute;
    top: 20px;
    left: 32px;

    content: '1';
    pointer-events: none;
}


.connection_info .first_step .chain
{
    position: absolute;
    z-index: 3;
    bottom: -3px;
    left: calc(16.666% - 3px);

    display: block;

    width: 6px;
    height: 6px;

    content: '';

    border: 2px solid #009bc6;
    border-radius: 50%;
}

.connection_info .first_step .chain:before
{
    position: absolute;
    top: 8px;
    left: 0;

    width: 2px;
    height: 19px;

    content: '';

    border-left: 2px dotted #d4d4d4;
}

.connection_info .first_step .chain:after
{
    position: absolute;
    top: 30px;
    left: -2px;

    width: 6px;
    height: 6px;

    content: '';

    border: 2px solid #d4d4d4;
    border-radius: 50%;
}


.connection_info .first_step > .icon
{
    width: 56px;
    margin-right: 16px;
    margin-left: 40px;
}

.connection_info .first_step > .icon img
{
    display: block;

    max-width: 100%;
}

.connection_info .first_step > .name
{
    font-size: 22px;
    font-weight: bold;
    line-height: 150%;

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

.connection_info .first_step .contacts
{
    display: flex;

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

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}

.connection_info .first_step .contacts > * + *
{
    margin-left: 52px;
}


.connection_info .first_step .phone
{
    display: flex;

    width: 230px;
    min-width: 230px;
    max-width: 100%;

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

.connection_info .first_step .phone .icon
{
    width: 27px;
    margin-right: 13px;
}

.connection_info .first_step .phone .icon > *
{
    display: block;

    width: 27px;
    max-width: 100%;
    height: 27px;

    fill: #009bc6;
}

.connection_info .first_step .phone .name
{
    color: #000;
    line-height: 150%;
}

.connection_info .first_step .phone .name ~ *
{
    width: 100%;
    margin-top: 20px;
}

.connection_info .first_step .phone .number
{
    color: var(--text_color);
    font-size: 24px;
    font-weight: bold;
    line-height: 27px;

    white-space: nowrap;
    text-decoration: none;
}

.connection_info .first_step .phone .number + div
{
    margin-top: 7px;
}


.connection_info .first_step .feedback
{
    display: flex;

    width: 320px;
    min-width: 320px;
    max-width: 100%;

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

.connection_info .first_step .feedback .icon
{
    width: 27px;
    margin-right: 13px;
}

.connection_info .first_step .feedback .icon > *
{
    display: block;

    width: 25px;
    max-width: 100%;
    height: 27px;

    fill: #009bc6;
}

.connection_info .first_step .feedback .name
{
    color: #000;
    line-height: 150%;
}

.connection_info .first_step .feedback .btn
{
    color: #fff;
    font-weight: bold;
    line-height: 22px;

    width: 100%;
    margin-top: 20px;
    padding: 16px 32px 17px;

    border-radius: 4px;
    background: #009bc6;
}


.connection_info .first_step .other
{
    width: 100%;
}

.connection_info .first_step .other > * + *
{
    margin-top: 20px;
}

.connection_info .first_step .other > *
{
    color: #000;
    line-height: 150%;

    display: flex;

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

.connection_info .first_step .other > * .icon
{
    width: 27px;
    margin-right: 13px;
}

.connection_info .first_step .other > * .icon > *
{
    display: block;

    max-width: 100%;

    fill: #009bc6;
}

.connection_info .first_step .other > * .icon + *
{
    width: calc(100% - 40px);
}

.connection_info .first_step .other > * a
{
    color: var(--text_color);
}

.connection_info .first_step .other > * a:hover
{
    text-decoration: none;
}


.connection_info .first_step .other .email .icon > *
{
    width: 27px;
    height: 21px;
}

.connection_info .first_step .other .representative .icon > *
{
    width: 22px;
    height: 21px;
}


.connection_info .first_step .other .social .icon > *
{
    width: 25px;
    height: 27px;
}

.connection_info .first_step .other .social .items
{
    display: flex;

    margin-top: 26px;
    margin-bottom: -10px;
    margin-left: -30px;

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

.connection_info .first_step .other .social .items a
{
    color: var(--text_color);
    font-size: 18px;
    font-weight: bold;
    line-height: 150%;

    display: flex;

    max-width: calc(100% - 30px);
    margin-bottom: 10px;
    margin-left: 30px;

    transition: color .2s linear;

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

.connection_info .first_step .other .social .items a + a
{
    margin-left: 23px;
}

.connection_info .first_step .other .social .items .icon
{
    color: #fff;

    display: flex;

    width: 38px;
    min-width: 38px;
    height: 38px;
    margin-right: 15px;

    transition: background .2s linear;

    border-radius: 50%;
    background: #007394;

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

.connection_info .first_step .other .social .items .icon > *
{
    display: block;

    fill: currentColor;
}

.connection_info .first_step .other .social .items .icon.vkontakte > *
{
    width: 22px;
    height: 22px;
}

.connection_info .first_step .other .social .items .icon.odnokl > *
{
    width: 20px;
    height: 20px;
}

.connection_info .first_step .other .social .items .icon.facebook > *
{
    width: 20px;
    height: 20px;
}


.connection_info .first_step .other .social .items a:hover
{
    color: #007394;

    text-decoration: underline;
}

.connection_info .first_step .other .social .items a:hover .icon
{
    background: #009bc6;
}



.connection_info .row
{
    margin-bottom: -31px;
    margin-left: -32px;

    counter-reset: step 1;

    align-items: stretch;
    align-content: stretch;
}

.connection_info .row > *
{
    width: calc(33.333% - 32px);
    margin-bottom: 31px;
    margin-left: 32px;
}


.connection_info .step
{
    color: #000;
    line-height: 150%;

    position: relative;

    min-height: 140px;
    padding: 32px 32px 32px 113px;

    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);
}

.connection_info .step:before
{
    color: #e0e0e0;
    font-size: 72px;
    line-height: 68px;

    position: absolute;
    bottom: 0;
    left: 2px;

    content: counters(step, '') '';
    counter-increment: step;
    pointer-events: none;
}


.connection_info .step .icon
{
    position: absolute;
    top: 32px;
    left: 32px;
}

.connection_info .step .icon img
{
    display: block;
}

.connection_info .step a
{
    color: var(--text_color);
    font-weight: bold;
}

.connection_info .step a:hover
{
    text-decoration: none;
}


.connection_info .step .chain
{
    position: absolute;
    z-index: 3;
    top: 0;
    right: -3px;
    bottom: 0;

    display: block;

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

    content: '';

    border: 2px solid #009bc6;
    border-radius: 50%;
}

.connection_info .step .chain:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;

    width: 19px;
    height: 2px;
    margin: auto;

    content: '';

    border-bottom: 2px dotted #d4d4d4;
}

.connection_info .step .chain:after
{
    position: absolute;
    top: -2px;
    left: 30px;

    width: 6px;
    height: 6px;

    content: '';

    border: 2px solid #d4d4d4;
    border-radius: 50%;
}

.connection_info .step:nth-child(3n+3) .chain
{
    display: none;
}


.connection_info .step .chain_transfer_top
{
    position: absolute;
    z-index: 3;
    top: -3px;
    right: 0;
    left: 0;

    display: none;

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

    content: '';

    border: 2px solid #009bc6;
    border-radius: 50%;
}

.connection_info .step .chain_transfer_top:before
{
    position: absolute;
    bottom: 6px;
    left: 0;

    width: 11px;
    height: 11px;

    content: '';

    border-top: 2px dotted #d4d4d4;
    border-left: 2px dotted #d4d4d4;
    border-radius: 100% 0 0;
}


.connection_info .step .chain_transfer_bottom
{
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: -3px;
    left: 0;

    display: none;

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

    content: '';

    border: 2px solid #009bc6;
    border-radius: 50%;
}

.connection_info .step .chain_transfer_bottom:before
{
    position: absolute;
    top: 6px;
    right: 0;

    width: 11px;
    height: 11px;

    content: '';

    border-right: 2px dotted #d4d4d4;
    border-bottom: 2px dotted #d4d4d4;
    border-radius: 0 0 100%;
}


.connection_info .step .chain_transfer_line
{
    position: absolute;
    top: -17px;
    left: calc(50% + 12px);

    display: none;

    width: calc(200% + 40px);
    height: 2px;

    content: '';

    border-bottom: 2px dotted #d4d4d4;
}


.connection_info .step:nth-child(3n+4) .chain_transfer_top,
.connection_info .step:nth-child(3n+3) .chain_transfer_bottom,
.connection_info .step:nth-child(3n+4) .chain_transfer_line
{
    display: block;
}

.connection_info .step:nth-last-child(1) .chain_transfer_top,
.connection_info .step:nth-last-child(1) .chain_transfer_bottom,
.connection_info .step:nth-last-child(1) .chain_transfer_line
{
    display: none;
}



/*--------------------
    Where buy info
--------------------*/
.where_buy_info .cont.row
{
    justify-content: space-between;
}


.where_buy_info .data
{
    width: calc(50% - 17px);
}


.where_buy_info .region
{
    display: flex;

    margin-bottom: 24px;

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

.where_buy_info .region .label
{
    color: #000;
    font-size: 18px;
    line-height: 150%;

    margin-right: 15px;

    white-space: nowrap;
}

.where_buy_info .region select
{
    display: none;
}

.where_buy_info .region .nice-select
{
    position: relative;

    display: block;

    width: 100%;
}

.where_buy_info .region .nice-select .current
{
    color: var(--text_color);
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;

    position: relative;

    display: flex;

    height: 49px;
    padding: 0 59px 0 19px;

    cursor: pointer;

    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);

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

.where_buy_info .region .nice-select .current span
{
    display: inline-block;
    overflow: hidden;

    vertical-align: top;
    white-space: nowrap;
    text-overflow: ellipsis;

    border-bottom: 1px dotted;
}

.where_buy_info .region .nice-select .current:after
{
    position: absolute;
    top: -4px;
    right: 19px;
    bottom: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

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

    border-bottom: 2px solid #007394;
    border-left: 2px solid #007394;
}

.where_buy_info .region .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;
    padding: 5px 0;

    transition: .2s linear;

    opacity: 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}

.where_buy_info .region .nice-select.open .list
{
    top: calc(100% + 1px);

    visibility: visible;

    opacity: 1;
}

.where_buy_info .region .nice-select .list .scrollbar
{
    overflow: auto;

    max-height: 240px;
}

.where_buy_info .region .nice-select .list .list_item
{
    padding: 10px 19px;

    cursor: pointer;
}

.where_buy_info .region .nice-select .list .list_item:empty
{
    display: none;
}


.where_buy_info .list > * + *
{
    margin-top: 10px;
}

.where_buy_info .list .item
{
    position: relative;

    display: flex;

    padding: 9px 46px 9px 19px;

    transition: .2s linear;

    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .2);

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

.where_buy_info .list .item:hover
{
    border-color: #a3e2f3;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}


.where_buy_info .list .item .name
{
    color: var(--text_color);
    font-weight: bold;
    line-height: 150%;

    width: calc(50% - 10px);
}

.where_buy_info .list .item .city
{
    color: #000;
    line-height: 150%;

    width: calc(50% - 10px);
    margin-left: auto;
}


.where_buy_info .list .item .icons
{
    display: flex;

    width: calc(100% + 16px);
    margin-top: 12px;
    margin-bottom: -8px;
    margin-left: -16px;

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

.where_buy_info .list .item .icons > *
{
    position: relative;

    margin-bottom: 8px;
    margin-left: 16px;
}

.where_buy_info .list .item .icons .icon
{
    color: #000;

    display: flex;

    width: 38px;
    height: 38px;

    transition: .2s linear;

    border: 1px solid #009bc6;
    border-radius: 50%;

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

.where_buy_info .list .item .icons .icon > *
{
    display: block;

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

    fill: currentColor;
}

.where_buy_info .list .item .icons .icon.icon1 > *
{
    width: 18px;
    height: 25px;
}

.where_buy_info .list .item .icons .icon.icon2 > *
{
    width: 21px;
    height: 24px;
}

.where_buy_info .list .item .icons .icon.icon3 > *
{
    width: 22px;
    height: 17px;
}

.where_buy_info .list .item .icons .icon.icon4 > *
{
    width: 24px;
    height: 24px;
}

.where_buy_info .list .item .icons .icon.icon5 > *
{
    width: 22px;
    height: 22px;
}

.where_buy_info .list .item .icons .icon.icon6 > *
{
    width: 19px;
    height: 26px;
}

.where_buy_info .list .item .icons > *:hover .icon
{
    color: #fff;

    background: #009bc6;
}

.where_buy_info .list .item .icons .tooltip
{
    color: #000;
    font-size: 14px;
    line-height: 150%;

    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;

    visibility: hidden;

    padding: 1px 12px 2px;

    transition: .2s linear;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;

    opacity: 0;
    border: 1px solid #f2f2f2;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .5);
}

.where_buy_info .list .item .icons .tooltip:after
{
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    left: 0;

    display: block;

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

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

    border-bottom: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
    background: #fff;
}

.where_buy_info .list .item .icons > *:hover .tooltip
{
    bottom: calc(100% + 6px);

    visibility: visible;

    opacity: 1;
}


.where_buy_info .list .item .details
{
    color: #007394;
    font-size: 17px;
    line-height: 23px;

    position: absolute;
    top: 30px;
    right: 19px;

    height: 23px;
    padding-right: 25px;

    transition: color .2s linear;
}

.where_buy_info .list .item .details:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

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

    border-bottom: 2px solid #007394;
    border-left: 2px solid #007394;
}

.where_buy_info .list .item .details span
{
    transition: opacity .2s linear;

    opacity: 0;
}

.where_buy_info .list .item .details:hover
{
    color: var(--text_color);
}

.where_buy_info .list .item .details.active:after
{
    transform: rotate(-225deg);
}


.where_buy_info .list .item .info
{
    color: #000;
    font-size: 14px;
    line-height: 150%;

    display: none;

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

.where_buy_info .list .item .info .row
{
    margin-bottom: -16px;
    margin-left: -32px;
}

.where_buy_info .list .item .info .row > *
{
    display: flex;

    max-width: calc(100% - 32px);
    margin-bottom: 16px;
    margin-left: 32px;

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

.where_buy_info .list .item .info .phone
{
    font-weight: bold;
    line-height: 22px;

    white-space: nowrap;
}

.where_buy_info .list .item .info .phone a
{
    color: var(--text_color);
    font-size: var(--font_size);

    display: inline-block;

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

.where_buy_info .list .item .info .icon
{
    display: block;

    width: 17px;
    height: 17px;
    margin-top: 2px;
    margin-right: 8px;

    fill: #009bc6;
}


.where_buy_info .list .item:hover .details span
{
    opacity: 1;
}


.where_buy_info .map
{
    width: calc(50% - 17px + (100vw - 1240px - var(--scroll_width)) / 2);
    margin-right: calc((100vw - 1240px - var(--scroll_width)) / -2);
    margin-left: auto;
}

.where_buy_info .map #map
{
    width: 100%;
    height: 580px;

    background: #ddd;
}



/*----------
    Kits
----------*/
.kits
{
    margin-top: -20px;
}


.kits .row
{
    margin-bottom: -32px;
    margin-left: -32px;

    align-items: stretch;
    align-content: stretch;
}

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


.kits .kit
{
    position: relative;
    z-index: 3;
}

.kits .kit:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

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

    border: 2px solid transparent;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);
}


.kits .kit .name
{
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    line-height: 150%;

    padding: 4px 32px 5px;

    transition: background .2s linear;

    border-radius: 4px 4px 0 0;
    background: #007394;
}


.kits .kit .info
{
    position: relative;

    padding: 12px 32px 32px;
}


.kits .kit .sticker
{
    color: #fff;
    font-size: 14px;
    line-height: 150%;

    position: absolute;
    z-index: 3;
    top: 7px;
    left: 7px;

    padding: 0 13px 2px;

    border-radius: 2px;
    background: #eb5757;
}


.kits .kit .thumb
{
    display: flex;

    height: 218px;

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

.kits .kit .thumb img
{
    display: block;

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


.kits .kit .price
{
    color: #009bc6;
    font-weight: bold;
    line-height: 22px;

    white-space: nowrap;
}

.kits .kit .price b
{
    font-size: 36px;
    font-weight: 800;
    line-height: 150%;
}


.kits .kit .details
{
    color: #007394;
    font-size: 17px;
    font-weight: bold;
    line-height: 23px;

    display: block;

    margin-top: 12px;
    padding: 9px 19px 10px;

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

    border: 1px solid #007394;
    border-radius: 4px;
}

.kits .kit .details:hover
{
    color: #fff;

    border-color: #009bc6;
    background: #009bc6;
}



.kits .kit:hover:before
{
    top: -18px;
    left: -13px;

    width: calc(100% + 26px);
    height: calc(100% + 36px);

    border-color: #a3e2f3;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}

.kits .kit:hover .name
{
    background: #009bc6;
}



/*--------------------
    Equipment info
--------------------*/
.equipment_info .data
{
    padding: 32px;

    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);
}


.equipment_info .row
{
    margin-bottom: -32px;
    margin-left: -72px;
}

.equipment_info .row > *
{
    width: calc(33.333% - 72px);
    margin-bottom: 32px;
    margin-left: 72px;
}


.equipment_info .name
{
    color: #003;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;

    margin-bottom: 17px;
}


.equipment_info .desc
{
    color: #000;
    line-height: 150%;
}



/*-------------------
    Tariff banner
-------------------*/
.tariff_banner .data
{
    display: flex;

    padding: 47px 73px 86px 32px;

    border-radius: 4px;
    background: #e1e1fb url(../images/bg_tariff_banner.svg) calc(100% - 4px) 50% no-repeat;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .2);

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

.tariff_banner .name
{
    font-size: 42px;
    line-height: 150%;

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


.tariff_banner .features
{
    display: flex;

    width: calc(100% - 236px);
    margin-bottom: -20px;
    margin-left: -52px;

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

.tariff_banner .features > *
{
    width: calc(33.333% - 52px);
    margin-bottom: 20px;
    margin-left: 52px;
}

.tariff_banner .features .feature
{
    color: #003;
    line-height: 22px;

    display: flex;

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

.tariff_banner .features .icon
{
    display: flex;

    width: 78px;
    height: 78px;
    padding: 10px;

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

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

.tariff_banner .features .icon img
{
    display: block;

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

.tariff_banner .features .icon + *
{
    width: calc(100% - 97px);

    align-self: center;
}


.tariff_banner .order_btn
{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;

    display: flex;

    width: 216px;
    height: 54px;
    padding: 0 15px;

    border-radius: 4px;
    background: #009bc6;

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

.tariff_banner .order_btn .icon
{
    display: block;

    width: 27px;
    height: 27px;
    margin-right: 22px;

    fill: currentColor;
}



/*------------------
    Product info
------------------*/
.product_info .product_name
{
    font-size: 34px;
    font-weight: 800;
    line-height: 46px;

    display: block;

    margin-bottom: 30px;
}


.product_info .kit
{
    display: flex;

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


.product_info .kit .title
{
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;

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


.product_info .kit .img
{
    width: 328px;
    max-width: 100%;
    margin-top: -20px;

    order: 3;
}

.product_info .kit .img img
{
    display: block;

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


.product_info .kit .info
{
    width: calc(100% - 354px);
}


.product_info .kit .buy
{
    display: flex;

    margin-top: 30px;
    margin-left: -30px;

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


.product_info .kit .buy .price
{
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;

    margin-left: 30px;

    white-space: nowrap;
}

.product_info .kit .buy .price b
{
    font-size: 36px;
    font-weight: 800;
    line-height: 150%;
}


.product_info .kit .buy .buy_btn
{
    color: #fff;
    font-weight: 800;
    line-height: 22px;

    margin-left: 30px;
    padding: 16px 28px;

    text-transform: uppercase;

    border-radius: 4px;
    background: #009bc6;
}


.product_info .kit .buy .options
{
    width: calc(100% + 30px);
    margin-top: 10px;
    margin-left: 30px;
}

.product_info .kit .buy .options input[type=checkbox]
{
    display: none;
}

.product_info .kit .buy .options label
{
    color: #000;
    font-size: 18px;
    line-height: 150%;

    position: relative;

    display: flex;

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

    cursor: pointer;

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

.product_info .kit .buy .options label .icon
{
    color: #009bc6;

    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 28px;
    height: 28px;

    transition: color .2s linear;

    border: 2px solid;
    border-radius: 50%;
}

.product_info .kit .buy .options label .icon:before,
.product_info .kit .buy .options label .icon:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 12px;
    height: 2px;
    margin: auto;

    content: '';

    background: currentColor;
}

.product_info .kit .buy .options label .icon:after
{
    width: 2px;
    height: 12px;
}

.product_info .kit .buy .options label .text
{
    display: inline-block;

    vertical-align: top;

    border-bottom: 2px dashed #828282;
}

.product_info .kit .buy .options label b
{
    color: var(--text_color);

    display: inline-block;

    margin-left: 8px;

    vertical-align: top;
    white-space: nowrap;
}

.product_info .kit .buy .options input[type=checkbox]:checked + label .icon,
.product_info .kit .buy .options input[type=checkbox]:checked + label .icon
{
    color: #5bba3a;
}

.product_info .kit .buy .options input[type=checkbox]:checked + label .icon:before
{
    top: 3px;
    left: -11px;

    width: 5px;

    transform: rotate(45deg);
}

.product_info .kit .buy .options input[type=checkbox]:checked + label .icon:after
{
    left: 3px;

    width: 15px;
    height: 2px;

    transform: rotate(-45deg);
}


.product_info .kit .buy .options input[type=checkbox]:checked + label:hover .icon
{
    color: #009bc6;
}

.product_info .kit .buy .options input[type=checkbox]:checked + label:hover .icon:before
{
    top: 0;
    left: 0;

    width: 12px;

    transform: none;
}

.product_info .kit .buy .options input[type=checkbox]:checked + label:hover .icon:after
{
    opacity: 0;
}


.product_info > .text_block
{
    margin-top: 32px;
}



/*------------------
    Tariffs info
------------------*/
.tariffs_info .tabs
{
    display: flex;

    margin-bottom: 30px;

    border-bottom: 1px solid;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.tariffs_info .tabs button
{
    font-size: 21px;
    line-height: 28px;

    position: relative;

    display: block;

    box-sizing: border-box;
    width: 227px;
    height: 44px;
    padding: 6px 20px 8px;

    cursor: pointer;
    transition: .2s linear;

    border: 1px solid #bdbdbd;
    border-radius: 4px 4px 0 0;
    background: #fff;
}

.tariffs_info .tabs button + button
{
    margin-left: 32px;
}


.tariffs_info .tabs button .tooltip
{
    position: absolute;
    top: -10px;
    right: -10px;
}

.tariffs_info .tabs button .tooltip .icon
{
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;

    display: block;

    width: 20px;
    height: 20px;

    text-align: center;

    border: 1px solid #fff;
    border-radius: 50%;
    background: #009bc6;
    box-shadow: 0 0 0 2px #009bc6;
}

.tariffs_info .tabs button .tooltip .text
{
    color: #000;
    font-size: 14px;
    line-height: 150%;

    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;

    visibility: hidden;

    padding: 1px 12px 2px;

    transition: .2s linear;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;

    opacity: 0;
    border: 1px solid #f2f2f2;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .5);
}

.tariffs_info .tabs button .tooltip .text:after
{
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    left: 0;

    display: block;

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

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

    border-bottom: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
    background: #fff;
}

.tariffs_info .tabs button .tooltip:hover .text
{
    bottom: calc(100% + 6px);

    visibility: visible;

    opacity: 1;
}


.tariffs_info .tabs button:hover,
.tariffs_info .tabs button.active
{
    color: #fff;

    border-color: var(--text_color);
    background: var(--text_color);
}



.tariffs_info .plans_links
{
    display: flex;

    margin-top: 44px;
    margin-bottom: 30px;

    border-bottom: 1px solid #e0e0e0;

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

.tariffs_info .plans_links .name
{
    color: #4f4f4f;
    font-size: 18px;
    line-height: 150%;

    margin-bottom: 5px;

    white-space: nowrap;
}

.tariffs_info .plans_links .row
{
    width: calc(100% - 30px);
    margin-bottom: -10px;
}

.tariffs_info .plans_links .row > *
{
    margin-bottom: 10px;
    margin-left: 30px;
}

.tariffs_info .plans_links button
{
    font-size: 22px;
    font-weight: bold;
    line-height: 150%;

    position: relative;

    display: block;

    padding: 8px 0;

    transition: .2s linear;

    border-bottom: 5px solid transparent;
}

.tariffs_info .plans_links button:hover
{
    color: #007394;

    border-color: #07a5d1;
}


.tariffs_info .plan_info + .plan_info
{
    margin-top: 30px;
}


.tariffs_info .plan_info .text_block
{
    color: #000;
    font-size: 18px;
    line-height: 150%;
}


.tariffs_info .plan_info .plan_features
{
    color: #4f4f4f;
    font-size: 18px;
    line-height: 150%;

    margin-top: 24px;
}

.tariffs_info .plan_info .plan_features > *
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}

.tariffs_info .plan_info .plan_features > * + *
{
    margin-top: 6px;
}

.tariffs_info .plan_info .plan_features .name
{
    margin-right: 6px;

    white-space: nowrap;
}

.tariffs_info .plan_info .plan_features .val
{
    color: #000;

    width: 100%;
}

.tariffs_info .plan_info .plan_features .val b
{
    color: #003;
}


.tariffs_info .tariffs
{
    margin-top: 30px;
    padding: 0 !important;

    background: none !important;
}


.tariffs_info .important
{
    box-sizing: border-box;
    margin-top: 30px;
    padding: 38px;

    border: 1px solid #009bc6;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}

.tariffs_info .important .title
{
    font-size: 22px;
    font-weight: 800;
    line-height: 150%;

    position: relative;

    display: flex;

    min-height: 36px;
    margin-bottom: 16px;
    padding-left: 47px;

    text-transform: uppercase;

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

.tariffs_info .important .title .icon
{
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 36px;

    position: absolute;
    top: 0;
    left: 0;

    width: 36px;
    height: 36px;
    margin: auto;

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

    border-radius: 50%;
    background: #009bc6;
}

.tariffs_info .important .title .icon:before
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: calc(100% - 4px);
    height: calc(100% - 4px);
    margin: auto;

    content: '';

    border: 1px solid #fff;
    border-radius: 50%;
}

.tariffs_info .important .text_block
{
    font-size: 17px;

    padding-left: 47px;
}



/*------------------
    Coverage map
------------------*/
.coverage_map .head
{
    margin-top: -40px;
}

.coverage_map .head .cont
{
    display: flex;

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


.coverage_map .head .info
{
    width: 680px;
    max-width: calc(100% - 546px);
    padding-top: 30px;
}


.coverage_map .head .order_btn
{
    color: #fff;
    font-weight: bold;
    line-height: 22px;

    display: inline-block;

    height: 54px;
    margin-top: 30px;
    padding: 16px 32px;

    vertical-align: top;

    border-radius: 4px;
    background: #009bc6;
    box-shadow: 0 0 15px rgba(187, 205, 202, .25);
}


.coverage_map .head .img
{
    width: 452px;
    max-width: 100%;
    margin-right: 32px;
    margin-bottom: -51px;
}

.coverage_map .head .img img
{
    display: block;

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



.coverage_map .map_block
{
    margin-bottom: 50px;
}


.coverage_map .map_block .filter
{
    position: relative;
    z-index: 3;

    padding: 33px 0 41px;

    background: #003;
}

.coverage_map .map_block .filter .bg
{
    position: absolute;
    z-index: -2;
    top: 0;
    right: 50%;

    width: 1600px;
    height: 100%;
    margin-right: -1006px;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.coverage_map .map_block .filter .form
{
    margin-bottom: -10px;
}

.coverage_map .map_block .filter .form .label
{
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 150%;

    margin-bottom: 5px;
}

.coverage_map .map_block .filter .form .input
{
    font-size: 18px;

    height: 54px;
    padding: 0 20px;
}

.coverage_map .map_block .filter .form .submit
{
    margin-bottom: 10px;

    align-self: flex-end;
}

.coverage_map .map_block .filter .form .submit_btn
{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;

    display: flex;

    width: 100%;
    height: 54px;
    padding: 0 15px;

    border-radius: 4px;
    background: #009bc6;

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

.coverage_map .map_block .filter .form .submit_btn .icon
{
    display: block;

    width: 27px;
    height: 27px;
    margin-right: 22px;

    fill: currentColor;
}


.coverage_map .map_block .map_wrap
{
    position: relative;

    background: #ddd;
}

.coverage_map .map_block .map_wrap .map
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}


.coverage_map .map_block .cont
{
    pointer-events: none;
}


.coverage_map .map_block .satellites
{
    width: 254px;
    max-width: 100%;
    padding: 30px 32px 40px;

    pointer-events: auto;

    background: rgba(255, 255, 255, .84);
}

.coverage_map .map_block .satellites .title
{
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;

    margin-bottom: 23px;
}

.coverage_map .map_block .satellites .range + .range
{
    margin-top: 17px;
}

.coverage_map .map_block .satellites .name
{
    font-weight: 800;
    line-height: 150%;

    display: inline-block;

    margin-bottom: 10px;
    padding: 6px 10px;

    vertical-align: top;
    text-transform: uppercase;

    border: 2px solid #007394;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(208, 208, 208, .2);
}

.coverage_map .map_block .satellites .items > *
{
    color: #000;
    font-size: 13px;
    font-weight: bold;
    line-height: 150%;

    display: inline-block;

    margin-top: 7px;
    padding: 9px 11px;

    vertical-align: top;

    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(208, 208, 208, .2);
}


.coverage_map .map_block .satellites .bg .name
{
    color: #fff;

    background: #007394;
}

.coverage_map .map_block .satellites .bg .items > *
{
    color: #fff;

    background: #5bba3a;
}



.coverage_map .satellites_list .satellite + .satellite
{
    margin-top: 20px;
}

.coverage_map .satellites_list .satellite
{
    display: flex;

    padding: 30px;

    transition: .2s linear;

    border: 2px solid transparent;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 15px rgba(187, 205, 202, .1);

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

.coverage_map .satellites_list .satellite:hover
{
    border-color: #a3e2f3;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}


.coverage_map .satellites_list .satellite .info
{
    width: 338px;
    max-width: 100%;
}

.coverage_map .satellites_list .satellite .info .type
{
    color: #007394;
    font-weight: bold;
    line-height: 150%;

    margin-bottom: 16px;
}

.coverage_map .satellites_list .satellite .info .name
{
    font-size: 24px;
    font-weight: bold;
    line-height: 150%;
}

.coverage_map .satellites_list .satellite .links
{
    display: flex;

    margin-top: 15px;
    margin-bottom: -11px;
    margin-left: -22px;

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

.coverage_map .satellites_list .satellite .links > *
{
    width: calc(50% - 22px);
    margin-bottom: 11px;
    margin-left: 22px;
}

.coverage_map .satellites_list .satellite .links a
{
    color: var(--text_color);
    font-weight: bold;
    line-height: 22px;

    display: block;

    padding: 7px 14px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    border: 1px solid #bdbdbd;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(187, 205, 202, .25);
}

.coverage_map .satellites_list .satellite .links a:hover,
.coverage_map .satellites_list .satellite .links a.blue
{
    color: #fff;

    border-color: #009bc6;
    background: #009bc6;
}


.coverage_map .satellites_list .satellite .col_right
{
    width: calc(100% - 385px);
    margin-left: auto;
}


.coverage_map .satellites_list .satellite .features
{
    display: flex;

    margin-bottom: -20px;
    margin-left: -16px;

    text-align: center;

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

.coverage_map .satellites_list .satellite .features > *
{
    max-width: calc(100% - 16px);
    margin-bottom: 20px;
    margin-left: 16px;
}

.coverage_map .satellites_list .satellite .features .name
{
    font-weight: bold;
    line-height: 150%;
}

.coverage_map .satellites_list .satellite .features .val
{
    color: #000;
    font-size: 20px;
    line-height: 150%;

    margin-top: 16px;
}


.coverage_map .satellites_list .satellite .files
{
    display: flex;

    margin-top: 32px;

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

.coverage_map .satellites_list .satellite .files .spoler_btn
{
    color: #007394;
    font-size: 18px;
    line-height: 150%;

    position: relative;

    margin-left: auto;
    padding-right: 18px;
}

.coverage_map .satellites_list .satellite .files .spoler_btn:after
{
    position: absolute;
    top: -2px;
    right: 0;
    bottom: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

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

    border-bottom: 2px solid #007394;
    border-left: 2px solid #007394;
}

.coverage_map .satellites_list .satellite .files .spoler_btn span
{
    transition: border-color .2s linear;

    border-bottom: 1px dashed;
}

.coverage_map .satellites_list .satellite .files .spoler_btn:hover span
{
    border-color: transparent;
}

.coverage_map .satellites_list .satellite .files .list
{
    display: none;

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

.coverage_map .satellites_list .satellite .files .file + .file
{
    margin-top: 2px;
}

.coverage_map .satellites_list .satellite .files .file:nth-child(even)
{
    background: #fcfcfc;
}

.coverage_map .satellites_list .satellite .files .file
{
    display: flex;

    min-height: 68px;
    padding: 15px 29px;

    background: #f8f8f8;

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

.coverage_map .satellites_list .satellite .files .file .name
{
    color: #000;
    line-height: 24px;

    width: 100%;

    text-transform: uppercase;
}

.coverage_map .satellites_list .satellite .files .file .size
{
    font-weight: bold;
    line-height: 22px;

    margin-left: 32px;

    white-space: nowrap;
}

.coverage_map .satellites_list .satellite .files .file .download
{
    color: var(--text_color);
    font-weight: bold;
    line-height: 22px;

    display: flex;

    width: 135px;
    min-width: 135px;
    height: 38px;
    margin-left: 32px;

    transition: .2s linear;
    white-space: nowrap;
    text-decoration: none;

    border: 1px solid #bdbdbd;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(187, 205, 202, .25);

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.coverage_map .satellites_list .satellite .files .file .download .icon
{
    display: block;

    width: 22px;
    height: 22px;
    margin-right: 19px;

    fill: currentColor;
}

.coverage_map .satellites_list .satellite .files .file .download:hover
{
    color: #fff;

    border-color: #009bc6;
    background: #009bc6;
    box-shadow: 0 5px 16px rgba(0, 133, 255, .68);
}

.coverage_map .satellites_list .satellite .files.active .spoler_btn:after
{
    top: 6px;

    transform: rotate(-225deg);
}



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

    overflow: hidden;

    background: #010129;
}


footer .cont
{
    position: relative;
    z-index: 3;
}


footer .img
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;

    display: block;

    width: 382px;
    max-width: 100%;
    height: 302px;
    max-height: 100%;

    pointer-events: none;
}


footer .top
{
    padding: 36px 0;

    border-bottom: 1px solid #202043;
}

footer .top .row
{
    margin-left: -32px;
}


footer .info
{
    padding: 36px 0;

    background: #003;
}

footer .info .row
{
    margin-left: -32px;
}


footer .bottom
{
    color: #808099;
    font-size: 13px;
    line-height: 150%;

    padding: 21px 0;

    border-top: 1px solid #202043;
}

footer .bottom .cont.row
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}


footer .bottom .links
{
    display: flex;

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

footer .bottom .links a
{
    color: currentColor;

    transition: color .2s linear;
    text-decoration: none;
}

footer .bottom .links a:hover
{
    color: #fff;
}



footer .logo
{
    width: calc(25% - 32px);
    margin-right: auto;
    margin-left: 32px;
}

footer .logo img
{
    display: block;
}



footer .phone
{
    color: #808099;
    line-height: 150%;

    width: calc(25% - 32px);
    margin-left: 32px;
}

footer .phone .number
{
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;

    display: inline-block;

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



footer .info .col_left
{
    width: calc(25% - 32px);
    margin-left: 32px;
}


footer .order_btn
{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;

    display: flex;

    width: 216px;
    height: 54px;
    padding: 0 15px;

    border-radius: 4px;
    background: #009bc6;
    box-shadow: 0 5px 16px rgba(0, 133, 255, .68);

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

footer .order_btn .icon
{
    display: block;

    width: 27px;
    height: 27px;
    margin-right: 22px;

    fill: currentColor;
}



footer .email
{
    color: #fff;
    line-height: 24px;

    margin-top: 30px;
}

footer .email a
{
    color: currentColor;
}

footer .email a:hover
{
    text-decoration: none;
}



footer .socials
{
    display: flex;

    margin-top: 26px;

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

footer .socials a
{
    color: #fff;

    display: flex;

    width: 38px;
    height: 38px;
    padding: 5px;

    transition: .2s linear;

    border-radius: 50%;
    background: #007394;

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

footer .socials a + a
{
    margin-left: 23px;
}

footer .socials .icon
{
    display: block;

    fill: currentColor;
}

footer .socials .vkontakte .icon
{
    width: 22px;
    height: 22px;
}

footer .socials .facebook .icon
{
    width: 11px;
    height: 20px;
}

footer .socials .odnokl .icon
{
    width: 12px;
    height: 20px;
}

footer .socials a:hover
{
    background: #009bc6;
    box-shadow: 0 5px 16px rgba(0, 133, 255, .68);
}



footer .info .links
{
    width: calc(50% - 32px);
    margin-left: 32px;

    column-gap: 32px;
    column-count: 3;
}

footer .info .links > *
{
    transform: translateZ(0);

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

footer .info .links > * + *
{
    margin-top: 5px;
}

footer .info .links a
{
    color: #fff;
    font-weight: bold;
    line-height: 22px;

    display: inline-block;

    max-width: calc(100% + 28px);
    margin: 0 -14px;
    padding: 5px 14px 7px;

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

    border-radius: 4px;
}

footer .info .links a:hover,
footer .info .links a.active
{
    background: #009bc6;
    box-shadow: 0 5px 16px rgba(0, 133, 255, .68);
}



footer .subscribe
{
    width: calc(25% - 32px);
    margin-left: 32px;
}

footer .subscribe .title
{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 150%;

    margin-bottom: 6px;
}

footer .subscribe form
{
    display: flex;

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

footer .subscribe form .input
{
    color: #4f4f4f;
    font-family: var(--font_family);
    font-size: var(--font_size);

    display: block;

    width: calc(100% - 59px);
    height: 45px;
    padding: 0 24px 2px;

    border: none;
    border-radius: 4px 0 0 4px;
    background: #fff;
}

footer .subscribe form .submit_btn
{
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 150%;

    width: 59px;
    height: 45px;

    border-radius: 0 4px 4px 0;
    background: #009bc6;
    box-shadow: 0 5px 16px rgba(0, 133, 255, .68);
}

footer .subscribe form .agree
{
    color: #e0e0e0;
    font-size: 12px;
    line-height: 150%;

    margin-top: 8px;
}

footer .subscribe form .agree a
{
    color: currentColor;
}

footer .subscribe form .agree a:hover
{
    text-decoration: none;
}



footer .creator a
{
    color: currentColor;

    display: flex;

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

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

footer .creator img
{
    display: block;

    margin: 0 12px;
}

footer .creator a:hover
{
    color: #fff;
}



/*-----------
    PopUp
-----------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 337px;
    max-width: 100%;
    padding: 35px 32px;

    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(230, 230, 230, .3);
}

.modal_title
{
    font-size: 32px;
    font-weight: bold;
    line-height: 103.4%;

    margin-bottom: 20px;

    text-align: center;
}
