/*------------------------------------*\
    import mixins
\*------------------------------------*/

.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

/*------------------------------------*\
      import base
\*------------------------------------*/

/*------------------------------------*\
      fonts
\*------------------------------------*/

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans/400.woff2') format('woff2'),
    url('../fonts/IBMPlexSans/400.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans/600.woff2') format('woff2'),
    url('../fonts/IBMPlexSans/600.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans/500.woff2') format('woff2'),
    url('../fonts/IBMPlexSans/500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans/300.woff2') format('woff2'),
    url('../fonts/IBMPlexSans/300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans/700.woff2') format('woff2'),
    url('../fonts/IBMPlexSans/700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/*------------------------------------*\
      utils
\*------------------------------------*/

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

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
    -webkit-transition-delay: 9999s;
}

input.digit[type=number]::-webkit-inner-spin-button,
input.digit[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

input.digit[type="number"]:hover,
input.digit[type="number"]:focus {
    -moz-appearance: number-input;
}

.hidden,
[hidden] {
    display: none !important;
}

*.isDisable,
*.disable {
    opacity: .33;
    cursor: default;
}

.ovh {
    overflow: hidden;
}

.ovx-h {
    overflow-x: hidden;
}

.ovy-h {
    overflow-x: hidden;
}

.visuallyHidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px; width: 1px;
    margin: -1px; padding: 0; border: 0;
}

/*------------------------------------*\
      base styles
\*------------------------------------*/

html, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 100%;
    min-height: 100vh;
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
}

body {
    min-height: 100vh;
}

ul {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}

strong,
b {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin-top: 0;
    line-height: 1.5rem;
}

h1,
h2,
h3,
h4 {
    font-weight: 300;
    color: #49555a;
    margin-top: 0;
    margin-bottom: 1rem;
}

h1 {
    font-weight: 300;
    font-size: 3.125rem;
}

@media (max-width: 480px) {

h1 {
        font-size: 1.875rem;
        line-height: 2.25rem
}
    }

h2 {
    font-size: 2.5rem;
    line-height: 3.2rem;
    font-weight: 300;
}

@media (max-width: 480px) {

h2 {
        font-size: 1.875rem;
        line-height: 2.25rem
}
    }

h3 {
    font-size: 2.2rem;
    font-weight: 300;
}

h4 {
    font-size: 2.0rem;
    font-weight: 300;
}

@-webkit-keyframes blueGradient {
    0%{background-position:50% 0%}
    50%{background-position:51% 100%}
    100%{background-position:50% 0%}
}

@keyframes blueGradient {
    0%{background-position:50% 0%}
    50%{background-position:51% 100%}
    100%{background-position:50% 0%}
}

.server-info {
  margin-bottom: 10px;
}

/*------------------------------------*\
      import layout
\*------------------------------------*/

.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 5rem;
    color: #4a4a4a;
}

@media (max-width: 767px) {

.container {
        margin-bottom: 3rem
}
    }

@media (max-width: 480px) {

.container {
        margin-bottom: 2rem
}
    }

@media (min-width: 1024px) {

.container.reviews h2, .container.clients h2 {
                margin-bottom: 2rem
        }
            }

.container--half {
        width: calc(50% - 1rem);
    }

.container--half:not(:last-child) {
            margin-right: 2rem;
        }

@media (max-width: 1023px) {

.container--half {
            width: 100%
    }

            .container--half:not(:last-child) {
                margin-right: 0rem;
            }
        }

.container__head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        margin-bottom: 1.25rem;
    }

.container__head a {
        color: #0097dc;
        font-weight: 500;
        -webkit-transition: color .2s ease-in-out;
        -o-transition: color .2s ease-in-out;
        transition: color .2s ease-in-out;
    }

.container__head a:hover {
            color: rgb(51, 190, 255);
        }

.container__head h2 {
            margin-bottom: 0;
        }

.container__head a {
            display: inline-block;
            height: 1.8rem;
            margin-left: 1.5rem;
        }

.container__head--actions {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start;
            width: 25%;
            padding-right: 1rem;
            margin-bottom: 0;
        }

@media (max-width: 1023px) {

.container__head--actions {
                width: 100%
        }
            }

.container__head--actions h2 {
                margin-bottom: 1rem;
            }

.container__head--actions p {
                width: 100%;
            }

.container__head--actions a {
                position: relative;
                height: auto;
                margin-top: 1.25rem;
                margin-left: 0;
            }

@media (max-width: 1023px) {

.container__head--actions a {
                    margin-top: 0
            }
                }

@media (max-width: 480px) {

.container__head {
            width: 100%;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between
    }
        }

.container__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        width: 100%;
    }

.container__content--actions {
            width: 75%;
        }

@media (max-width: 1023px) {

.container__content--actions {
                width: 100%;
                margin-top: 23px
        }
            }

@media (max-width: 767px) {

.container__content--actions {
                display: block;
                margin-left: -10px
        }

                .container__content--actions:after {
                    content: 'flickity';
                    display: none;
                }
            }

.container__content ul {
            width: 100%;
            margin-left: 2rem;
        }

@media (max-width: 767px) {

.container__content ul {
                margin-left: 1.5rem
        }
            }

@media (max-width: 360px) {

.container__content ul {
                margin-left: .5rem
        }
            }

.container__content ul:not(.transform-text) {
            margin-top: 1rem;
            margin-bottom: 2rem;
            list-style-type: none;
            counter-reset: circ-counter;
        }

.container__content ul:not(.transform-text) li {
                line-height: 1.4rem;
                margin-bottom: .5rem;
                counter-increment: circ-counter;
            }

.container__content ul:not(.transform-text) li::before {
                    font-weight: 400;                   
                    content: counter(circ-counter, disc);
                    margin-right: 1.5rem;
                }

.container__content ul:not(.transform-text) li a {
                    color: #0043dc;
                }

@media (max-width: 767px) {

.container {
        margin-bottom: 2rem
}
    }

.wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

@media (max-width: 1204px) {

.wrap {
        padding-right: 2rem;
        padding-left: 2rem;
}
    }

@media (max-width: 360px) {

.wrap {
        padding-right: 1rem;
        padding-left: 1rem;
}
    }

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 120px 0;
    background: #0043dc;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#0043dc), to(#1c439b));
    background-image: -webkit-linear-gradient(bottom, #0043dc 0%, #1c439b 100%);
    background-image: -o-linear-gradient(bottom, #0043dc 0%, #1c439b 100%);
    background-image: linear-gradient(to top, #0043dc 0%, #1c439b 100%);
    color: #ffffff;
    font-weight: 300;
    margin-top: 3rem;
    font-size: 1rem;
    line-height: 1.15;
    background: -webkit-linear-gradient(275deg, #0043dc, #1c439b, #0043dc, #1c439b);
    background: -o-linear-gradient(275deg, #0043dc, #1c439b, #0043dc, #1c439b);
    background: linear-gradient(175deg, #0043dc, #1c439b, #0043dc, #1c439b);
    background-size: 400% 400%;
    -webkit-animation: blueGradient 20s ease infinite;
            animation: blueGradient 20s ease infinite;
}

.footer br {
        line-height: inherit;
    }

@media (max-width: 767px) {

.footer {
        padding-top: 70px
}
    }

@media (max-width: 480px) {

.footer {
        font-size: 14px
}
    }

.footer a {
        -webkit-transition: opacity .2s ease;
        -o-transition: opacity .2s ease;
        transition: opacity .2s ease;
    }

.footer a:hover {
            opacity: .77;
        }

.footer__inner {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
    }

@media (max-width: 1204px) {

.footer__inner {
        padding-right: 2rem;
        padding-left: 2rem;
    }
    }

@media (max-width: 360px) {

.footer__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    }

.footer__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

@media (max-width: 1023px) {

.footer__top {
            -ms-flex-wrap: wrap;
                flex-wrap: wrap
    }
        }

.footer__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 6rem;
    }

@media (max-width: 1023px) {

.footer__bottom {
            -ms-flex-wrap: wrap;
                flex-wrap: wrap
    }
        }

.footer__search {
        width: 390px;
    }

@media (max-width: 1023px) {

.footer__search {
            display: none
    }
        }

@media (max-width: 1023px) {

.footer__company-info {
            display: none
    }
        }

.footer__logo {
        width: 107px;
        margin-left: -18px;
        margin-top: -10px;
        margin-bottom: 2rem;

    }

.footer__contacts {
        margin-right: 5rem;
        line-height: 1.8rem;
    }

@media (max-width: 1023px) {

.footer__contacts {
            margin-right: 0
    }
        }

.footer__lists {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-flex: 2;
            -ms-flex-positive: 2;
                flex-grow: 2;
    }

@media (max-width: 1023px) {

.footer__lists {
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            margin-top: 1rem
    }
        }

.footer__list-wrap {
        display: block;
        line-height: 1.8rem;
    }

@media (max-width: 1023px) {
            .footer__list-wrap:first-child {
                width: 35%;
                margin-bottom: 2rem;
            }
        }

@media (max-width: 767px) {
            .footer__list-wrap:first-child {
                width: 100%;

            }
        }

.footer__list-wrap:not(:last-child) {
            margin-right: 3rem;
        }

.footer__list-title {
        display: block;
        margin-bottom: 1rem;
        font-weight: 700;
    }

.footer__list li:not(:last-child) {
                margin-bottom: 1rem;
            }

@media (max-width: 767px) {

.footer__list li:not(:last-child) {
                    margin-bottom: .75rem
            }
                }

.menu-active {
  overflow:hidden;
}

.menu-active .header__top-wrap,
      .menu-active .header__menu {
          visibility: hidden;
          opacity: 0;
      }

.menu-active .header__general-wrap {
          background-color: transparent;
          -webkit-box-shadow: none;
                  box-shadow: none;
      }

.menu-active .header__menu-btn {
          background: #fff;
      }

.menu-active .header__menu-btn .crosshair span {
                  background: #dc1d00;
              }

.header {
    display: block;
    position: relative;
    z-index: 101;
}

.header__top-wrap,
    .header__general-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

.header__top-wrap {
        background: #0043dc;
        color: #ffffff;
        -webkit-transition: opacity .2s ease, visibility .2s ease;
        -o-transition: opacity .2s ease, visibility .2s ease;
        transition: opacity .2s ease, visibility .2s ease;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

@media (max-width: 767px) {

.header__top-wrap {
            display: none
    }
        }

.header__general-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
                box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
        height: 6rem;
        -webkit-transition: background-color .2s ease, -webkit-box-shadow .2s ease;
        transition: background-color .2s ease, -webkit-box-shadow .2s ease;
        -o-transition: background-color .2s ease, box-shadow .2s ease;
        transition: background-color .2s ease, box-shadow .2s ease;
        transition: background-color .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

@media (max-width: 767px) {

.header__general-wrap {
            height: 4.5rem
    }
        }

.header__top {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        height: 3rem;
        font-size: 14px;
    }

@media (max-width: 1204px) {

.header__top {
        padding-right: 2rem;
        padding-left: 2rem;
    }
    }

@media (max-width: 360px) {

.header__top {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    }

.header__general {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

@media (max-width: 1204px) {

.header__general {
        padding-right: 2rem;
        padding-left: 2rem
    }
    }

@media (max-width: 360px) {

.header__general {
        padding-right: 1rem;
        padding-left: 1rem
    }
    }

@media (max-width: 1170px) {

.header__general {
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between
    }
        }

.header__contacts {
        margin-right: 5rem;
    }

.header__contacts > a:not(:last-child) {
                margin-right: 3rem;
            }

.header__contacts > a > span {
                margin-left: 0.5rem;
            }

.header__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -webkit-box-flex: 2;
            -ms-flex-positive: 2;
                flex-grow: 2;
        margin-right: 2.5rem;
        -webkit-transition: opacity .2s ease, visibility .2s ease;
        -o-transition: opacity .2s ease, visibility .2s ease;
        transition: opacity .2s ease, visibility .2s ease;
    }

@media (min-width: 1171px) {

.header__menu {
            font-weight: 500;
            font-size: 14px
    }
        }

@media (max-width: 1170px) {

.header__menu {
            display: none
    }
        }

.header__menu > li {
            display: block;
            position: relative;
            text-transform: uppercase;
        }

.header__menu > li:not(:last-child) {
                margin-right: 3rem;
            }

.header__menu > li.active:after, .header__menu > li:hover:after {
                    content: '';
                    display: block;
                    top: 100%;
                    left: 0;
                    position: absolute;
                    width: 100%;
                    height: 44px;
                }

.header__menu > li.active > a:after, .header__menu > li:hover > a:after {
                    opacity: 1;
                }

.header__menu > li:hover .header__submenu {
                    opacity: 1;
                    visibility: visible;
                    pointer-events: auto;
                    -webkit-transform: translateY(0);
                            transform: translateY(0);


                }

.header__menu > li > a {
                position: relative;
            }

.header__menu > li > a:after {
                    content: '';
                    display: block;
                    bottom: -4px;
                    left: 0;
                    position: absolute;
                    width: 100%;
                    height: 2px;
                    background: #0043dc;
                    opacity: 0;
                    -webkit-transition: opacity .2s ease;
                    -o-transition: opacity .2s ease;
                    transition: opacity .2s ease;
                }

.header__submenu {
        top: calc(100% + 44px);
        left: 0;
        position: absolute;
        -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
                box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        background: #fdfdfd;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        -webkit-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
        display: none;
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }

.header__submenu a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            position: relative;
            height: 55px;
            padding: 0.5rem 2rem 0.5rem 2rem;
            white-space: nowrap;
            z-index: 10;
            -webkit-transition: color .2s ease;
            -o-transition: color .2s ease;
            transition: color .2s ease;
            text-transform: capitalize;
            font-size: 1rem;
            font-weight: 400;
        }

.header__submenu a:hover {
                color: #0043dc;
            }

.header__submenu a:hover:before {
                    width: calc(100% + 18px);
                    left: -9px;
                    opacity: 1;
                }

.header__submenu a:after {
                content: '';
                display: block;
                width: 20px;
                height: 20px;
                margin-right: 22px;
                background-size: 20px;
                background-position: center;
                -webkit-transition: background-image .2s ease;
                -o-transition: background-image .2s ease;
                transition: background-image .2s ease;
                -webkit-box-ordinal-group: 0;
                    -ms-flex-order: -1;
                        order: -1;
            }

.header__submenu a:before {
                background-position: -999px;
                background-repeat: no-repeat;
            }

.header__submenu a.icon-news:after {
                    background-image: url(../i/submenu-icons/news.svg);
                }

.header__submenu a.icon-news:before {
                    background-image: url(../i/submenu-icons/news-blue.svg);
                }

.header__submenu a.icon-news:hover:after {
                        background-image: url(../i/submenu-icons/news-blue.svg);
                    }

.header__submenu a.icon-vacancies:after {
                    background-image: url(../i/submenu-icons/vacancies.svg);
                }

.header__submenu a.icon-vacancies:before {
                    background-image: url(../i/submenu-icons/vacancies-blue.svg);
                }

.header__submenu a.icon-vacancies:hover:after {
                        background-image: url(../i/submenu-icons/vacancies-blue.svg);
                    }

.header__submenu a.icon-dc:after {
                    background-image: url(../i/submenu-icons/data-centers.svg);
                }

.header__submenu a.icon-dc:before {
                    background-image: url(../i/submenu-icons/data-centers-blue.svg);
                }

.header__submenu a.icon-dc:hover:after {
                        background-image: url(../i/submenu-icons/data-centers-blue.svg);
                    }

.header__submenu a.icon-requisites:after {
                    background-image: url(../i/submenu-icons/requisites.svg);
                }

.header__submenu a.icon-requisites:before {
                    background-image: url(../i/submenu-icons/requisites-blue.svg);
                }

.header__submenu a.icon-requisites:hover:after {
                        background-image: url(../i/submenu-icons/requisites-blue.svg);
                    }

.header__submenu a:before {
                content: '';
                display: block;
                top: 0;
                left: 0;
                position: absolute;
                width: 100%;
                height: 100%;
                -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
                        box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
                border-radius: 5px;
                background-color: #ffffff;
                opacity: 0;
                -webkit-transition: all .2s ease;
                -o-transition: all .2s ease;
                transition: all .2s ease;
                z-index: -1;
            }

.header__sign-btns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

.header__sign-up-btn {
        background: none;
        font-weight: 700;
    }

.header__sign-up-btn,
    .header__sign-in-btn {
        display: block;
        height: 3rem;
        line-height: 3rem;
        text-transform: uppercase;
        padding: 0 2rem;
        color: #ffffff;
        font-weight: 700;
    }

@media (min-width: 1171px) {
            .header__sign-up-btn:hover, .header__sign-in-btn:hover {
                background-color: rgb(51, 112, 255);
            }

            .header__sign-up-btn:active, .header__sign-in-btn:active {
                background-color: rgb(0, 46, 153);
            }
        }

.header__sign-in-btn {
        background: #0038b9;
        font-weight: 700;
    }

@media (min-width: 1171px) {
            .header__sign-in-btn:hover {
                background-color: rgb(0, 46, 153);
            }

            .header__sign-in-btn:active {
                background-color: rgb(0, 38, 128);
            }
        }

.header__search-field {
        top: 50%;
        right: 0;
        position: absolute;
        -webkit-transform: translateY(-50%) translateX(-20px);
                transform: translateY(-50%) translateX(-20px);
        width: 300px;
        height: 80%;
        padding: .5rem 2rem .5rem 1rem;
        opacity: 0;
        -webkit-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
        display: none;
        visibility: hidden;
        pointer-events: none;
    }

.header__search-field[type=text]::-ms-clear {
            display: none;
            width : 0;
            height: 0;
        }

.header__search-field[type=text]::-ms-reveal {
            display: none;
            width : 0;
            height: 0;
        }

.header__search {
        position: relative;
        width: 2.5rem;
        height: 2.5rem;
        margin-left: 0.5rem;
        margin-right: -9px;
    }

.header__search--active .header__search-field {
                -webkit-transform: translateX(0px) translateY(-50%);
                        transform: translateX(0px) translateY(-50%);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

.header__search--active .header__search-btn {
                background-image: url(../i/search-blue.svg);
            }

.header__search-btn {
        position: relative;
        width: 2.5rem;
        height: 2.5rem;
        background: url(../i/search.svg) no-repeat center;
        -webkit-transition: opacity .2s ease;
        -o-transition: opacity .2s ease;
        transition: opacity .2s ease;
        z-index: 1;
    }

.header__search-btn:hover {
            opacity: .78;
        }

.header__logo img {
            width: 107px;
            margin-left: -18px;
            margin-top: -10px;
            max-width: none;
        }

.header__menu-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-right: -11px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        border: 0;
        padding: 0;
        background: transparent;
        z-index: 101;
        border-radius: 3px;
        -webkit-transition: background-color .2s ease;
        -o-transition: background-color .2s ease;
        transition: background-color .2s ease;
    }

.header__menu-btn .crosshair {
            display: block;
            position: relative;
            width: 19px;
            height: 13px;
        }

.header__menu-btn .crosshair span {
                display: block;
                position: absolute;
                height: 1px;
                width: 100%;
                background: #0043dc;
                opacity: 1;
                left: 0;
                -webkit-transform: rotate(0deg);
                        transform: rotate(0deg);
                -webkit-transition: .25s cubic-bezier(.77, 0, .175, 1);
                -o-transition: .25s cubic-bezier(.77, 0, .175, 1);
                transition: .25s cubic-bezier(.77, 0, .175, 1);
            }

.header__menu-btn .crosshair span:nth-child(1) {
                    top: 0px;
                }

.header__menu-btn .crosshair span:nth-child(2),
                .header__menu-btn .crosshair span:nth-child(3) {
                    top: 6px;
                }

.header__menu-btn .crosshair span:nth-child(4) {
                    top: 12px;
                }

.header__menu-btn--active .crosshair span:nth-child(1) {
                        top: 13px;
                        width: 0%;
                        left: 50%;
                    }

.header__menu-btn--active .crosshair span:nth-child(2) {
                        -webkit-transform: rotate(45deg);
                                transform: rotate(45deg);
                    }

.header__menu-btn--active .crosshair span:nth-child(3) {
                        -webkit-transform: rotate(-45deg);
                                transform: rotate(-45deg);
                    }

.header__menu-btn--active .crosshair span:nth-child(4) {
                        top: 25px;
                        width: 0%;
                        left: 50%;
                    }

/*------------------------------------*\
      import edit plugin
\*------------------------------------*/

/*-- start popup style --*/

body > * {
    -webkit-transition: -webkit-filter .25s ease;
    transition: -webkit-filter .25s ease;
    -o-transition: filter .25s ease;
    transition: filter .25s ease;
    transition: filter .25s ease, -webkit-filter .25s ease;
}

.mfp-wrap ~ * {
	-webkit-filter: blur(10px);
	        filter: blur(10px);
}

html.is-ie .mfp-bg {
    background:rgba(255,255,255,0.9);
}

.mfp-bg {
    background:rgba(255,255,255,0.6);
}

.mfp-close-btn-in .mfp-close {
    color: #ff798a;
    right: 1.5rem;
    top: 1.5rem;

    width: 15px;

    height: 15px;
    line-height: 15px;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.65s ease-out;
  -o-transition: all 0.65s ease-out;
  transition: all 0.65s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.55s ease-out;
  -o-transition: all 0.55s ease-out;
  transition: all 0.55s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*-- end popup style --*/

/*-- start choices style --*/

.choices__list--single {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 2rem);
    height: 63px;
    padding: 1.5rem 1rem 0 2rem;
    margin-right: 2rem;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    color: #fff;
    font-size: 0.875rem;

    background: url(../i/icon/icon-arrow-down.svg) no-repeat;
    background-position: 100% calc(50% + 3px);

    cursor: pointer;
}

@media (max-width: 360px) {

.choices__list--single {
        width: calc(100% - 1rem);
        margin-right: 1rem;
        padding-left: 1rem
}
    }

.choices__list--dropdown {
    border-radius: 5px;
    top: calc(100% + 1px);
}

.choices__list--dropdown.is-active {
        border-color: #4a4a4a;
    }

.choices[data-type*=select-one]:after {
    content: none;
}

/*-- end choices style --*/

/*------------------------------------*\
      import modules
\*------------------------------------*/

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: 0;
    cursor: pointer;
}

.btn--round {
        border-radius: 36px;
        padding: 0 3rem;
        min-height: 58px;
        height: 57px;
    }

.btn--first {
        margin-right: 1em;
    }

.btn--filled {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background: #0043dc;
        color: #ffffff;
        font-weight: 700;
        font-size: 14px;
        -webkit-transition: background-color .2s ease;
        -o-transition: background-color .2s ease;
        transition: background-color .2s ease;
        text-transform: uppercase;
    }

@media (min-width: 1171px) {
            .btn--filled:hover {
                background-color: rgb(51, 112, 255);
            }

            .btn--filled:active {
                background-color: rgb(0, 46, 153);
            }
        }

.btn--white {
        background: #fff;
        color: #0043dc;
    }

@media (min-width: 1171px) {
            .btn--white:hover {
                background-color: rgb(242, 242, 242);
            }

            .btn--white:active {
                background-color: rgb(217, 217, 217);
            }
        }

.btn.isCopy {
        display: block;
        top: 50%;
        left: calc(100% + 0.7rem);
        position: absolute;
        width: 14px;
        height: 19px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        margin-top: 0 !important;
    }

.btn.isCopy:not(.isSuccess):hover {
            opacity: .77;
        }

.btn.isCopy > span {
            display: block;
            font-size: 12px;
            top: 50%;
            left: calc(100% + 5px);
            position: absolute;
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%);
            -webkit-transition: all .2s ease-in-out;
            -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
            overflow: hidden;
            width: 0;
            opacity: 0;
            background: #fff;
            padding-right: 6px;
        }

@media (max-width: 767px) {

.btn.isCopy > span {
                left: auto;
                right: calc(100% + 0.7rem)
        }
            }

.btn.isCopy:before,
        .btn.isCopy:after {
            content: '';
            display: block;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            background: url("../i/i-clipboard-success.svg") no-repeat center;
            background-size: contain;
            background-position-y: -60px;
            -webkit-transition: all .2s ease-in-out;
            -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

.btn.isCopy:after {
            background-position-y: 50%;
            background-image: url("../i/i-clipboard.svg");
        }

.btn.isCopy.isSuccess > span {
                width: 90px;
                opacity: 1;
            }

.btn.isCopy.isSuccess:after {
                background-position-y: 60px;
            }

.btn.isCopy.isSuccess:before {
                background-position-y: 50%;
            }

#cookies-notifier {
    display: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    min-height: 30px;
    z-index: 99999;
    overflow: hidden;
    color: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #5a5a5a;
}

#cookies-notifier a { 
        color: #fffff;

    }

#cookies-notifier a:link {
            text-decoration: underline;
            
        }

#cookies-notifier a:hover {
            text-decoration: none;
            
        }

#cookies-notifier p {
        display: inline-block;
        padding: 5px;
        margin-bottom: 0;
     }

#accept-cookies {
    cursor: pointer;
    border-radius: 36px;
    padding: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #0043dc;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.field {
    display: block;
    position: relative;
    height: 65px;
    -webkit-transition: -webkit-box-shadow .2s ease;
    transition: -webkit-box-shadow .2s ease;
    -o-transition: box-shadow .2s ease;
    transition: box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
    border-radius: 5px;
    border: 1px solid #c5c5c5;
    background-color: #ffffff;
    font-size: 14px;
    overflow: hidden;
    font-weight: 500;
}

.field--area {
        min-height: 160px;
    }

.field--filter {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 0 1.4rem 0.5rem 1.4rem;
        font-size: 16px;
        text-transform: uppercase;
        overflow: visible;
    }

.field--filter .field__title {
            font-weight: 700;
            min-width: 60px;
            cursor: default;
        }

.field--filter .field__value {
            font-weight: 400;
            color: #0043dc;
            cursor: default;
        }

.field--filter .field__range {
            display: block;
            bottom: -1px;
            left: 50%;
            position: absolute;
            -webkit-transform: translateX(-50%);
                    transform: translateX(-50%);
            width: calc(100% - 3.6rem);
            border: 0;
            -webkit-box-shadow: none;
                    box-shadow: none;
            background: transparent;
            height: 3px;
        }

.field--filter .field__range.noUi-horizontal .noUi-handle {
                right: -7px;
            }

.field--filter .noUi-connects {
            border-radius: 0;
        }

.field--filter .noUi-connect {
            background: #0043dc;
        }

.field--filter .noUi-handle {
            width: 14px;
            height: 14px;
            background-color: #0043dc;
            border-radius: 50%;
            -webkit-box-shadow: none;
                    box-shadow: none;
            border: 0;
            -webkit-transition: -webkit-transform .2s cubic-bezier(.645, .045, .355, 1);
            transition: -webkit-transform .2s cubic-bezier(.645, .045, .355, 1);
            -o-transition: transform .2s cubic-bezier(.645, .045, .355, 1);
            transition: transform .2s cubic-bezier(.645, .045, .355, 1);
            transition: transform .2s cubic-bezier(.645, .045, .355, 1), -webkit-transform .2s cubic-bezier(.645, .045, .355, 1);
        }

.field--filter .noUi-handle:after,
            .field--filter .noUi-handle:before {
                display: none;
            }

.field--filter .noUi-active {
            -webkit-transform: scale(1.45);
                    transform: scale(1.45);
        }

.field:not(:last-child) {
        margin-bottom: 2rem;
    }

.field label {
        display: block;
        top: 0;
        left: 33px;
        position: absolute;
        width: calc(100% - 40px);
        pointer-events: none;
        line-height: 65px;
        font-family: "IBM Plex Sans", sans-serif;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        -o-transition: transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease;
        color: #bbbbbb;
    }

@media (max-width: 360px) {

.field label {
            left: 1rem
    }
        }

.field label::after {
            content: attr(data-error-text);
            display: block;
            width: 100%;
            height: 100%;
            bottom: 0;
            position: absolute;
            z-index: 1;
            height: 21px;
            font-size: 12px;
            font-weight: 500;
            line-height: 21px;
        }

.field input,
    .field textarea {
        display: block;
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 24px 33px 0 33px;
        background: transparent;
        border: 0;
        color: #4a4a4a;
        font-weight: 500;
    }

@media (max-width: 360px) {

.field input,
    .field textarea {
            padding-left: 1rem
    }
        }

.field input[type=text]::-ms-clear {
            display: none;
            width : 0;
            height: 0;
        }

.field input[type=text]::-ms-reveal {
            display: none;
            width : 0;
            height: 0;
        }

.field textarea {
        resize: none;
        padding-top: 40px;
        height: 154px;
    }

.field select {
        width: calc(100% - 2rem);
        height: 100%;
        padding-left: 2rem;
        margin-right: 2rem;
        border: none;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        color: #4a4a4a;

        background: url(../i/icon/icon-arrow-down-grey.svg) right center no-repeat;
        cursor: pointer;
    }

@media (max-width: 360px) {

.field select {
            width: calc(100% - 1rem);
            margin-right: 1rem;
            padding-left: 1rem
    }
        }

.field--select {
        position: relative;
        overflow: visible;
    }

.field--select.field--popup .choices__list--single {
                color: #4a4a4a;
                background-image: url(../i/icon/icon-arrow-down-grey.svg);
            }

.field--select label {
            -webkit-transform: translateY(-15px);
                    transform: translateY(-15px);
        }

@media (max-width: 480px) {
            .field--select .choices__list--single {
                color: #4a4a4a;
            }
        }

.field--form {
        max-width: 28.5rem;
        width: 100%;
        margin-right: auto;
        border-color: #fff;
        background: transparent;
        text-align: left;
    }

.field--form:not(:last-child) {
            margin-right: 0.75rem;
            margin-bottom: 1.5rem;
        }

.field--form input, .field--form label {
            color: #ffffff;
        }

@media (max-width: 480px) {

.field--form input, .field--form label {
                color: #4a4a4a
        }
            }

@media (max-width: 1023px) {

.field--form {
            margin-right: 1rem
    }
        }

@media (max-width: 480px) {

.field--form {
            border-color: #979797;
            margin-right: 0
    }

            .field--form:not(:last-child) {
                margin-right: 0;
            }
        }

.field--popup {
        width: calc(50% - 1rem);
        margin-right: 0;
        border-color: #4a4a4a;
        margin-bottom: 1.5rem;
    }

.field--popup input, .field--popup label {
            color: #4a4a4a;
        }

@media (max-width: 767px) {

.field--popup {
            width: 100%
    }
        }

.field--popup.field--filled, .field--popup.is-match.field--filled {
            border-color: #4a4a4a;
        }

.field--search input {
            padding-right: 3.5rem;
        }

.field--search button {
            display: block;
            top: calc(50% - 1.5rem);
            right: .5rem;
            position: absolute;
            width: 3rem;
            height: 3rem;
            background: url("../i/search-blue.svg") no-repeat center;
            background-size: 16px;
            padding: 0;
            border: 0;
            cursor: pointer;
            -webkit-transition: opacity .2s ease;
            -o-transition: opacity .2s ease;
            transition: opacity .2s ease;
        }

.field--search button:hover {
                opacity: .77;
            }

.field--search button:hover:active {
                    opacity: 1;
                }

.field--light {
        border: 0;


    }

.field--light:not(:last-child) {
            margin-bottom: 1.5rem;
        }

.field--light input {
            position: relative;
            height: 36px;
            line-height: 36px;
            border-radius: 5px;
            border: 1px solid #979797;
            padding: 0 20px;
            -webkit-transition: border-color .2s ease;
            -o-transition: border-color .2s ease;
            transition: border-color .2s ease;
        }

.field--light label {
            position: relative;
            width: 100%;
            top: 0;
            left: 0;
            font-size: 12px;
            font-weight: 500;
            line-height: 21px;
            color: #4a4a4a;
            margin-bottom: 6px;
            text-transform: uppercase;
            pointer-events: auto;
        }

.field--light:hover input {
                border-color: #0043dc;
            }

.field--light:hover .spinner {
                color: #0043dc;
            }

.field--light:hover .spinner__down,
                .field--light:hover .spinner__up {
                    color: #0043dc;

                }

.field.error {
        border-color: #ff798a;
    }

.field.error input {
            padding-top: 0;
        }

.field.error label {
            -webkit-transform: translateY(-21px);
                    transform: translateY(-21px);
            font-size: 12px;
        }

.field.error label::after {
                bottom: -19px;
            }

.field.is-match {
        border-color: #42db00;
    }

.field--focused label, .field--filled label {
            -webkit-transform: translateY(-15px);
                    transform: translateY(-15px);
        }

.field--filled label[for=msg] {
            opacity: 0;
            -webkit-transition: opacity 0.3s;
            -o-transition: opacity 0.3s;
            transition: opacity 0.3s;
        }

.field--light.field--filled label, .field--light.field--focused label {
                -webkit-transform: translateY(0px);
                        transform: translateY(0px);
            }

.object-fit .hero__slide-bg {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
    }

.hero {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 5rem;
    max-height: 450px;
}

@media (max-width: 1204px) {

.hero {
        padding-right: 2rem;
        padding-left: 2rem
}
    }

@media (max-width: 360px) {

.hero {
        padding-right: 1rem;
        padding-left: 1rem
}
    }

@media (max-width: 767px) {

.hero {
        margin-bottom: 3rem
}
    }

@media (max-width: 480px) {

.hero {
        margin-bottom: 2rem
}
    }

.hero .flickity-viewport {
        border-radius: 10px;
    }

@media (max-width: 1170px) {

.hero .flickity-prev-next-button {
            display: none
    }
        }

@media (max-width: 1170px) {

.hero .flickity-page-dots {
            width: calc(100% - 2rem)
    }
        }

@media (max-width: 480px) {

.hero .flickity-page-dots {
            display: none
    }
        }

.hero__slide {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        height: 450px;
        padding: 2rem 4rem;
    }

@media (max-width: 767px) {

.hero__slide {
            height: 260px
    }
        }

@media (max-width: 480px) {

.hero__slide {
            height: 191px;
            padding: 2rem 1.75rem
    }
        }

.hero__slide.is-selected .hero__slide-text {
                opacity: 1;
                -webkit-transform: translateX(0px);
                        transform: translateX(0px);
            }

.hero__slide-bg {
        display: none;
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
    }

.hero__slide-text {
        font-size: 3rem;
        line-height: 3.5rem;
        color: #ffffff;
        z-index: 1;
        font-weight: 400;
        max-width: 30rem;
        opacity: 0;
        -webkit-transform: translateX(50px);
                transform: translateX(50px);
        -webkit-transition: opacity 1s .5s cubic-bezier(.23, 1, .32, 1), -webkit-transform 1s .5s cubic-bezier(.23, 1, .32, 1);
        transition: opacity 1s .5s cubic-bezier(.23, 1, .32, 1), -webkit-transform 1s .5s cubic-bezier(.23, 1, .32, 1);
        -o-transition: opacity 1s .5s cubic-bezier(.23, 1, .32, 1), transform 1s .5s cubic-bezier(.23, 1, .32, 1);
        transition: opacity 1s .5s cubic-bezier(.23, 1, .32, 1), transform 1s .5s cubic-bezier(.23, 1, .32, 1);
        transition: opacity 1s .5s cubic-bezier(.23, 1, .32, 1), transform 1s .5s cubic-bezier(.23, 1, .32, 1), -webkit-transform 1s .5s cubic-bezier(.23, 1, .32, 1);
    }

@media (max-width: 767px) {

.hero__slide-text {
            font-size: 2rem;
            line-height: 2.5rem
    }
        }

@media (max-width: 480px) {

.hero__slide-text {
            font-size: 22px;
            line-height: 1.75rem
    }
        }

.hero .flickity-page-dots .dot {
            background-color: #969696;
            opacity: 1;
            -webkit-transition: background-color .2s ease;
            -o-transition: background-color .2s ease;
            transition: background-color .2s ease;
        }

.hero .flickity-page-dots .dot.is-selected {
                background-color: #0043dc;
            }

.hero .flickity-prev-next-button {
        -webkit-box-shadow: none;
                box-shadow: none;
        -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
        opacity: 1;
        z-index: 2;
    }

.hero .flickity-prev-next-button:after {
            content: '';
            display: block;
            width: 12px;
            height: 12px;
            top: 40%;
            left: 50%;
            position: absolute;
            -webkit-transform: rotate(-45deg) translateY(-50%) translateX(-50%);
                    transform: rotate(-45deg) translateY(-50%) translateX(-50%);
            border: 1px solid #0043dc;
            border-top: 0;
            border-left: 0;
        }

.hero .flickity-prev-next-button.next {
            right: -22px;
        }

.hero .flickity-prev-next-button.previous {
            left: -22px;
        }

.hero .flickity-prev-next-button.previous:after {
                -webkit-transform: rotate(-225deg);
                        transform: rotate(-225deg);
                left: 45%;
            }

.hero .flickity-prev-next-button svg {
            display: none;
        }

@media (min-width: 1171px) {

.hero .flickity-prev-next-button {
            -webkit-transition: background-color .2s ease;
            -o-transition: background-color .2s ease;
            transition: background-color .2s ease
    }

            .hero .flickity-prev-next-button:hover {
                background-color: rgb(242, 242, 242);
            }

            .hero .flickity-prev-next-button:active {
                background-color: rgb(217, 217, 217);
            }
        }

.breadcrumbs {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 14px;
    color: #49555a;
}

@media (max-width: 1204px) {

.breadcrumbs {
        padding-right: 2rem;
        padding-left: 2rem
}
    }

@media (max-width: 360px) {

.breadcrumbs {
        padding-right: 1rem;
        padding-left: 1rem
}
    }

@media (max-width: 767px) {

.breadcrumbs {
        margin-top: 2rem
}
    }

.breadcrumbs li:not(:last-child) {
            position: relative;
            margin-right: 30px;
        }

.breadcrumbs li:not(:last-child):after {
                content: "–";
                color: #0097dc;
                top: 0;
                left: calc(100% + 10px);
                position: absolute;
            }

.breadcrumbs--white {
        color: #fff;
    }

.breadcrumbs--white li:not(:last-child):after {
                    color: #ffffff;
                }

.page {
    margin-bottom: 8rem;
}

.page__subsection,
    .page__section,
    .page__title,
    .page__content,
    .page__content_shifted {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
    }

@media (max-width: 1204px) {

.page__subsection,
    .page__section,
    .page__title,
    .page__content,
    .page__content_shifted {
        padding-right: 2rem;
        padding-left: 2rem;
    }
    }

@media (max-width: 360px) {

.page__subsection,
    .page__section,
    .page__title,
    .page__content,
    .page__content_shifted {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    }

.page__title {
        margin-bottom: 1.5rem;
    }

.page__section {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

.page__subsection {
         font-size: 1.5rem;
         margin-bottom: 1rem;
    }

.page__content_shifted {
        padding-left: 2rem;
    }

@media (max-width: 1170px) {

.page {
        margin-bottom: 6rem
}
    }

@media (max-width: 767px) {

.page {
        margin-bottom: 4rem
}
    }

@media (max-width: 480px) {

.page {
        margin-bottom: 3.5rem
}
    }

.action-item-col {
    width: calc(33.3333% - 2rem);
}

.action-item-col:not(:last-child) {
        margin-right: 2rem;
    }

@media (max-width: 767px) {

.action-item-col {
        width: 262px;
        padding: 10px 0 10px 10px
}

        .action-item-col:not(:last-child) {
            margin-right: 1.5rem;
        }
    }

@media (max-width: 360px) {

.action-item-col {
        width: calc(100% - 5px)
}
    }

.action-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: #ffffff;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 100px;
    height: 99px;
    -webkit-transition: background-color .2s ease, color .2s ease;
    -o-transition: background-color .2s ease, color .2s ease;
    transition: background-color .2s ease, color .2s ease;
}

@media (min-width: 1171px) {

.action-item {
        -webkit-transition: opacity .2s ease;
        -o-transition: opacity .2s ease;
        transition: opacity .2s ease
}

        .action-item:hover {
            opacity: .77;
        }

            .action-item:hover:active {
                opacity: 1;
            }
    }

.articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin-top: 2rem;
}

@media (max-width: 1023px) {

.articles {
        margin-top: 0
}
    }

.articles__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        width: calc(50% - 1rem);
        height: 150px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        margin-right: 2rem;
        background-size: cover;
        background-position: 50%;
        border-radius: 10px;
        overflow: hidden;
        color: #ffffff;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        z-index: 1;
    }

@media (max-width: 560px) {

.articles__item {
            width: 100%;
            margin-bottom: 1.5rem;
            margin-right: 0
    }
        }

.articles__item:after {
            content: '';
            display: block;
            top: 0;
            left: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(238, 238, 238, 0)), to(rgba(0, 0, 0, 0.8)));
            background-image: -webkit-linear-gradient(top, rgba(238, 238, 238, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
            background-image: -o-linear-gradient(top, rgba(238, 238, 238, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
            background-image: linear-gradient(180deg, rgba(238, 238, 238, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
            z-index: -1;
        }

@media (min-width: 1171px) {
            .articles__item:after {
                -webkit-transition: opacity .2s ease-in-out;
                -o-transition: opacity .2s ease-in-out;
                transition: opacity .2s ease-in-out;
            }
                .articles__item:hover:after {
                    opacity: .58;
                }
                .articles__item:active:after {
                    opacity: 1;
                }
        }

.articles__item:last-child {
            margin-right: 0;
        }

.articles__item--lg {
            width: 100%;
            margin-right: 0;
        }

@media (min-width: 561px) {

.articles__item--lg {
                height: 251px
        }
            }

.news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 1023px) {

.news {
        margin-top: 0
}
    }

.news__item {
        display: block;
        width: calc(50% - 1rem);
        margin-bottom: 2.5rem;
    }

@media (max-width: 560px) {

.news__item {
            width: 100%
    }
        }

.news__item:hover {
            opacity: .8;
        }

.news__item h3 {
            width: 90%;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

.news__item p {
            color: #4a4a4a;
            margin-bottom: 1rem;
        }

.news__item span {
            font-size: 14px;
        }

@media (min-width: 561px) {

.news__item:not(:nth-child(2n)) {
                margin-right: 2rem
        }
            }

.blue-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
}

.blue-points__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        position: relative;
        width: 100%;
        max-width: 600px;
        padding: 1rem 4.5rem;
        font-size: 14px;
        background: #0043dc;
        color: #ffffff;
        border-radius: 5px;
        -webkit-transition: background-color .2s ease;
        -o-transition: background-color .2s ease;
        transition: background-color .2s ease;
    }

.blue-points__item:after {
            content: '';
            display: block;
            top: calc(50% - 7px);
            right: 2rem;
            position: absolute;
            width: 20px;
            height: 14px;
            background: url("../i/blue-points-arrow.svg") no-repeat center;
        }

.blue-points__item:before {
            content: '';
            display: block;
            top: 50%;
            left: 1.5rem;
            position: absolute;
            width: 20px;
            height: 3px;
            background-color: #ffffff;
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%);
        }

@media (min-width: 1171px) {
            .blue-points__item:hover {
                background-color: rgb(51, 112, 255);
            }

            .blue-points__item:active {
                background-color: rgb(0, 46, 153);
            }
        }

@media (max-width: 767px) {

.blue-points__item {
            max-width: none;
            width: calc(100% + 2rem);
            left: -2rem;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            padding-left: 2rem
    }

            .blue-points__item::before {
                content: none;
            }
        }

.blue-points__item span {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: .25rem;
        }

.blue-points__item:not(:last-child) {
            margin-bottom: 1rem;
        }

.blue-points__item--tab {
            cursor: pointer;
            border: none;
        }

.blue-points__item--tab::after {
                content: none;
            }

@media (max-width: 767px) {

.blue-points__item--tab {
                max-width: none;
                width: calc(100% + 2rem);
                left: -2rem;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
                padding-left: 2rem
        }
                
                .blue-points__item--tab::before {
                    content: none;
                }
                
                .blue-points__item--tab::after {
                    content: '';
                    background-image: url(../i/icon/icon-arrow-down.svg);
                }
            }

.blue-points__item--download {
            min-height: 75px;
        }

.blue-points__item--download span {
                margin-bottom: 0;
                line-height: 43px;
            }

.blue-points__item--download::after {
                content: none;
            }

.blue-points__item--download::before {
                content: url(../i/icon/icon-doc.svg);
                width: 25px;
                height: 28px;
                background: none;
            }

@media (max-width: 480px) {

.blue-points__item--download {
                max-width: none;
                width: calc(100% + 4rem);
                left: -2rem;
                border-radius: 0;
                padding-left: 4.5rem
        }
                
                .blue-points__item--download::before {
                    left: 2rem;
                }
            }

@media (max-width: 360px) {

.blue-points__item--download {
                width: calc(100% + 2rem);
                left: -1rem;
                padding-left: 3.5rem
        }
                
                .blue-points__item--download::before {
                    left: 1rem;
                }
            }

.tariffs {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 5rem;
}

@media (max-width: 1204px) {

.tariffs {
        padding-right: 2rem;
        padding-left: 2rem
}
    }

@media (max-width: 360px) {

.tariffs {
        padding-right: 1rem;
        padding-left: 1rem
}
    }

@media (max-width: 1023px) {

.tariffs {
        margin-bottom: 3rem
}
    }

.tariffs__text a {
            color: #1c439b;
            text-decoration: underline;
            cursor: pointer !important;
        }

.tariffs__head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        max-width: 80%;
        margin-bottom: 2.5rem;
    }

.tariffs__head h2 {
            margin-right: 4.5rem;
        }

@media (max-width: 1023px) {

.tariffs__head {
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            margin-bottom: .5rem
    }
        }

@media (max-width: 480px) {

.tariffs__head {
            max-width: 100%
    }
        }

.tariffs__items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

.tariffs__items.no-animation .tariff__wave-wrap {
                -webkit-animation: none;
                        animation: none;
            }

@media (min-width: 1024px) {

.tariffs__items .tariff {
                width: calc(33.33333% - 22px)
        }

                .tariffs__items .tariff:not(:nth-child(3n)) {
                    margin-right: 2rem;
                }
            }

@media (max-width: 1023px) {

.tariffs__items .tariff {
                width: calc(50% - 1rem)
        }

                .tariffs__items .tariff:not(:nth-child(2n)) {
                    margin-right: 2rem;
                }
            }

@media (max-width: 646px) {

.tariffs__items .tariff {
                width: 100%
        }

                .tariffs__items .tariff:not(:nth-child(2n)) {
                    margin-right: 0rem;
                }
            }

.tariffs__btns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 1.5rem;
    }

.tariffs__calc {
        margin-bottom: 1.5rem;
    }

.tariffs__btn-info {
        font-size: 14px;
        color: #969696;
    }

.is-safari .tariff {
        -webkit-transform: translateZ(0px);
                transform: translateZ(0px);
    }

.tariff {
    -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 1171px) {

.tariff {
        -webkit-transition: opacity .2s ease;
        -o-transition: opacity .2s ease;
        transition: opacity .2s ease
}

        .tariff:hover {
            opacity: .77;
        }

            .tariff:hover:active {
                opacity: 1;
            }
    }

.tariff--purple .tariff__head .tariff__wave-wrap:before,
            .tariff--purple .tariff__head .tariff__wave-wrap:after,
            .tariff--purple .tariff__head .tariff__wave-back-wrap:before,
            .tariff--purple .tariff__head .tariff__wave-back-wrap:after {
                content: url(../i/waves/purple.svg);
            }

@media (max-width: 480px) {

.tariff--purple .tariff__head .tariff__wave-wrap:before,
            .tariff--purple .tariff__head .tariff__wave-wrap:after,
            .tariff--purple .tariff__head .tariff__wave-back-wrap:before,
            .tariff--purple .tariff__head .tariff__wave-back-wrap:after {
                    content: url(../i/waves/mobile/purple.svg)
            }
                }

.tariff--red .tariff__head .tariff__wave-wrap:before,
            .tariff--red .tariff__head .tariff__wave-wrap:after,
            .tariff--red .tariff__head .tariff__wave-back-wrap:before,
            .tariff--red .tariff__head .tariff__wave-back-wrap:after {
                content: url(../i/waves/red.svg);
            }

@media (max-width: 480px) {

.tariff--red .tariff__head .tariff__wave-wrap:before,
            .tariff--red .tariff__head .tariff__wave-wrap:after,
            .tariff--red .tariff__head .tariff__wave-back-wrap:before,
            .tariff--red .tariff__head .tariff__wave-back-wrap:after {
                    content: url(../i/waves/mobile/red.svg)
            }
                }

.tariff--lblue .tariff__head .tariff__wave-wrap:before,
            .tariff--lblue .tariff__head .tariff__wave-wrap:after,
            .tariff--lblue .tariff__head .tariff__wave-back-wrap:before,
            .tariff--lblue .tariff__head .tariff__wave-back-wrap:after {
                content: url(../i/waves/lblue.svg);
            }

@media (max-width: 480px) {

.tariff--lblue .tariff__head .tariff__wave-wrap:before,
            .tariff--lblue .tariff__head .tariff__wave-wrap:after,
            .tariff--lblue .tariff__head .tariff__wave-back-wrap:before,
            .tariff--lblue .tariff__head .tariff__wave-back-wrap:after {
                    content: url(../i/waves/mobile/lblue.svg)
            }
                }

.tariff--blue .tariff__head .tariff__wave-wrap:before,
            .tariff--blue .tariff__head .tariff__wave-wrap:after,
            .tariff--blue .tariff__head .tariff__wave-back-wrap:before,
            .tariff--blue .tariff__head .tariff__wave-back-wrap:after {
                content: url(../i/waves/blue.svg);
            }

@media (max-width: 480px) {

.tariff--blue .tariff__head .tariff__wave-wrap:before,
            .tariff--blue .tariff__head .tariff__wave-wrap:after,
            .tariff--blue .tariff__head .tariff__wave-back-wrap:before,
            .tariff--blue .tariff__head .tariff__wave-back-wrap:after {
                    content: url(../i/waves/mobile/blue.svg)
            }
                }

@-webkit-keyframes w-1 {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
                    transform: translate3d(0, 0, 0);
        }

        100% {
            -webkit-transform: translate3d(-50%, 0, 0);
                    transform: translate3d(-50%, 0, 0);
        }
    }

@keyframes w-1 {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
                    transform: translate3d(0, 0, 0);
        }

        100% {
            -webkit-transform: translate3d(-50%, 0, 0);
                    transform: translate3d(-50%, 0, 0);
        }
    }

.tariff:nth-child(1) .tariff__wave-wrap {
            left: -150px;
            -webkit-animation-duration: 50s;
                    animation-duration: 50s;
        }

.tariff:nth-child(1) .tariff__wave-back-wrap {
            left: -25px;
            -webkit-animation-duration: 70s;
                    animation-duration: 70s;
        }

.tariff:nth-child(2) .tariff__wave-wrap {
            left: -75px;
            -webkit-animation-duration: 60s;
                    animation-duration: 60s;
        }

.tariff:nth-child(2) .tariff__wave-back-wrap {
            left: -50px;
            -webkit-animation-duration: 80s;
                    animation-duration: 80s;
        }

.tariff:nth-child(3) .tariff__wave-wrap {
            left: -125px;
            -webkit-animation-duration: 55s;
                    animation-duration: 55s;
        }

.tariff:nth-child(3) .tariff__wave-back-wrap {
            left: 0px;
            -webkit-animation-duration: 75s;
                    animation-duration: 75s;
        }

.tariff:nth-child(4) .tariff__wave-wrap {
            left: -65px;
            -webkit-animation-duration: 65s;
                    animation-duration: 65s;
        }

.tariff:nth-child(4) .tariff__wave-back-wrap {
            left: -40px;
            -webkit-animation-duration: 85s;
                    animation-duration: 85s;
        }

.tariff:nth-child(5) .tariff__wave-wrap {
            left: -185px;
            -webkit-animation-duration: 55s;
                    animation-duration: 55s;
        }

.tariff:nth-child(5) .tariff__wave-back-wrap {
            left: -60px;
            -webkit-animation-duration: 70s;
                    animation-duration: 70s;
        }

.tariff:nth-child(6) .tariff__wave-wrap {
            left: -35px;
            -webkit-animation-duration: 45s;
                    animation-duration: 45s;
        }

.tariff:nth-child(6) .tariff__wave-back-wrap {
            left: 10px;
            -webkit-animation-duration: 65s;
                    animation-duration: 65s;
        }

.tariff__wave-wrap,
    .tariff__wave-back-wrap {
        display: block;
        top: 0;
        left: 0;
        position: absolute;
        white-space: nowrap;
        font-size: 0;
        will-change: transform;
        -webkit-animation: w-1 10s linear infinite;
                animation: w-1 10s linear infinite;
    }

.tariff__wave-wrap:after,
        .tariff__wave-wrap:before,
        .tariff__wave-back-wrap:after,
        .tariff__wave-back-wrap:before {
            display: inline-block;
            will-change: transform;
        }

.tariff__wave-wrap:before, .tariff__wave-back-wrap:before {
            margin-right: -2px;
        }

.tariff__wave-wrap:after, .tariff__wave-back-wrap:after {
            top: -1px;
            position: relative;
        }

.tariff__wave-back-wrap {
        top: 8px;
        opacity: .35;
        -webkit-animation: w-1 20s linear infinite;
                animation: w-1 20s linear infinite;

    }

.tariff__head {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        padding: 1.5rem 1.5rem 3rem 1.5rem;
        color: #ffffff;
        z-index: 1;
        overflow: hidden;
        min-height: 160px;
    }

@media (max-width: 480px) {

.tariff__head {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            padding: 1.25rem 1.25rem 3rem 1.25rem;
            min-height: 197px
    }
        }

.tariff__head-text {
            position: relative;
            margin-right: 1rem;
        }

@media (max-width: 360px) {

.tariff__head-text {
                margin-right: 0
        }
            }

.tariff__head-text h3 {
                font-weight: 700;
                font-size: 22px;
                margin-bottom: .5rem;
                color: #ffffff;
            }

.tariff__head-text p {
                margin-bottom: 0;
                font-size: 14px;
                font-weight: 500;
            }

.tariff__head-cost {
            position: relative;
            font-size: 14px;
            margin-top: 1.55rem;
        }

.tariff__head-cost b {
                font-size: 21px;
                white-space: nowrap;
            }

.tariff__content {
        padding: 1.5rem;
        font-size: 14px;
        font-weight: 300;
        line-height: 1.5rem;
    }

.tariff__content span {
            display: block;
        }

.vacancy-wrap {
    margin-bottom: 8rem;
}

@media (max-width: 1170px) {

.vacancy-wrap {
        margin-bottom: 0;
        padding-bottom: 6rem
}
    }

@media (max-width: 767px) {

.vacancy-wrap {
        padding-bottom: 4rem
}
    }

@media (max-width: 480px) {

.vacancy-wrap {
        padding-bottom: 3.5rem
}
    }

@media(max-width: 1023px) {

.vacancy {
        width: calc(50% - 1rem)
}
        
        .vacancy.container--half:not(:last-child) {
            margin-right: 2rem;
        }
    }

@media (max-width: 767px) {

.vacancy {
        width: 100%;
        margin-bottom: 0
}
        
        .vacancy.container--half:not(:last-child) {
            margin-right: 0;
        }
    }

.vacancy .container__head {
        margin-bottom: 1.5rem;        
    }

.vacancy .container__content > p {
            margin-bottom: 1.5rem;
            color: #4a4a4a;
        }

@media (min-width: 768px) {

.vacancy .container__content > .blue-points > .vacancy-item {
                display: none;
                opacity: 0;
                height: 0
        }
            }

.vacancy-item-wrap {
    padding-top: 8rem;
}

@media(max-width: 1023px) {

.vacancy-item-wrap {
        width: calc(50% - 1rem)
}
    }

@media (max-width: 767px) {

.vacancy-item-wrap {
        padding: 0;
        margin: 0
}
    }

@media (min-width: 768px) {

.vacancy-item-wrap .container__content {
            position: relative;
            width: 100%;
            height: auto
    }
        }

@media (max-width: 767px) {

.vacancy-item-wrap .container__content {
            display: none
    }
        }

.vacancy-item {
    color: #4a4a4a;
}

@media (min-width: 768px) {

.vacancy-item {
        display: block;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0
}
    }

@media (max-width: 767px) {

.vacancy-item {
        text-align: center;
        display: none
}
    }

.vacancy-item h3 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

@media (max-width: 767px) {

.vacancy-item h3 {
            text-align: left;
            font-size: 1.25rem;
            line-height: 2.25rem;
            margin-bottom: 1rem
    }
        }

.vacancy-item a {
        color: #0043dc;
        text-decoration: underline;
    }

.vacancy-item > p {
        margin-bottom: 2.5rem;
        line-height: 1.25rem;
    }

@media (max-width: 767px) {

.vacancy-item > p {
            text-align: left;
            margin-bottom: 3rem
    }
        }

.vacancy-item.is-active {
        z-index: 1;
        opacity: 1;
    }

@media (max-width: 767px) {

.vacancy-item.is-active {
            display: block
    }
        }

@media (max-width: 767px) {

.vacancy-item .btn {
            margin-bottom: 2.5rem
    }
        }

.contacts .page__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

.contacts__text {
        min-width: 25rem;
        max-width: 30rem;
        
        color: #4a4a4a;
        margin-bottom: 2rem;
        line-height: 1.25rem;
    }

.contacts__text a[href^="mailto:"] {
            color: #0043dc;
            text-decoration: underline;
        }

.contacts__text a {
            -webkit-transition: opacity 0.35s;
            -o-transition: opacity 0.35s;
            transition: opacity 0.35s;
        }

.contacts__text a:hover {
                opacity: 0.75;
            }

@media (max-width: 480px) {

.contacts__text {
            min-width: inherit
    }
        }

.contacts__map-wrap {
        max-width: 653px;
        min-height: 468px;
        width: 100%;
        height: 100%;
        background: rgba(169, 169, 169, 0.3);
    }

@media (max-width: 1117px) {

.contacts__map-wrap {
            max-width: none
    }
        }

.documents .page__content p {
            color: #4a4a4a;
            line-height: 1.25rem;
            max-width: 50%;
            margin-bottom: 2rem;
        }

.documents .page__content p:last-of-type {
                font-size: 14px;
            }

@media (max-width: 767px) {

.documents .page__content p {
                max-width: none
        }
                
                .documents .page__content p:last-of-type {
                    margin-bottom: 2rem;
                }
            }

.documents .blue-points {
        margin-bottom: 2rem;
    }

.documents ol {
        list-style-type: none;
        counter-reset: num-counter;
        padding-left: 0;
        margin: 0;
    }

.documents ol li {
            counter-increment: num-counter;
            line-height: 1.375rem;
            margin-bottom: .5rem;
            font-weight: 300;
            position: relative;
            padding-left: 2rem;
        }

.documents ol li::before {
                content: counter(num-counter) ".";
                position: absolute;
                left: 0;
                font-weight: 700;
                color: #4a4a4a;
            }

.documents ol li a {
                color: #0043dc;
            }

.textpage {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

@media (max-width: 1204px) {

.textpage {
        padding-right: 2rem;
        padding-left: 2rem
}
    }

@media (max-width: 360px) {

.textpage {
        padding-right: 1rem;
        padding-left: 1rem
}
    }

.textpage p, .textpage ol, .textpage li, .textpage table {
        color: #3e4244;
        max-width: 50rem;
        /*font-family: 'Calibri', sans-serif;*/
        /*text-align: justify;*/
    }

.textpage .white-link {
        color: #ffffff;
    }

.textpage .white-link:link {
            text-decoration: underline;
        }

.textpage .white-link:hover {
            text-decoration: none;
        }

/*a {
        color: #0078d7;
        
        &:link {
            text-decoration: underline;
        }
        
        &:hover {
            text-decoration: none;
        }
    }*/

.textpage h1 {
        margin-bottom: 2rem;
    }

.textpage h2 {
        margin-bottom: 1.5rem
    }

.textpage h3 {
        margin-bottom: 1rem;
    }

.textpage ol, .textpage li, .textpage ul {
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding-left: 0;
    }

.textpage ul {
        list-style-type: disc;
        padding-left: 2rem;
    }

.textpage ol {
        list-style-type: none;
        counter-reset: num-counter;
    }

.textpage ol li {
            counter-increment: num-counter;
        }

.textpage ol li::before {
                content: counter(num-counter) ".";
                margin-right: .5rem;
                font-weight: 700;
                color: #4a4a4a;
            }

.textpage ol li a {
                color: #0043dc;
            }

.textpage ol ol {
            list-style-type: none;
            counter-reset: alpha-counter;
            max-width: 31.5rem;
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
            margin-left: 1rem;
        }

.textpage ol ol li {
                margin-right: 1rem;
                counter-increment: alpha-counter;
            }

.textpage ol ol li::before {
                    font-weight: 400;                   
                    content: counter(alpha-counter, lower-alpha) ".";
                }

.textpage table {
        min-width: 30rem;
        border-collapse: collapse;
        margin-bottom: 3rem;
    }

.textpage table tr:nth-child(odd) {
                background: #f6f6f6;                
            }

.textpage table tr:nth-child(even) {
                background: #fff;
            }

.textpage table tr td {
                padding: 0.5rem 1rem;
            }

.textpage table tr td:first-child {
                    border-top-left-radius: 4px;
                    border-bottom-left-radius: 4px;
                }

.textpage table tr td:last-child {
                    border-top-right-radius: 4px;
                    border-bottom-right-radius: 4px;
                }

@media (max-width: 480px) {

.textpage table tr td:last-child {
                        text-align: right;
                        padding-left: 0
                }
                    }

@media (max-width: 480px) {

.textpage table {
            width: 100%;
            min-width: inherit;
            font-size: 0.875rem;
            line-height: 1.375rem
    }
        }

.filter {
    position: relative;
    margin-bottom: 1.5rem;
}

.filter__items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
    }

@media (max-width: 1023px) {

.filter__items {
            max-width: 100%
    }
        }

@media (max-width: 767px) {

.filter__items {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column
    }
        }

.filter__items .field {
            width: calc(33.333% - 1rem);
            margin-bottom: 1rem;
            margin-top: 1rem;
        }

@media (max-width: 1023px) {

.filter__items .field {
                width: calc(33.333% - 1rem)
        }
            }

@media (max-width: 767px) {

.filter__items .field {
                width: 100%
        }
            }

.filter--configurator .filter__items {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            max-width: 100%;
        }

.filter--configurator .filter__items .field {
                width: 100%;
                margin-top: 0;
                margin-bottom: 2rem;
            }

.vps-template {
    width: 16%;
    margin: 1em;

}

@media (max-width: 1023px) {

.vps-template {
        width: 20%

}
    }

@media (max-width: 767px) {

.vps-template {
        width: 35%

}
    }

.vps-items__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 -1rem;
    }

.vps-items__col {
        width: 33.3333%;
        padding: 0 1rem;
    }

@media (max-width: 1023px) {

.vps-items__col {
            width: 50%
    }
        }

@media (max-width: 767px) {

.vps-items__col {
            width: 100%
    }
        }

.vps-items .vps-item {
        margin-bottom: 2rem;
        width: 100%;
    }

.vps-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #ffffff;
    line-height: 1.4rem;
    margin-bottom: 2rem;
}

.vps-item__basic-info {
        display: block;
        margin-bottom: 1rem;
    }

.vps-item__basic-info h3 {
            font-size: 20px;
            font-weight: 700;
        }

.vps-item__content {
        padding: 1.5rem;
    }

.vps-item__buy {
        height: 52px;
        line-height: 52px;
        text-align: center;
        border-radius: 10px 10px 0 0;
        background-color: #0043dc;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        border: 0;
        cursor: pointer;
        -webkit-transition: background-color .2s ease;
        -o-transition: background-color .2s ease;
        transition: background-color .2s ease;
    }

@media (min-width: 1171px) {
            .vps-item__buy:hover {
                background-color: rgb(51, 112, 255);
            }

            .vps-item__buy:active {
                background-color: rgb(0, 46, 153);
            }
        }

.vps-item__parameter {
        margin-bottom: 1rem;
        font-weight: 300;
    }

.vps-item__parameter b {
            display: block;
            font-weight: 700;
        }

.vps-item__cost {
        margin-top: 1rem;
        font-size: 14px;
        line-height: 1.25rem;
    }

.vps-item__cost b {
            display: block;
            font-size: 21px;
            font-weight: 700;
        }

.dedicated-items__row {
         display: -webkit-box;
         display: -ms-flexbox;
         display: flex;
         -ms-flex-wrap: wrap;
             flex-wrap: wrap;
         margin: 0 -1rem;
     }

.dedicated-items__col {
        width: 33.3333%;
        padding: 0 1rem;
    }

@media (max-width: 1023px) {

.dedicated-items__col {
            width: 50%
    }
        }

@media (max-width: 767px) {

.dedicated-items__col {
            width: 100%
    }
        }

.dedicated-items .dedicated-item {
        margin-bottom: 2rem;
        width: 100%;
    }

.checkbox-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.not-found-msg {
  padding: 0 15px;
}

.dedicated-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #ffffff;
    line-height: 1.4rem;
    margin-bottom: 2rem;
}

.dedicated-item__basic-info {
        display: block;
        margin-bottom: 1rem;
        min-height: 4rem;
    }

.dedicated-item__basic-info h3 {
            font-size: 20px;
            font-weight: 700;
        }

.dedicated-item__content {
         padding: 1.5rem;
    }

.dedicated-item__buy {
         height: 52px;
         line-height: 52px;
         text-align: center;
         border-radius: 10px 10px 0 0;
         background-color: #0043dc;
         color: #ffffff;
         font-size: 14px;
         font-weight: 500;
         text-transform: uppercase;
         border: 0;
         cursor: pointer;
         -webkit-transition: background-color .2s ease;
         -o-transition: background-color .2s ease;
         transition: background-color .2s ease;
    }

@media (min-width: 1171px) {
            .dedicated-item__buy:hover {
                background-color: rgb(51, 112, 255);
            }

            .dedicated-item__buy:active {
                 background-color: rgb(0, 46, 153);
             }
        }

.dedicated-item__parameter {
        margin-bottom: 1rem;
        font-weight: 300;
    }

.dedicated-item__parameter b {
            display: block;
            font-weight: 700;
        }

.dedicated-item__cost {
        margin-top: 1rem;
        font-size: 14px;
        line-height: 1.25rem;
    }

.dedicated-item__cost b {
            display: block;
            font-size: 21px;
            font-weight: 700;
        }

.dedicated-item__deployment-cost {
        margin-top: 1rem;
        font-size: 14px;
        line-height: 1.25rem;
    }

.dedicated-item__deployment-cost b {
            display: block;
            font-size: 16px;
            font-weight: 700;
        }

.about { 
    color: #4a4a4a;
    width: calc(50% - 1rem);   
}

@media (max-width: 767px) {

.about {
        width: 100%   
}
    }

.about p {
        line-height: 1.25rem;
    }

.about .container__head {
        margin-bottom: 1rem;
    }

@media (max-width: 480px) {

.about .container__head {
            margin-bottom: 0rem
    }
        }

.about-content-right {
        width: calc(50% - 1rem);
        padding-top: 7rem;
        padding-left: 9rem;
    }

.about-content-right p {
            font-size: 1.125rem;
            color: #4a4a4a;
            margin-bottom: 3rem;
            line-height: 1.25rem;
        }

@media (max-width: 767px) {

.about-content-right p {
                width: 100%;
                margin-bottom: 1.5rem
        }
            }

@media (max-width: 767px) {

.about-content-right .transform-text {
                margin-left: 3rem
        }
            }

@media (max-width: 480px) {

.about-content-right .transform-text {
                padding-top: 2.5rem;
                padding-left: 1rem;
                margin-left: 1rem;
                list-style-type: disc
        }

                .about-content-right .transform-text::after {
                    content: none;
                }

                .about-content-right .transform-text::before {
                    -webkit-writing-mode: unset;
                        -ms-writing-mode: unset;
                            writing-mode: unset;
                    -webkit-transform: rotate(0deg);
                            transform: rotate(0deg);
                    top: 0;
                    left: -1rem;
                }
            }

@media (max-width: 1023px) {

.about-content-right {
            padding-left: 6rem
    }
        }

@media (max-width: 767px) {

.about-content-right {
            padding: 0;
            width: 100%
    }
        }

.transform-text {
    position: relative;
    font-size: 1rem;
    line-height: 1.6875rem;
}

.transform-text::before {
        content: attr(data-text);
        -webkit-transform: rotate(180deg) translateY(50%);
                transform: rotate(180deg) translateY(50%);
        -webkit-writing-mode: vertical-lr;
            -ms-writing-mode: tb-lr;
                writing-mode: vertical-lr;
            
        font-size: 12px;
        font-weight: 700;
        
        position: absolute;
        left: -3rem;
        top: 50%;
    }

.transform-text::after {
        content: '';
        position: absolute;
        display: block;
        width: 1px;
        background-color: #c5c5c5;
        left: -1rem;
        height: 62%;
        top: 23%;
    }

.transform-text--blue::before {
            color: #0043dc;
        }

.transform-text--purple::before {
            color: #8000dc;
        }

.transform-text--light-blue::before {
            color: #0097dc;
        }

.transform-text--red::before {
            color: #dc1d00;
        }

.features {
    padding-top: 4.5rem;
    position: relative;
}

.features .page__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;

        margin-top: -4.5rem;

        margin-bottom: -4.5rem;
    }

@media (max-width: 767px) {

.features .page__content {
            margin: 0
    }
        }

.features__item {
        position: relative;
        padding: 2.25rem 4.5rem 2.25rem 9.5rem;
        width: 50%;

        background-position: left 2.25rem;
        background-repeat: no-repeat;

        color: #4a4a4a;
    }

.features__item--security {
            background-image: url(../i/icon/icon-security.svg);
            background-size: 64px auto;
        }

@media(max-width: 480px) {

.features__item--security {
                background-size: 49px auto
        }
            }

.features__item--support {
            background-image: url(../i/icon/icon-support.svg);
            background-size: 95px auto;
        }

@media(max-width: 480px) {

.features__item--support {
                background-size: 64px auto
        }
            }

.features__item--energy {
            background-image: url(../i/icon/icon-energy.svg);
            background-size: 92px auto;
        }

@media(max-width: 480px) {

.features__item--energy {
                background-size: 61px auto
        }
            }

.features__item--climate {
            background-image: url(../i/icon/icon-climate.svg);
            background-size: 85px auto;
        }

@media(max-width: 480px) {

.features__item--climate {
                background-size: 54px auto
        }
            }

.features__item object {
            display: none;
            left: 0;
            position: absolute;
        }

.features__item--security object {
            width: 64px;
        }

@media(max-width: 480px) {

.features__item--security object {
                width: 49px
        }
            }

.features__item--support object {
            width: 95px;
        }

@media(max-width: 480px) {

.features__item--support object {
                width: 64px
        }
            }

.features__item--energy object {
            width: 92px;
        }

@media(max-width: 480px) {

.features__item--energy object {
                width: 61px
        }
            }

.features__item--climate object {
            width: 85px;
        }

@media(max-width: 480px) {

.features__item--climate object {
                width: 54px
        }
            }

.features__item h3 {
            font-size: 1.7rem;
        }

@media (max-width: 480px) {

.features__item h3 {
                font-size: 1.25rem
        }
            }

@media (max-width: 1023px) {

.features__item {
            background-size: 64px;
            padding-left: 6.5rem;
            padding-right: 2rem
    }
        }

@media (max-width: 767px) {

.features__item {
            width: 100%;
            padding-right: 0;
            padding-left: 7rem
    }
        }

@media (max-width: 480px) {

.features__item {
            padding-top: 1rem;
            padding-bottom: 1rem;
            padding-left: 5rem;
            background-position: left 1rem
    }

            .features__item p {
                font-size: 0.9rem;
            }
        }

.features__btn {
        width: 16.5rem;
        margin-right: auto;
        margin-left: auto;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

@media (max-width: 767px) {

.features {
        padding-top: 0
}
    }

html:not(.is-ie) .features__item {
        background-image: none;
    }

html.is-ie .features__item object {
        display: none;
    }

.about-equipment__item {
        padding-right: 3rem;
        padding-left: 3rem;
    }

.about-equipment__item img {
            max-width: 18.5rem;
            max-height: 4.5rem;
        }

@media (max-width: 1110px) {
            .about-equipment__item:not(:last-of-type) {
                margin-bottom: 2rem;
            }
        }

@media (max-width: 480px) {

.about-equipment__item {
            padding-right: 1.5rem;
            padding-left: 0
    }
            
            .about-equipment__item:last-of-type {
                padding-right: 0;
            }
        }

.about-equipment .page__title {
        max-width: 28.5rem;
        height: 100%;
    }

.about-equipment .page__title h2 {
            margin-bottom: 3rem;
            font-size: 2.25rem;
            text-align: center;
        }

@media (max-width: 480px) {

.about-equipment .page__title h2 {
                margin-bottom: 1rem;
                font-size: 1.875rem;
                line-height: 2.25rem;
                text-align: left
        }
            }

@media (max-width: 480px) {

.about-equipment .page__title {
            max-width: none
    }
        }

.about-equipment .page__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

@media (max-width: 480px) {

.about-equipment .page__content {
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between
    }
        }

.about-network .page__title {
        height: 100%;
    }

.about-network .page__title h2 {
            margin-bottom: 3rem;
            font-size: 2.25rem;
            text-align: center;
        }

@media (max-width: 480px) {

.about-network .page__title h2 {
                margin-bottom: 1rem;
                font-size: 1.875rem;
                line-height: 2.25rem;
                text-align: left
        }
            }

.about-network .page__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

@media (max-width: 550px) {

.about-network .page__content {
            -ms-flex-wrap: wrap;
                flex-wrap: wrap
    }
        }

.about-network__item {
        max-width: 20rem;
        width: 100%;
        padding-top: 6.5rem;
        padding-right: 2rem;
        padding-left: 2rem;
        
        background-position: top center;
        background-repeat: no-repeat;
        text-align: center;
        
        line-height: 1.0625rem;
        color: #4a4a4a;
    }

@media (max-width: 550px) {

.about-network__item {
            max-width: none
    }
            
            .about-network__item:not(:last-of-type) {
                margin-bottom: 2rem;
            }
        }

.clients .container__content {
        color: #4a4a4a;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

.clients .container__content p {
            width: 100%;
            margin-bottom: 3rem;
            font-size: 1.375rem;
            line-height: 1.8rem;
        }

@media (max-width: 480px) {

.clients .container__head {
            margin-bottom: 2.5rem
    }
        }

@media (max-width: 767px) {

.clients {
        margin-top: 2rem;
        margin-bottom: 2rem
}
    }

@media (max-width: 480px) {

.clients {
        margin-top: 0rem
}
    }

.clients-logos-wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -2rem;
    margin-left: -2rem;
}

@media (max-width: 767px) {

.clients-logos-wrap {
        margin-top: 0rem;
        margin-bottom: 0rem;
        padding-top: 0
}
    }

.clients-logo {
    width: 33.3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-bottom: 3rem;
}

.clients-logo img {
        width: 100%;
        height: auto;
        -o-object-fit: scale-down;
           object-fit: scale-down;
    }

.clients-logo.compat-object-fit {
        background-size: auto;
        background-position: center center;
        background-repeat: no-repeat;
    }

.clients-logo.compat-object-fit img {
            opacity: 0;
        }

@media (max-width: 1023px) {

.clients-logo {
        width: 50%
}
    }

@media (max-width: 767px) {

.clients-logo {
        width: 33.3%
}
    }

@media (max-width: 568px) {

.clients-logo {
        width: 50%
}
    }

.requisites .isCopy {
        width: 14px;
        height: 19px;
    }

.requisites .js-clipboard {
        display: inline-block;
        position: relative;
        margin-right: 19px;
    }

.requisites.textpage p, .requisites.textpage ol, .requisites.textpage li, .requisites.textpage table {
            font-family: "IBM Plex Sans", sans-serif;
            text-align: left;
            color: #4a4a4a;

            max-width: 32rem;
            font-weight: 300;
        }

.requisites p {
        margin-bottom: 2rem;
        line-height: 1.375rem;
    }

.requisites table tr td:first-child {
                    width: 40%;
                }

.requisites table tr td:last-child {
                    width: 60%;
                }

@media (max-width: 480px) {

.requisites table tr td:first-child,
                .requisites table tr td:last-child {
                        width: auto
                }
                    }

.tabs {
    display: block;
    position: relative;
}

.tabs .tabs__bg {
        display: block;
        top: 0;
        left: 0;
        position: absolute;
        -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
                box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
        width: calc(100% + 152px);
        height: 100%;
        margin-left: -76px;
        z-index: -1;
        -webkit-transition: height .2s ease;
        -o-transition: height .2s ease;
        transition: height .2s ease;
    }

.tabs__controls-gradient {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
    }

.tabs__controls-gradient .tabs__controls {
            overflow: scroll;
            -webkit-overflow-scrolling: touch;
        }

.tabs__controls-gradient:after,
        .tabs__controls-gradient:before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 20%;
            height: 100%;
            -webkit-transition: all .2s ease;
            -o-transition: all .2s ease;
            transition: all .2s ease;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            z-index: 1;
        }

.tabs__controls-gradient:after {
            right: 0;
            background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,0)), to(rgba(255,255,255,1)));
            background: -webkit-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,1) 100%);
            background: -o-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,1) 100%);
            background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1) 100%);
        }

.tabs__controls-gradient:before {
            left: 0;
            background: -webkit-gradient(linear, right top, left top, from(rgba(255,255,255,0)), to(rgba(255,255,255,1)));
            background: -webkit-linear-gradient(right, rgba(255,255,255,0), rgba(255,255,255,1) 100%);
            background: -o-linear-gradient(right, rgba(255,255,255,0), rgba(255,255,255,1) 100%);
            background: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,1) 100%);
        }

.tabs__controls-gradient.available-scroll-left:before,
        .tabs__controls-gradient.available-scroll-right:after {
            opacity: 1;
            visibility: visible;
        }

.tabs__controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 3rem;
        position: relative;
    }

.tabs__tabs {
        display: block;
        width: 100%;
    }

.tabs__tab {
        display: block;
        position: relative;
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease;
        overflow: hidden;
        opacity: 0;
    }

.tabs__tab:not(.active) {
            height: 0;
        }

.tabs__tab.active {
            -webkit-transition: opacity .4s ease-in;
            -o-transition: opacity .4s ease-in;
            transition: opacity .4s ease-in;
            opacity: 1;
        }

.tabs__tab:after {
            content: '';
            display: block;
            bottom: 0;
            left: 0;
            position: absolute;
            width: 100%;
            height: 100px;
            background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(rgba(255,255,255,1)));
            background: -webkit-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1) 100%);
            background: -o-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1) 100%);
            background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 100%);
            pointer-events: none;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: visibility .15s ease, opacity .15s ease;
            -o-transition: visibility .15s ease, opacity .15s ease;
            transition: visibility .15s ease, opacity .15s ease;
        }

.tabs__tab--animated:after {
                opacity: 1;
                visibility: visible;
            }

.tabs__btn {
        background: transparent;
        padding: 0;
    }

.tabs--vps .tabs__controls {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            width: 100%;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            border-bottom: 1px solid #979797;
        }

.tabs--vps .tabs__btn {
            font-size: 14px;
            font-weight: 500;
            color: #4a4a4a;
            padding-bottom: 1.5rem;
        }

.tabs--vps .tabs__btn:not(:last-child) {
                margin-right: 4rem;
            }

.tabs--vps .tabs__backlight {
            display: block;
            bottom: -1px;
            left: 0;
            position: absolute;
            height: 5px;
            background: #0043dc;
            -webkit-transition: left .3s ease, width .3s ease;
            -o-transition: left .3s ease, width .3s ease;
            transition: left .3s ease, width .3s ease;
        }

.tabs--vps .tabs__service-info {
            width: 50%;
        }

@media (max-width: 480px) {

.reviews .container__head {
            margin-bottom: 1.5rem
    }
        }

.review-item {
    display: block;
    color: #4a4a4a;
    font-size: 1.125rem;
    margin-bottom: 5rem;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    width: 100%;
}

@media (max-width: 767px) {

.review-item {
        margin-bottom: 3rem
}
    }

@media (max-width: 480px) {

.review-item {
        margin-bottom: 2rem
}
    }

.review-item:last-of-type {
        margin-bottom: 0;
    }

.review-item__people {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 1rem;

    }

.review-item__people img {
            margin-right: 1rem;
        }

.review-item__people p {
            line-height: 1.6875rem;
            margin-bottom: 0;
        }

.review-item__people p span {
                display: block;
                text-transform: uppercase;
                color: #9b9b9b;
                font-weight: 600;
                line-height: 1.125rem;
                font-size: 0.75rem;
            }

.review-item__text p {
            font-weight: 300;
            line-height: 1.8125rem;
        }

.review-item__text img {
            width: 80px;
            height: 19px;
        }

@media (min-width: 1171px) {
        a.review-item:hover {
            opacity: .78;
        }

        a.review-item:active {
            opacity: 1;
        }
    }

.form-wrap {
    text-align: center;
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
    background: -webkit-linear-gradient(275deg, #0043dc, #1c439b, #0043dc, #1c439b);
    background: -o-linear-gradient(275deg, #0043dc, #1c439b, #0043dc, #1c439b);
    background: linear-gradient(175deg, #0043dc, #1c439b, #0043dc, #1c439b);
    background-size: 400% 400%;
    -webkit-animation: blueGradient 20s ease infinite;
            animation: blueGradient 20s ease infinite;
}

.form-wrap h2, .form-wrap p {
        color: #fff;
    }

@media (max-width: 480px) {

.form-wrap h2, .form-wrap p {
            text-align: left;
            color: #49555a
    }
        }

.form-wrap h2 {
        margin-bottom: 2rem;
    }

@media (max-width: 480px) {

.form-wrap h2 {
            margin-bottom: 1rem;
            font-size: 1.875rem;
            line-height: 2.25rem
    }
        }

.form-wrap__title {
        margin-bottom: 3rem;
    }

.form-wrap__pay-type {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        max-width: 58.5rem;
        text-align: left;
        color: #fff;
    }

@media (max-width: 1204px) {

.form-wrap__pay-type {
        padding-right: 2rem;
        padding-left: 2rem
    }
    }

@media (max-width: 360px) {

.form-wrap__pay-type {
        padding-right: 1rem;
        padding-left: 1rem
    }
    }

.form-wrap__pay-type .radio:not(:last-of-type) {
            margin-bottom: .5rem;
        }

@media (max-width: 480px) {

.form-wrap__pay-type .radio:not(:last-of-type) {
                margin-bottom: 1rem
        }
            }

@media (max-width: 480px) {

.form-wrap__pay-type {
            padding: 0
    }
        }

@media (max-width: 767px) {

.form-wrap {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto
}
        @media (max-width: 1204px) {

.form-wrap {
        padding-right: 2rem;
        padding-left: 2rem
}
    }
        @media (max-width: 360px) {

.form-wrap {
        padding-right: 1rem;
        padding-left: 1rem
}
    }
    }

@media (max-width: 480px) {

.form-wrap {
        background: none;
        padding-top: 0;
        padding-right: 2rem;
        padding-left: 2rem
}
    }

@media (max-width: 360px) {

.form-wrap {
        padding-right: 1rem;
        padding-left: 1rem
}
    }

.form {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

@media (max-width: 1204px) {

.form {
        padding-right: 2rem;
        padding-left: 2rem
}
    }

@media (max-width: 360px) {

.form {
        padding-right: 1rem;
        padding-left: 1rem
}
    }

.form__fields {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        max-width: 58.5rem;
        width: 100%;
        margin-bottom: 1rem;
    }

@media (max-width: 767px) {

.form__fields {
            margin-bottom: 2rem
    }
        }

@media (max-width: 480px) {

.form__btn {
            background: #0043dc;
            color: #ffffff
    }
        }

.form .field--halfw {
        max-width: 292px;
        margin-right: auto;
    }

@media (max-width: 480px) {

.form {
        padding-left: 0;
        padding-right: 0
}
    }

.form--popup {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

.form--popup .field--form {
            margin-bottom: 1rem;
        }

@media (max-width: 1023px) {

.form--popup .field--form {
                margin-right: 0
        }
            }

.form--popup .form__fields {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            height: 267px;
            margin-bottom: 2rem;
        }

@media (max-width: 767px) {

.form--popup .form__fields {
                -webkit-box-orient: horizontal;
                -webkit-box-direction: normal;
                    -ms-flex-direction: row;
                        flex-direction: row;
                height: 100%;
                -webkit-box-pack: center;
                    -ms-flex-pack: center;
                        justify-content: center
        }
            }

@media (max-width: 1204px) {

.form--popup {
            padding: 0
    }
        }

.form.form-type {
        opacity: 0;
        height: 0;
        visibility: hidden;
        -webkit-transform: translateX(-99px);
                transform: translateX(-99px);
        -webkit-transition: opacity 0.5s ease-in, -webkit-transform 0.7s;
        transition: opacity 0.5s ease-in, -webkit-transform 0.7s;
        -o-transition: transform 0.7s, opacity 0.5s ease-in;
        transition: transform 0.7s, opacity 0.5s ease-in;
        transition: transform 0.7s, opacity 0.5s ease-in, -webkit-transform 0.7s;
    }

.form.form-type.is-visible {
            opacity: 1;
            height: auto;
            -webkit-transform: translateX(0);
                    transform: translateX(0);
            visibility: visible;
        }

#js-reg-popup .form__fields, #js-log-popup .form__fields, #js-pass-popup .form__fields {
        height: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-bottom: 1rem;
    }

#js-reg-popup .form__fields a, #js-log-popup .form__fields a, #js-pass-popup .form__fields a {
            display: inline-block;
            color: #0043dc;
            margin-bottom: 1rem;
        }

#js-reg-popup .form__fields a:hover, #js-log-popup .form__fields a:hover, #js-pass-popup .form__fields a:hover {
                opacity: 0.78;
            }

@media (max-width: 767px) {

#js-reg-popup .form__fields a, #js-log-popup .form__fields a, #js-pass-popup .form__fields a {
                max-width: 28.5rem;
                width: 100%
        }
            }

#js-reg-popup .field--popup, #js-log-popup .field--popup, #js-pass-popup .field--popup {
        width: 100%;
    }

.planet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;

}

.planet__pulse {
        position: absolute;
        width: 161px;
        height: 162px;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%);
                transform: translateY(-50%) translateX(-50%);
        -webkit-animation: pulse 2.5s infinite;
                animation: pulse 2.5s infinite;
        z-index: -2;
    }

.planet__pulse--404 {
            -webkit-box-shadow: 0 0 0 0 rgba(0, 67, 220, 0.06);
                    box-shadow: 0 0 0 0 rgba(0, 67, 220, 0.06);
            background: #0043dc;
        }

.planet__pulse--503 {
            -webkit-box-shadow: 0 0 0 0 rgba(128, 0, 220, 0.06);
                    box-shadow: 0 0 0 0 rgba(128, 0, 220, 0.06);
            background: #8000dc;
        }

@media (max-width: 505px) {

.planet__pulse {
            width: 100px;
            height: 101px
    }
        }

.planet__text {
        width: 27.5rem;
        height: 18rem;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

@media (max-width: 505px) {

.planet__text {
            width: 17rem;
            background-size: contain
    }
        }

.planet__rot {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 161px;
        height: 162px;
        border-radius: 50%;
        -webkit-animation: rotate 23s linear infinite;
                animation: rotate 23s linear infinite;
        -webkit-transform: translateY(-50%) translateX(-50%);
                transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

.planet__rot--404 {
            background: url(../i/err/world-map-404.png) 0 0 repeat-x;
        }

.planet__rot--503 {
            background: url(../i/err/world-map-503.png) 0 0 repeat-x;
        }

@media (max-width: 505px) {

.planet__rot {
            width: 100px;
            height: 101px
    }
        }

@-webkit-keyframes rotate {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 650px 0;
    }
}

@keyframes rotate {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 650px 0;
    }
}

@-webkit-keyframes pulse {
    to {
        -webkit-box-shadow: 0 0 0 65px #fff;
                box-shadow: 0 0 0 65px #fff;
    }
}

@keyframes pulse {
    to {
        -webkit-box-shadow: 0 0 0 65px #fff;
                box-shadow: 0 0 0 65px #fff;
    }
}

.error-page {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: calc(100vh - 9rem);
    height: 50vh;
}

@media (max-width: 1204px) {

.error-page {
        padding-right: 2rem;
        padding-left: 2rem
}
    }

@media (max-width: 360px) {

.error-page {
        padding-right: 1rem;
        padding-left: 1rem
}
    }

.error-page__text {
        text-align: center;
        color: #4a4a4a;
        width: 100%;
        
    }

.error-page__text h1 {
            font-size: 24px;
            font-weight: 700;
        }

.error-page__text a {
            color: #0043dc;
            text-decoration: underline;
        }

.error-page__text p:last-of-type {
            margin-bottom: 0;
        }

.error-page__text--404 h1 {
                color: #0043dc;
            }

.error-page__text--503 h1 {
                color: #8000dc;
            }

.checkbox {
    border: none;
    position: relative;
    max-width: 28.5rem;
    margin-right: auto;
    margin-bottom: 2rem;
    text-align: left;
    padding: 1em 2rem;
}

.checkbox input {
      display: none;
      visibility: hidden;
    }

.checkbox.inverted {
       margin: 0;
    }

.checkbox.inverted input {
         height: 25px;
       }

.checkbox.inverted input:checked  + label::before {
           background-image: url(../i/icon/icon-check-grey.svg);
         }

.checkbox.inverted label {
         color: black;
       }

.checkbox.inverted label::before {
           border: 1px solid black;
         }

.checkbox label {
        cursor: pointer;
        font-weight: 400;
        max-width: 18rem;
        height: 100%;
        line-height: 1.1rem;
        font-size: 0.9rem;
        color: #ffffff;
    }

.checkbox label::before {
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            cursor: pointer;
            content: '';
            display: inline-block;
            width: 25px;
            height: 25px;
            border-radius: 2px;
            border: 1px solid #ffffff;
            position: absolute;
            left: 0;
            margin-right: 10px;
            background: none;
            background-position: -30px 50%;
            background-size: contain;
            -webkit-transition: background 0.5s;
            -o-transition: background 0.5s;
            transition: background 0.5s;
        }

@media (max-width: 480px) {

.checkbox label {
            color: #4a4a4a
    }

            .checkbox label::before {
                border-color: #979797;
            }
        }

.checkbox input:checked + label::before {
        background: url(../i/icon/icon-check.svg) 0 50% no-repeat;
        background-size: contain;
    }

@media (max-width: 480px) {

.checkbox input:checked + label::before {
            background-image: url(../i/icon/icon-check-grey.svg)
    }
        }

.checkbox.error label::before {
                border-color: #ff798a;
            }

.checkbox--alignbtm {
        margin-top: 1.8rem;
    }

@media (max-width: 1023px) {

.checkbox--alignbtm {
            margin-top: 0
    }
        }

@media (max-width: 795px) {

.checkbox--alignbtm {
            margin-top: 1.8rem
    }
        }

@media (max-width: 779px) {

.checkbox--alignbtm {
            margin-top: 0
    }
        }

.checkbox--popup {
        margin-bottom: .5rem;
    }

.checkbox--popup label {
            color: #4a4a4a;
        }

.checkbox--popup label::before {
                border-color: #4a4a4a;
            }

.checkbox--popup input:checked + label::before {
            background-image: url(../i/icon/icon-check-grey.svg);
        }

@media (max-width: 767px) {

.checkbox--popup {
            max-width: 28.5rem;
            margin-right: auto;
            margin-left: auto
    }
        }

.type-block {
    color: #49555a;
    margin-bottom: 4rem;
}

.type-block .container {
        margin-bottom: 0;
    }

.type-block .container:not(:last-child) {
            margin-right: 0rem;
        }

.type-block .container:first-child {
            margin-right: 2rem;
        }

@media (max-width: 767px) {

.type-block .container:first-child {
                margin-right: 0;
                margin-bottom: 2rem
        }
            }

.type-block .container__content p {
            line-height: 1.25rem;
        }

.type-block .container__content ul:not(.transform-text) {
            margin-left: 0;
            margin-bottom: 1.5rem;
        }

.type-block .container__content ul:not(.transform-text) li {
                line-height: 2rem;
            }

.type-block .container__content ul:not(.transform-text) li::before {
                    margin-right: 1rem;
                }

.type-block .transform-text {
        margin-left: 3rem;
        color: #6c6c6c;
        line-height: normal;
        line-height: 2rem;
    }

.type-block__btn-wrap {
        margin-top: 3rem;
        text-align: center;
    }

@media (max-width: 767px) {

.type-block__btn-wrap {
            width: 100%;
            margin-top: 3.5rem
    }
        }

.type-block__btn-wrap .btn {
            margin-bottom: 1rem;
        }

@media (max-width: 767px) {

.type-block__btn-wrap .btn {
                margin-right: auto;
                margin-left: auto
        }
            }

.type-block__btn-wrap span {
            display: block;
            font-size: 0.9rem;
            font-weight: 300;
            width: 100%;
        }

@media (max-width: 767px) {

.type-block__btn-wrap span {
                text-align: center
        }
            }

.type-block--float {
        display: block;
    }

.type-block--float .container:not(:last-child) {
                float: right;
            }

.type-block--float .container:first-child {
                float: left;
            }

.type-block--float .type-block__btn-wrap {
            float: left;
        }

@media (max-width: 767px) {

.type-block {
        margin-bottom: 3.5rem
}
    }

.little-feature {
    width: 50%;
    padding-top: 4rem;
    background-position: top center;
    background-repeat: no-repeat;
    margin-bottom: 2rem;
}

.little-feature p {
        text-align: center;
    }

@media (max-width: 480px) {

.little-feature p {
            text-align: left;
            margin-bottom: 0
    }
        }

.little-feature:nth-last-child(-n+2) {
        margin-bottom: 0;
    }

@media (max-width: 480px) {

.little-feature {
        min-height: 40px;
        width: 100%;
        padding-left: 4rem;
        padding-top: 0;
        background-position: left center;
        
        display: -webkit-box;
        
        display: -ms-flexbox;
        
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center
}
        
        .little-feature:nth-last-child(-n+2) {
            margin-bottom: 2rem;
        }
        
        .little-feature:last-child {
            margin-bottom: 0rem;
        }
    }

.cloud-head {
    position: relative;
    padding: 6rem 0 2.4rem 0;
    color: #ffffff;
    margin-top: -96px;
    margin-bottom: 2.4rem;
    background-size: cover;
    background-position: center;
}

.cloud-head__content {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        position: relative;
        z-index: 1;
    }

@media (max-width: 1204px) {

.cloud-head__content {
        padding-right: 2rem;
        padding-left: 2rem;
    }
    }

@media (max-width: 360px) {

.cloud-head__content {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    }

@media (max-width: 767px) {

.cloud-head__nav-wrap {
            position: relative;
            width: calc(100% + 4rem);
            left: -2rem;
            border-bottom: 1px solid #ffffff;
            margin-bottom: 7rem;
            overflow-x: visible;
            overflow-y: hidden;
            position: relative    
    }
            
            .cloud-head__nav-wrap::-webkit-scrollbar {
                height: 0px;
                background: rgba(255,255,255,0);
            }
            .cloud-head__nav-wrap ::-webkit-scrollbar-thumb {
                background-color: darkgrey;
                outline: 1px solid slategrey;
            }
        }

@media (max-width: 360px) {

.cloud-head__nav-wrap {
            margin-bottom: 5rem;
            width: calc(100% + 2rem);
            left: -1rem    
    }
        }

.cloud-head__navigation {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid #ffffff;
        margin-bottom: 7rem;
    }

@media (max-width: 767px) {

.cloud-head__navigation {
            margin-bottom: 0;
            border-bottom: none
    }
        }

.cloud-head__navigation-highlight {
        display: block;
        bottom: -3px;
        left: 0;
        position: absolute;
        height: 5px;
        background: #ffffff;
        opacity: 0;
        -webkit-transition: opacity .2s ease;
        -o-transition: opacity .2s ease;
        transition: opacity .2s ease;

    }

.cloud-head__bg {
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#0043dc), to(rgba(0, 0, 0, 0)));
        background-image: -webkit-linear-gradient(top, #0043dc 0%, rgba(0, 0, 0, 0) 100%);
        background-image: -o-linear-gradient(top, #0043dc 0%, rgba(0, 0, 0, 0) 100%);
        background-image: linear-gradient(180deg, #0043dc 0%, rgba(0, 0, 0, 0) 100%);
    }

.cloud-head__text {
        display: block;
        max-width: 340px;
    }

.cloud-head__text h1 {
            font-size: 70px;
            font-weight: 700;
            line-height: 56px;
            text-transform: uppercase;
            color: #ffffff;
        }

@media (max-width: 480px) {

.cloud-head__text h1 {
                font-size: 1.875rem;
                line-height: 2.25rem
        }
            }

.cloud-head__text p {
            font-size: 1rem;
            line-height: 1rem;
        }

.cloud-head__text :last-child {
            margin-bottom: 0;
        }

.cloud-head__type {
        display: block;
        font-size: 22px;
        font-weight: 300;
        margin-bottom: .8rem;
    }

.cloud-head__navigation-btn {
        position: relative;
        min-width: 86px;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        padding: 0 1rem 1rem 1rem;
    }

.cloud-head__navigation-btn:first-child {
            text-align: left;
            margin-left: -1rem;
        }

@media (max-width: 767px) {

.cloud-head__navigation-btn {
            min-width: calc(86px + 1rem)
    }
            
            .cloud-head__navigation-btn:first-child {
                text-align: center;
                margin-left: 0;
            }  
        }

.colocation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

@media (max-width: 1023px) {

.colocation {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-top: 1rem
}
    }

.colocation__col {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

.colocation__col input[disabled] {
            cursor: not-allowed;
        }

.colocation__col > strong,
        .colocation__col .colocation__cost-justify-wrap > strong {
            display: block;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.5rem;
            margin-bottom: 2.5rem;
        }

@media (max-width: 1023px) {

.colocation__col > strong,
        .colocation__col .colocation__cost-justify-wrap > strong {
                margin-bottom: 1.25rem
        }
            }

.colocation__col--general {
            width: 35%;
            margin-right: 6rem;
        }

@media (max-width: 1023px) {

.colocation__col--general {
                width: 100%;
                margin-right: 0
        }
            }

.colocation__col--general ul li {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                            justify-content: space-between;
                    font-size: 14px;
                    margin-bottom: 2rem;
                }

@media (max-width: 1023px) {

.colocation__col--general ul li {
                        margin-bottom: 2rem
                }

                        .colocation__col--general ul li strong {
                            text-align: right;
                        }
                    }

.colocation__col--additional {
            width: 26%;
            margin-right: 4.5rem;
        }

@media (max-width: 1023px) {

.colocation__col--additional {
                width: 100%;
                margin-right: 0
        }
            }

.colocation__col--costs {
            width: 23%;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
        }

@media (max-width: 1023px) {

.colocation__col--costs {
                width: 100%;
                margin-top: 2rem
        }
            }

.colocation__col--costs ul li {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                            justify-content: space-between;
                    font-size: 16px;
                    line-height: 1.35rem;
                    margin-bottom: 1.5rem;
                }

.colocation__col--costs ul li strong {
                        white-space: nowrap;
                    }

.colocation__cost strong {
            font-size: 40px;
        }

.colocation__cost > span {
            display: block;
            font-size: 30px;
        }

.colocation__cost .btn {
            min-width: 100%;
            text-align: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            margin-top: 1.5rem;
        }

.spinner__down,
    .spinner__up {
        display: block;
        right: 1px;
        bottom: 3px;
        position: absolute;
        height: 34px;
        width: 38px;
        border: 0;
        padding: 0;
        background-color: #fff;
        color: #979797;
        cursor: pointer;
        border-left: 1px solid currentColor;
        -webkit-transition: border-color .2s ease, color .2s ease;
        -o-transition: border-color .2s ease, color .2s ease;
        transition: border-color .2s ease, color .2s ease;
    }

.spinner__down:after,
        .spinner__down:before,
        .spinner__up:after,
        .spinner__up:before {
            content: '';
            display: block;
            top: 50%;
            left: calc(50% - 7px);
            position: absolute;
            width: 16px;
            height: 1px;
            background-color: currentColor;
            -webkit-transition: background-color .2s ease;
            -o-transition: background-color .2s ease;
            transition: background-color .2s ease;
        }

.spinner__down:before, .spinner__up:before {
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
        }

.spinner__down {
        right: 39px;
    }

.spinner__down:before {
            display: none;
        }

.spinner__up {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;

    }

.configurator {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 6rem;
}

@media (max-width: 1204px) {

.configurator {
        padding-right: 2rem;
        padding-left: 2rem
}
    }

@media (max-width: 360px) {

.configurator {
        padding-right: 1rem;
        padding-left: 1rem
}
    }

.configurator__title-name {
        text-transform: uppercase;
    }

.configurator__title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        width: 100%;
        margin-bottom: 2rem;
        padding-left: calc(260px + 2.5rem);
        color: #0097dc;
    }

@media(max-width: 1023px) {

.configurator__title {
            padding-left: 0
    }
        }

.configurator__title--purple {
            color: #8000dc;
        }

.configurator__title--red {
            color: #dc1d00;
        }

.configurator__title--blue {
            color: #0043dc;
        }

.configurator__title h2 {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            margin-right: 1rem;
            margin-bottom: 0;
            color: inherit;
            cursor: default;
        }

.configurator__title a {
            margin-bottom: 6px;
            color: #0043dc;
        }

.configurator__title-desc {
        font-size: 16px;
        line-height: 1rem;
        font-weight: 300;
    }

.configurator__filter {
        width: 260px;
        margin-right: 2.5rem;
    }

@media(max-width: 1023px) {

.configurator__filter {
            width: 100%;
            margin-right: 0
    }
        }

.configurator__items-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: calc(100% - 260px - 2.5rem);
    }

@media(max-width: 1023px) {

.configurator__items-wrap {
            width: 100%
    }
        }

.radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.radio input {
        display: none;
    }

.radio input:checked + label {
                font-weight: 500;
            }

.radio input:checked + label:before {
                    background: #0043dc;
                    -webkit-box-shadow: inset 0 0 0 2px #fff;
                            box-shadow: inset 0 0 0 2px #fff;
                }

.radio label {
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        margin-right: .5rem;
    }

.radio label:before {
            content: '';
            display: block;
            top: 3px;
            left: 0;
            position: absolute;
            width: 15px;
            height: 15px;
            border: 1px solid #0043dc;
            border-radius: 50%;
            -webkit-transition: all .2s ease;
            -o-transition: all .2s ease;
            transition: all .2s ease;
        }

.radio__acc-more {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: url(../i/icon/_.svg) center center /auto 50% no-repeat #0043dc;
    }

@media(min-width: 481px) {

.radio__acc-more {
            background: url(../i/icon/_-blue.svg) center center /auto 50% no-repeat #fff
    }
        }

.radio--white {
        color: #4a4a4a;
    }

@media(max-width: 480px) {

.radio--white label {
                width: calc(100% - 18px)
        }
            }

@media(min-width: 481px) {

.radio--white {
            color: #fff
    }
            
            .radio--white input:checked + label:before {
                background: #fff;
                -webkit-box-shadow: inset 0 0 0 2px #0043dc;
                        box-shadow: inset 0 0 0 2px #0043dc;
            }

            .radio--white label:before {
                border: 1px solid #fff;
            }
        }

.configurator-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #ffffff;
    padding: 1.5rem 0 1.5rem 2rem;
}

@media (max-width: 1170px) {

.configurator-item {
        padding-left: 1rem
}
    }

@media (max-width: 767px) {

.configurator-item {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 1.5rem
}
    }

@media (max-width: 360px) {

.configurator-item {
        padding: 1rem;
        -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1)
}
    }

.configurator-item:not(:last-child) {
        margin-bottom: 1.5rem;
    }

.configurator-item__name {
        min-width: 164px;
        padding-right: 1rem;
        font-size: 18px;
        font-weight: 700;
        color: #0043dc;
    }

@media (max-width: 1023px) {

.configurator-item__name {
            padding-right: 0;
            margin-right: 3rem
    }
        }

@media (max-width: 895px) {

.configurator-item__name {
            margin-right: 1.5rem
    }
        }

@media (max-width: 767px) {

.configurator-item__name {
            width: 100%;
            margin-bottom: 1.5rem;
            margin-right: 0
    }
        }

.configurator-item__props {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -ms-flex-negative: 10;
            flex-shrink: 10;
    }

@media(max-width: 1090px) {

.configurator-item__props {
            -ms-flex-negative: 3;
                flex-shrink: 3
    }
        }

@media (max-width: 1023px) {

.configurator-item__props {
            width: 100%
    }
        }

@media (max-width: 767px) {

.configurator-item__props {
            -ms-flex-negative: 1;
                flex-shrink: 1;
            width: 100%;
            margin-bottom: 1.5rem
    }
        }

.configurator-item__props > ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-bottom: 1.5rem;
        }

@media(max-width: 767px) {

.configurator-item__props > ul {
                margin-bottom: 0
        }
            }

.configurator-item__props > ul > li {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
                width: calc(50% - 1.5rem);
                font-size: 14px;
                line-height: 21px;
                font-weight: 700;
                margin-bottom: 1rem;
            }

.configurator-item__props > ul > li span {
                    color: #0043dc;
                    font-weight: 400;
                }

.configurator-item__additional-btn {
        position: relative;
        background: transparent;
        padding: 0 24px 0 0;
        color: #0043dc;
        font-size: 14px;
    }

.configurator-item__additional-btn:after {
            content: '';
            display: block;
            top: calc(50% - 5px);
            right: 0;
            position: absolute;
            width: 9px;
            height: 9px;
            border-right: 1px solid #0043dc;
            border-bottom: 1px solid #0043dc;
            -webkit-transform: rotate(45deg);
                    transform: rotate(45deg);
        }

.configurator-item__additional-btn.active:after {
                -webkit-transform: rotate(-135deg);
                        transform: rotate(-135deg);
                top: 50%;
            }

.configurator-item__additional-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        opacity: 0;
        padding-top: 1.5rem;
        height: 0;
        -webkit-transition: margin-bottom .4s ease, opacity .4s ease;
        -o-transition: margin-bottom .4s ease, opacity .4s ease;
        transition: margin-bottom .4s ease, opacity .4s ease;
        margin-bottom: -1.5rem;
        overflow: hidden;
    }

.configurator-item__additional-content.active {
            opacity: 1;
            margin-bottom: 0rem;
        }

.configurator-item__additional-content.active.animation-ended .configurator-item__additional-item:after {
                        content: attr(data-max-text);
                        display: block;
                        top: 50%;
                        left: calc(100% + 0.5rem);
                        position: absolute;
                        background-color: #eeeeee;
                        border-radius: 3px;
                        height: 27px;
                        line-height: 27px;
                        white-space: nowrap;
                        z-index: 1;
                        padding: 0 5px;
                        color: #4a4a4a;
                        opacity: 0;
                        visibility: hidden;
                        -webkit-transform: translateX(-10px) translateY(-50%);
                                transform: translateX(-10px) translateY(-50%);
                        -webkit-transition: all .2s ease;
                        -o-transition: all .2s ease;
                        transition: all .2s ease;
                    }

.configurator-item__additional-content.active.animation-ended .configurator-item__additional-item.notify-active:after, .configurator-item__additional-content.active.animation-ended .configurator-item__additional-item:hover:after {
                            opacity: 1;
                            visibility: visible;
                            -webkit-transform: translateX(0) translateY(-50%);
                                    transform: translateX(0) translateY(-50%);
                        }

@media(max-width: 480px) {
                        .configurator-item__additional-content.active.animation-ended .configurator-item__additional-item::after {
                            left: auto;
                            right: 30%;
                        }
                    }

.configurator-item__additional-item {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: calc(50% - 1rem);
        font-size: 14px;
        margin-bottom: 1rem;

    }

@media(max-width: 1170px) {

.configurator-item__additional-item {
            width: calc(50% - 0.5rem)

    }
        }

@media(max-width: 1090px) {

.configurator-item__additional-item {
            width: 100%

    }
        }

@media(max-width: 1023px) {

.configurator-item__additional-item {
            width: calc(50% - 1rem)

    }
        }

@media(max-width: 825px) {

.configurator-item__additional-item {
            width: 100%;
            max-width: 405px

    }
        }

@media (max-width: 767px) {

.configurator-item__additional-item {
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            width: 60%;
            max-width: none

    }
        }

@media (max-width: 480px) {

.configurator-item__additional-item {
            width: 100%

    }
        }

.configurator-item__additional-item:nth-last-child(1),
        .configurator-item__additional-item:nth-last-child(2) {
            margin-bottom: 0;
        }

@media(max-width: 1090px) {

.configurator-item__additional-item:nth-last-child(2) {
                margin-bottom: 1rem
        }
            }

@media(max-width: 1023px) {

.configurator-item__additional-item:nth-last-child(2) {
                margin-bottom: 0
        }
            }

@media(max-width: 825px) {

.configurator-item__additional-item:nth-last-child(2) {
                margin-bottom: 1rem
        }
            }

.configurator-item__additional-item span {
            font-weight: 700;
        }

.configurator-item__additional-item input {
            width: 72px;
            height: 31px;
            border-radius: 5px;
            border: 1px solid #979797;
            padding: 0 6px;
            line-height: 29px;
            text-align: center;
            color: #0043dc;
        }

.configurator-item__additional-item input[disabled] {
                opacity: .4;
                cursor: not-allowed;
            }

.configurator-item__additional-item input::-webkit-outer-spin-button,
        .configurator-item__additional-item input::-webkit-inner-spin-button
        {
            -webkit-appearance: none;   /* display: none alt can crash on hover */
            margin: 0px;                /* sometimes margin is left for spinner */
        }

.configurator-item__cost-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        padding: 0 0 1.5rem 0;
        width: 235px;
        margin-left: 4rem;
    }

@media (max-width: 1280px) {

.configurator-item__cost-wrap {
            width: 185px;
            margin-left: 3rem
    }
        }

@media(max-width: 1060px) {

.configurator-item__cost-wrap {
            margin-left: 2rem
    }
        }

@media (max-width: 767px) {

.configurator-item__cost-wrap {
            margin-left: 0;
            width: 100%;
            padding-bottom: 0
    }
        }

.configurator-item__cost {
        font-size: 14px;
        margin-left: 2rem;
    }

.configurator-item__cost strong {
            display: block;
            font-size: 21px;
        }

@media (max-width: 767px) {

.configurator-item__cost {
            margin-left: 0
    }
        }

.configurator-item__order.trial {
         background-color: #d3335c;
     }

.configurator-item__order.trial:hover {
             background-color: #c32c53;
         }

.configurator-item__order,
    .configurator-item__add-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        height: 36px;
        border-radius: 5px 0 0 5px;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        color: #ffffff;
        background-color: #0043dc;
        padding: 0 40px 0 20px;
        border: 0;
        margin-top: 1rem;
        cursor: pointer;
        -webkit-transition: background-color .2s ease;
        -o-transition: background-color .2s ease;
        transition: background-color .2s ease;
    }

@media (min-width: 1171px) {
            .configurator-item__order:hover, .configurator-item__add-btn:hover {
                background-color: rgb(51, 112, 255);
            }

            .configurator-item__order:active, .configurator-item__add-btn:active {
                background-color: rgb(0, 46, 153);
            }
        }

@media (max-width: 767px) {

.configurator-item__order,
    .configurator-item__add-btn {
            width: calc(100% + 3rem);
            height: 47px;
            position: relative;
            bottom: -1.5rem;
            left: -1.5rem;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            border-radius: 0;
            margin-top: 5px
    }
        }

@media(max-width: 360px) {

.configurator-item__order,
    .configurator-item__add-btn {
            padding: 0;
            left: -1rem;
            bottom: -1rem;
            width: calc(100% + 2rem);
            border-radius: 0
    }
        }

html.is-ie .configurator-item__additional-item span {
        margin-right: auto;
    }

html.is-ie .configurator-item__props, html.is-ie .js-params-list, html.is-ie .configurator-item__additional-content {
        width: 100%;
    }

@media (max-width: 1023px) {

html.is-ie .filter--configurator .filter__items .field {
            width: 66%
    }
        }

@media (max-width: 480px) {

html.is-ie .filter--configurator .filter__items .field {
            width: 80%
    }
        }

@media (max-width: 480px) {

html.is-ie .configurator-item__additional-btn  {
            width: 100%
    }
        }

.configurator-item__additional-content {
  overflow: visible;
}

.b-menu {
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    padding: 140px 0 200px 0;
}

@media (max-height: 690px) {

.b-menu {
        padding-bottom: 140px
}
    }

@media (max-width: 767px) {

.b-menu {
        display: block;
        padding: 100px 0 0 0
}

    }

.b-menu--active {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
                transform: scale(1);
    }

.b-menu__bg {
        display: block;
        top: 0;
        left: 0;
        position: fixed;
        width: 100%;
        height: 100%;
    }

@media (max-width: 767px) {

.b-menu__bg {
            display: none
    }
        }

.b-menu__bg-right {
            top: 0;
            right: 0;
            position: absolute;
            height: 100%;
            width: 40%;
            background-color: #f3f3f3;
            background-size: cover;
            background-position: center;
            background-image: url(../i/c/burger-menu-bg.jpg);
        }

@media (max-width: 1023px) {

.b-menu__bg-right {
                width: 45%
        }
            }

.b-menu__sides {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        height: 100%;
        max-width: 1100px;
        z-index: 1;
    }

@media (max-width: 1170px) {

.b-menu__sides {
            width: 85%
    }
        }

@media (max-width: 1023px) {

.b-menu__sides {
            width: 90%
    }
        }

@media (max-width: 767px) {

.b-menu__sides {
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            width: 90%;
            display: block;
            height: 100%;
            overflow: scroll;
            padding-bottom: 60px
    }
            @media (max-width: 1204px) {

.b-menu__sides {
        padding-right: 2rem;
        padding-left: 2rem
    }
    }
            @media (max-width: 360px) {

.b-menu__sides {
        padding-right: 1rem;
        padding-left: 1rem
    }
    }
        }

.b-menu__left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-right: auto;
    }

@media (max-width: 767px) {

.b-menu__left {
            margin-bottom: 67px;
            margin-right: 0
    }
        }

.b-menu__right {
        color: #ffffff;
    }

@media (max-width: 767px) {

.b-menu__right {
            color: inherit;
            margin-bottom: 24px
    }
        }

.b-menu__large-list {
        position: relative;

        -webkit-box-align: center;

            -ms-flex-align: center;

                align-items: center;
        height: 100%;
    }

.b-menu__large-list li a {
                position: relative;
                display: inline-block;
                padding: 4px 6px 4px 0;
                font-size: 34px;
                line-height: 2rem;
                font-weight: 500;
                margin-bottom: 2.5rem;
                z-index: 1;
                color: #000000;
            }

@media (max-height: 780px) {

.b-menu__large-list li a {
                    margin-bottom: 1.5rem
            }
                }

@media (max-height: 690px) {

.b-menu__large-list li a {
                    font-size: 28px;
                    margin-bottom: 1.25rem
            }
                }

@media (max-width: 767px) {

.b-menu__large-list li a {
                    font-size: 24px
            }
                }

@media (min-width: 1171px) {
                    .b-menu__large-list li a:after {
                        content: '';
                        display: block;
                        top: 0;
                        right: 0;
                        position: absolute;
                        width: calc(100% + 41px);
                        height: 100%;
                        -webkit-transform-origin: left center;
                                transform-origin: left center;
                        background: #0043dc;
                        z-index: -1;
                        opacity: 0;
                    }

                    .b-menu__large-list li a:hover {
                        color: #ffffff;
                    }

                        .b-menu__large-list li a:hover:after {
                            opacity: 1;
                        }
                }

.b-menu__large-list li a.is-mobile {
                    display: none;
                    color: #0043dc;
                }

@media (max-width: 767px) {

.b-menu__large-list li a.is-mobile {
                        display: block
                }
                    }

.b-menu__large-list li:last-child a {
                margin-bottom: 0;
            }

.b-menu__lists {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-flex: 2;
            -ms-flex-positive: 2;
                flex-grow: 2;
    }

@media (max-width: 767px) {

.b-menu__lists {
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start
    }
        }

.b-menu__list-wrap {
        display: block;
        line-height: 1.8rem;
    }

.b-menu__list-wrap a {
            font-size: 1rem;
        }

.b-menu__list-wrap:not(:last-child) {
            margin-right: 3rem;
        }

@media (max-width: 480px) {

.b-menu__list-wrap:not(:last-child) {
                margin-right: 2rem
        }
            }

@media (max-width: 360px) {

.b-menu__list-wrap:not(:last-child) {
                margin-right: 1rem
        }
            }

.b-menu__list-title {
        display: block;
        margin-bottom: .8rem;
        font-weight: 700;
    }

.b-menu__list li:not(:last-child) {
                margin-bottom: .8rem;
            }

.b-menu__contacts {
        display: block;
        bottom: -100px;
        left: 0;
        position: absolute;
    }

@media (max-width: 767px) {

.b-menu__contacts {
            position: relative;
            bottom: 0
    }
        }

.b-menu__contacts a {
            display: block;
            margin-bottom: 2rem;
            font-size: 1rem;
            line-height: 1.15;
            color: #000;
        }

@media (max-height: 690px) {

.b-menu__contacts a {
                margin-bottom: 1rem
        }
            }

.b-menu__contacts a:last-child {
                margin-bottom: 0;
            }

.b-menu__contacts a span {
                display: block;
                margin-top: .5rem;
            }

.b-menu__search-field {
        width: calc(100% - 2.5rem);
        padding: .5rem 2rem .5rem 1rem;
        border: none;
        border-bottom: 1px solid #0043dc;
    }

.b-menu__search-field[type=text]::-ms-clear {
            display: none;
            width : 0;
            height: 0;
        }

.b-menu__search-field[type=text]::-ms-reveal {
            display: none;
            width : 0;
            height: 0;
        }

.b-menu__search {
        display: none;
        -ms-flex-line-pack: center;
            align-content: center;
        height: 3.5rem;
        width: 100%;
        padding: .5rem 0 ;
        margin-bottom: 1rem;
    }

@media(max-width: 767px) {

.b-menu__search.is-mobile {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex
        }
            }

.b-menu__search-btn {
        width: 2.5rem;
        height: 2.5rem;
        background: url(../i/search-blue.svg) no-repeat center;
        z-index: 1;
    }

.white-head {
    position: relative;
    padding: 6rem 0 4rem 0;
    -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    /*max-width: 1263px;*/
    margin: -96px auto 4rem auto;
}

@media (max-width: 767px) {

.white-head {
        -webkit-box-shadow: none;
                box-shadow: none;
        margin-bottom: 1rem;
        padding-bottom: 2rem
}
    }

.white-head--rent {
        padding-bottom: 1rem;
    }

.white-head--search {
        padding-bottom: 2.5rem;
        margin-bottom: 2rem;
    }

@media (max-width: 767px) {

.white-head--search {
            margin-bottom: 1rem
    }
        }

.white-head--search .white-head__content > p {
                font-size: 2rem;
            }

@media (max-width: 480px) {

.white-head--search .white-head__content > p {
                    font-size: 1.5rem
            }
                }

.white-head--search .field--search {
            width: 100%;
        }

.white-head__content {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        position: relative;
        z-index: 1;
    }

@media (max-width: 1204px) {

.white-head__content {
        padding-right: 2rem;
        padding-left: 2rem;
    }
    }

@media (max-width: 360px) {

.white-head__content {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    }

.white-head__head {
        padding-bottom: 4rem;
        margin-bottom: 4rem;
    }

.white-head__text {
        display: block;
        max-width: 800px;
        color: #4a4a4a;
    }

.white-head__types {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

@media (max-width: 480px) {

.white-head__types {
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-top: 1rem
    }
        }

.white-head__type {
        display: block;
        height: 53px;
        line-height: 51px;
        border-radius: 27px;
        border: 1px solid #0097dc;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        background: transparent;
        min-width: 165px;
        cursor: pointer;
        -webkit-transition: background-color .2s ease, color .2s ease;
        -o-transition: background-color .2s ease, color .2s ease;
        transition: background-color .2s ease, color .2s ease;
        margin-bottom: 1rem;


    }

@media (max-width: 480px) {

.white-head__type {
            height: 43px;
            line-height: 41px;
            min-width: inherit;
            width: calc(50% - 0.5rem)


    }
        }

.white-head__type:not(:last-child) {
            margin-right: 30px;
        }

@media (max-width: 480px) {

.white-head__type:not(:last-child) {
                margin-right: 0
        }
            }

.white-head__type.active,
        .white-head__type:hover {
            color: #ffffff;
            background: #0097dc;

        }

.white-head__type--purple {
            border-color: #8000dc;
        }

.white-head__type--purple.active,
            .white-head__type--purple:hover {
                background-color: #8000dc;
            }

.white-head__type--red {
            border-color: #dc1d00;
        }

.white-head__type--red.active,
            .white-head__type--red:hover {
                background-color: #dc1d00;
            }

.white-head__type--blue {
            border-color: #0043dc;
        }

.white-head__type--blue.active,
            .white-head__type--blue:hover {
                background-color: #0043dc;
            }

.white-head__pay-type .radio:not(:last-child) {
                margin-bottom: .8rem;
            }

@media (max-width: 480px) {

.white-head__pay-type .radio label {
                    font-size: 0.875rem;
                    line-height: 1.2rem;
                    width: calc(100% - 18px - 0.5rem)
            }
                }

.white-head__pay-type .radio__acc-more {
                background: url(../i/icon/_.svg) center center /auto 50% no-repeat #0043dc;
            }

.pop-up {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

@media (max-width: 1204px) {

.pop-up {
        padding-right: 2rem;
        padding-left: 2rem
}
    }

@media (max-width: 360px) {

.pop-up {
        padding-right: 1rem;
        padding-left: 1rem
}
    }

.pop-up__container {
        background: #fff;
        border-radius: 10px;
        -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
                box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
        padding: 4rem 6rem;
    }

.pop-up__container h2 {
            font-size: 2.5rem;
            line-height: 3.5rem;
            margin-bottom: 2rem;
        }

@media (max-width: 767px) {

.pop-up__container h2 {
                text-align: center
        }
            }

@media (max-width: 360px) {

.pop-up__container h2 {
                font-size: 1.5rem;
                line-height: 2.5rem
        }
            }

.pop-up__container > p {
            margin-bottom: 3rem;
        }

@media (max-width: 767px) {

.pop-up__container > p {
                text-align: center
        }
            }

@media (max-width: 767px) {

.pop-up__container {
            padding: 3rem 2rem
    }
        }

@media (max-width: 360px) {

.pop-up__container {
            padding: 2.5rem 1rem
    }
        }

.pop-up .btn {
        width: 16.5rem;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

@media (max-width: 767px) {

.pop-up .btn {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            margin: 0 auto
    }
        }

.pop-up--sm {
        max-width: 48rem;
    }

@media (max-width: 1204px) {

.pop-up {
        padding: 0
}
    }

.fileUpload {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    overflow: hidden;
    height: 1.5rem;
    line-height: 1.5rem;
}

.fileUpload span {
        max-width: 13rem;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        
        display: inline-block;
        color: #0043dc;
        position: relative;
        padding-left: 41px;
        z-index: 1;
        cursor: pointer;
    }

.fileUpload span::before {
            content: url('../i/icon/icon-plus.svg');
            display: inline-block;
            width: 19px;
            height: 19px;
            position: absolute;
            top: 2px;
            left: 0;
        }

.fileUpload span.is-add::before {
                content: url('../i/icon/icon-del.svg');
            }

.fileUpload input[type=file] {
        position: absolute;
        top: 0;
        opacity: 0;
        width: 0.1rem;
    }

.fileUpload.is-focused span {
            outline: 1px solid #0078d7;
            outline: -webkit-focus-ring-color auto 5px;
        }

@media (max-width: 767px) {

.fileUpload {
        margin-bottom: 2rem;
        width: 100%;
        max-width: 28.5rem
}
    }

.progress {
    display: inline-block;
    position: relative;
    width: 53px;
    margin-left: 1rem;
    background-color: #e7e7e7;
    border-radius: 4px;
}

.progress.is-hidden {
        opacity: 0;
        -webkit-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s;
    }

.progress .bar {
        background-color: #0043dc;
        width: 0%;
        height: 8px;
        border-radius: 3px;
        -webkit-transition: width 0.2s ease;
        -o-transition: width 0.2s ease;
        transition: width 0.2s ease;
    }

.progress #status {
        display: none;
    }

.textarea {
    position: relative;
}

.textarea textarea {
        max-width: 28.5rem;
        width: 100%;
        height: 144px;
        border-radius: 5px;
        border: 1px solid #4a4a4a;
        line-height: 2.25rem;
        padding-top: 24px;
        padding-right: 33px;
        padding-left: 33px;
        resize: none;
    }

.textarea.field {
        height: 154px;
        border: none;
    }

.dot-color--purple li::before {
            color: #8000dc;
        }

.dot-color--blue li::before {
            color: #0043dc;
        }

.dot-color--light-blue li::before {
            color: #0097dc;
        }

.dot-color--red li::before {
            color: #dc1d00;
        }

.review-slider {
    display: block;
    width: 100%;
}

.review-slider__slide {
        width: 100%;
        margin-right: 2rem;
    }

.review-slider .flickity-page-dots .dot {
            background-color: #969696;
            opacity: 1;
            -webkit-transition: background-color .2s ease;
            -o-transition: background-color .2s ease;
            transition: background-color .2s ease;
            width: 8px;
            height: 8px;
        }

.review-slider .flickity-page-dots .dot.is-selected {
                background-color: #0043dc;
            }

.review-slider .flickity-page-dots {
        top: calc(100% + 1.5rem);
    }

@media (max-width: 1170px) {

.review-slider .flickity-page-dots {
            width: calc(100% - 2rem)
    }
        }

.object-fit .search-results__img-wrap img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }

/*@mixin container;*/

.search-results__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 -1rem;
    }

.search-results__col {
        width: 100%;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

.search-results__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transition: opacity .2s ease;
        -o-transition: opacity .2s ease;
        transition: opacity .2s ease;
        -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
                box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        background-color: #ffffff;
        padding: 1.5rem 2rem;
    }

@media (max-width: 480px) {

.search-results__item {
            padding: 1.5rem 1.5rem
    }
        }

@media (max-width: 360px) {

.search-results__item {
            padding: 1rem 1rem
    }
        }

.search-results__item:hover {
            opacity: .77;
        }

.search-results__item:hover:active {
                opacity: 1;
            }

.search-results__item h3 {
            font-size: 1.5rem;
        }

.search-results__item b {
            color: #0043dc
        }

.search-results__text-wrap :last-child {
            margin-bottom: 0;
        }

.basket-overlay {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.basket {
    top: calc(100vh - 85px);
    right: 0;
    left: 0;
    position: fixed;
    margin: 0 auto;
    width: 100%;
    height: calc(100vh - 160px);
    max-width: 1440px;
    padding: 0 3.5rem;
    -webkit-box-shadow: 0 2px 44px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 44px rgba(0, 0, 0, 0.1);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
    -webkit-transition: top .6s ease, opacity .4s ease, visibility .4s ease;
    -o-transition: top .6s ease, opacity .4s ease, visibility .4s ease;
    transition: top .6s ease, opacity .4s ease, visibility .4s ease;
    z-index: 10;
}

@media (max-width: 1170px) {

.basket {
        padding: 0 1.5rem
}
    }

@media (max-width: 1023px) {

.basket {
        padding: 0
}
    }

@media (max-width: 1023px) {

.basket {
        height: 100vh
}

        .basket .ss-scroll {
            opacity: 1;
        }
    }

.basket--active:not(.basket--hidden) {
        top: 160px;
    }

@media (max-width: 1023px) {

.basket--active:not(.basket--hidden) {
            top: 0px
    }
        }

.basket--active:not(.basket--hidden) .basket__head {
            margin-top: -85px;
        }

.basket--active:not(.basket--hidden) ~ .basket-overlay {
            opacity: .7;
            visibility: visible;
            pointer-events: auto;
        }

.basket--hidden {
        top: 100vh;
        opacity: 0;
        visibility: hidden;
    }

.basket__head,
    .basket__content {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        position: relative;
    }

@media (max-width: 1204px) {

.basket__head,
    .basket__content {
        padding-right: 2rem;
        padding-left: 2rem;
    }
    }

@media (max-width: 360px) {

.basket__head,
    .basket__content {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    }

.basket__head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        height: 85px;
        -webkit-transition: margin-top .6s .2s ease;
        -o-transition: margin-top .6s .2s ease;
        transition: margin-top .6s .2s ease;
    }

.basket__head .btn {
            margin-left: 3rem;
        }

@media (max-width: 767px) {

.basket__head .btn {
                display: none
        }
            }

@media (max-width: 480px) {

.basket__head {
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between
    }
        }

.basket__cost,
    .basket__cost-per-month,
    .basket__cost-per-min {
        font-size: 14px;
        margin-left: 3rem;
    }

@media (max-width: 480px) {

.basket__cost,
    .basket__cost-per-month,
    .basket__cost-per-min {
            margin-left: 2rem;
            font-size: 12px
    }
        }

@media (max-width: 360px) {

.basket__cost,
    .basket__cost-per-month,
    .basket__cost-per-min {
            margin-left: 1.5rem
    }
        }

@media (max-width: 340px) {

.basket__cost,
    .basket__cost-per-month,
    .basket__cost-per-min {
            margin-left: 1.25rem
    }
        }

.basket__cost strong, .basket__cost-per-month strong, .basket__cost-per-min strong {
            display: block;
            font-size: 21px;
        }

@media (max-width: 360px) {

.basket__cost strong, .basket__cost-per-month strong, .basket__cost-per-min strong {
                font-size: 19px
        }
            }

.basket__cost-per-month,
    .basket__cost-per-min {
        display: block;
        margin-left: 0;
        width: 50%;
    }

.basket__cost-per-month strong, .basket__cost-per-min strong {
            font-size: 18px;
        }

@media (max-width: 360px) {

.basket__cost-per-month strong, .basket__cost-per-min strong {
                font-size: 17px
        }
            }

.basket__cost-per-month.selected strong, .basket__cost-per-min.selected strong {
                font-size: 25px;
            }

@media (max-width: 360px) {

.basket__cost-per-month.selected strong, .basket__cost-per-min.selected strong {
                    font-size: 21px
            }
                }

.basket__cost-per-month {
        padding-right: 28px;
        border-right: 1px solid #979797;

    }

.basket__cost-per-min {
        padding-left: 28px;
    }

.basket__cost-per-min strong {
            font-size: 18px;
        }

.basket__count {
        position: relative;
        color: #000000;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        padding-right: 2rem;
    }

@media (max-width: 480px) {

.basket__count {
            width: 50%
    }
        }

@media (max-width: 360px) {

.basket__count {
            padding-right: 1.25rem
    }
        }

.basket__count .js-count-text {
            color: #0043dc;
        }

.basket__count:after {
            content: '';
            display: block;
            top: calc(50% - 2px);
            right: 0;
            position: absolute;
            width: 12px;
            height: 12px;
            border-top: 2px solid #0043dc;
            border-right: 2px solid #0043dc;
            -webkit-transform: rotate(-45deg);
                    transform: rotate(-45deg);
        }

.basket__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        padding-top: 1.5rem;
        height: 100%;

    }

@media (max-width: 1170px) {

.basket__content {
            padding-left: 1rem;
            padding-right: 1rem

    }
        }

@media (max-width: 1023px) {

.basket__content {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap

    }
        }

.basket__title {
        margin-bottom: 3rem;
    }

@media (max-width: 480px) {

.basket__title {
            margin-bottom: 2rem
    }
        }

.basket__close {
        display: block;
        width: 29px;
        height: 29px;
        top: 2.5rem;
        right: 0;
        position: absolute;
        background: transparent;
        border: 0;
        padding-top: 0;
        cursor: pointer;
    }

@media (max-width: 1023px) {

.basket__close {
            right: 2.5rem
    }
        }

@media (max-width: 480px) {

.basket__close {
            top: 1.9rem
    }
        }

.basket__close:after,
        .basket__close:before {
            content: '';
            display: block;
            top: calc(50% - 14px);
            right: 50%;
            position: absolute;
            width: 1px;
            height: 28px;
            background: #dc1d00;
        }

.basket__close:after {
            -webkit-transform: rotate(-45deg);
                    transform: rotate(-45deg);
        }

.basket__close:before {
            -webkit-transform: rotate(45deg);
                    transform: rotate(45deg);
        }

.basket__items-wrap {
        display: block;
        width: calc(100% - 260px - 2rem);
        height: 100%;
        padding-bottom: 2rem;
    }

@media (max-width: 1023px) {

.basket__items-wrap {
            width: 100%;
            -webkit-box-ordinal-group: 101;
                -ms-flex-order: 100;
                    order: 100;
            padding-bottom: 0
    }
        }

.basket__items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 9px 18px 70px 9px;
    }

@media (max-width: 1170px) {

.basket__items {
            padding: 9px 18px 70px 18px
    }
        }

@media (max-width: 767px) {

.basket__items {
            padding: 9px 12px 56px 12px
    }
        }

.basket__items > * {
            margin-bottom: 1.5rem;
        }

.basket__costs-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        width: 260px;
        margin-left: 2rem;
    }

@media (max-width: 1023px) {

.basket__costs-wrap {
            margin-left: 0;
            margin-bottom: 2rem;
            width: 100%;
            padding-right: 40vw
    }
        }

@media (max-width: 560px) {

.basket__costs-wrap {
            padding-right: 0
    }
        }

.basket__costs-wrap .btn {
            text-transform: uppercase;
            width: 100%;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            margin-top: 3rem;
        }

@media (max-width: 767px) {

.basket__costs-wrap .btn {
                margin-top: 1.5rem;
                height: 47px;
                line-height: 47px
        }
            }

@media (max-width: 480px) {

.basket__costs-wrap .btn {
                margin-top: 1rem
        }
            }

/*------------------------------------*\
      theme styles
\*------------------------------------*/

/*------------------------------------*\
      define custom media & vars
\*------------------------------------*/

