/*Reset.css*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font-size: 100%;
    font-weight: normal;
    font-style: normal;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q {	quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
a { text-decoration: none; }
/* Normalize Styles */
html { min-height: 100%; font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
audio, canvas, progress, video { display: inline-block; vertical-align: baseline; }
audio:not([controls]) { display: none; height: 0; }
[hidden], template { display: none !important; }
a { background: transparent; }
a:active, a:hover { outline: 0; }
b, strong { font-weight: bold; }
i, em { font-style: italic; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
svg:not(:root) { overflow: hidden; }
hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
pre { overflow: auto; }
code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; }
button, input, optgroup, select, textarea { color: inherit; font: inherit; }
button { overflow: visible; }
button, select { text-transform: none; }
button, html input[type="button"],
input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; }
button[disabled], html input[disabled] { cursor: default; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
input { line-height: normal; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { height: auto; }
input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
textarea { overflow: auto; }
optgroup { font-weight: bold; }
/*End of Reset.css*/
@font-face {
    font-family: 'Muller';
    src: url('../fonts/MullerBold.eot');
    src: url('../fonts/MullerBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/MullerBold.woff2') format('woff2'),
    url('../fonts/MullerBold.woff') format('woff'),
    url('../fonts/MullerBold.ttf') format('truetype'),
    url('../fonts/MullerBold.svg#MullerBold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Muller';
    src: url('../fonts/MullerLight.eot');
    src: url('../fonts/MullerLight.eot?#iefix') format('embedded-opentype'),
    url('../fonts/MullerLight.woff2') format('woff2'),
    url('../fonts/MullerLight.woff') format('woff'),
    url('../fonts/MullerLight.ttf') format('truetype'),
    url('../fonts/MullerLight.svg#MullerLight') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Muller';
    src: url('../fonts/MullerRegular.eot');
    src: url('../fonts/MullerRegular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/MullerRegular.woff2') format('woff2'),
    url('../fonts/MullerRegular.woff') format('woff'),
    url('../fonts/MullerRegular.ttf') format('truetype'),
    url('../fonts/MullerRegular.svg#MullerRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
html {
    height: 100%;
    width: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    color: #252525;
    position: relative;
    background: #fff;
    height: auto;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Muller', sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}
a,
.link {
    color: #252525;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
}
a:hover,
.link:hover {
    color: #066593;
    text-decoration: none;
}
.link--underline {
    display: inline-block;
}
.link--underline:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    border-bottom: 1px solid #066593;
    -webkit-transition: all cubic-bezier(.26, 1.06, .8, .93) 0.3s;
    transition: all cubic-bezier(.26, 1.06, .8, .93) 0.3s;
}
.link--underline:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}
.button {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    width: auto;
    color: #fff;
    background-color: #066593;
    height: 42px;
    padding: 0 24px;
    border: none;
    border-radius: 21px;
    outline: none;
    -webkit-appearance: none;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    line-height: 42px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.button:hover {
    background-color: #1f5c7a;
    color: #fff;
}
.button--bordered {
    background: transparent;
    color: #066593;
    border: 2px solid #066593;
    line-height: 40px;
}
.button--bordered:hover {
    background-color: #066593;
    color: #fff;
}
.button--tall {
    height: 72px;
    line-height: 72px;
    min-width: 380px;
    border-radius: 36px;
}
.button:hover {
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    -moz-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
}
.button:active {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
    padding: 0 36px;
    height: 72px;
    color: #fff;
    border: 3px solid #FE7D00;
    border-radius: 36px;
    font-size: 18px;
    display: block;
    background: transparent;
    min-width: 380px;
}
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder {
    color: #fff;
}
.js-form-page input[type="text"], .js-form-page input[type="tel"] {
    margin-bottom: 16px;
}
.js-form-page input[type="email"] {
    margin-bottom: 32px;
}
.layout {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: auto;
}
h1,
.h1 {
    color: #252525;
    font-family: 'Muller', sans-serif;
    font-weight: normal;
    font-size: 32px;
    line-height: 38px;
}
h2,
h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Muller', sans-serif;
}
p,
.paragraph {
    margin-bottom: 24px;
}
[class*="lang-"] {
    background-position: 0 -1172px;
    min-width: 22px;
    height: 16px;
    min-height: 16px;
    max-height: 16px;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(../img/languages.png);
    position: relative;
    top: 3px;
}
.lang-ar{background-position:0 -484px}.lang-be{background-position:0 -500px}.lang-bg{background-position:0 -516px}.lang-cs{background-position:0 -532px}.lang-da{background-position:0 -548px}.lang-de{background-position:0 -564px}.lang-el{background-position:0 -580px}.lang-en{background-position:0 -596px}.lang-es{background-position:0 -612px}.lang-et{background-position:0 -628px}.lang-fi{background-position:0 -644px}.lang-fr{background-position:0 -660px}.lang-ga{background-position:0 -676px}.lang-hi{background-position:0 -692px}.lang-hr{background-position:0 -708px}.lang-hu{background-position:0 -724px}.lang-in{background-position:0 -740px}.lang-is{background-position:0 -756px}.lang-it{background-position:0 -772px}.lang-iw{background-position:0 -788px}.lang-ja{background-position:0 -804px}.lang-ko{background-position:0 -820px}.lang-lt{background-position:0 -836px}.lang-lv{background-position:0 -852px}.lang-mk{background-position:0 -868px}.lang-ms{background-position:0 -884px}.lang-mt{background-position:0 -900px}.lang-nl{background-position:0 -916px}.lang-no{background-position:0 -932px}.lang-pl{background-position:0 -948px}.lang-pt{background-position:0 -964px}.lang-ro{background-position:0 -980px}.lang-ru{background-position:0 -996px}.lang-sk{background-position:0 -1012px}.lang-sl{background-position:0 -1028px}.lang-sq{background-position:0 -1044px}.lang-sr{background-position:0 -1060px}.lang-sv{background-position:0 -1076px}.lang-th{background-position:0 -1092px}.lang-tr{background-position:0 -1108px}.lang-uk{background-position:0 -1124px}.lang-vi{background-position:0 -1140px}.lang-zh{background-position:0 -1156px}
.languages {
    
}
.languages a {
    padding: 0 4px;
    vertical-align: top;
    display: block;
}

.header__flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 20px;
    border-bottom: 1px solid #e2e2e2;
}

.menu {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__item {
    display: inline-block;
    margin-right: 50px;
}

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

.main {
    overflow: hidden;
}
.section-one {
    text-align: center;
    padding: 36px 0 150px;
}

.section-one__image {
    display: block;
    width: 100%;
    max-width: 1095px;
    margin: 36px auto 50px;
}

.section-one__title {
    margin-bottom: 60px;
}

.section-one__subtitle {
    color: #494949;
    font-size: 26px;
    line-height: 32px;
    padding: 36px 42px;
    max-width: 540px;
    border: 1px solid #e2e2e2;
    border-radius: 10px 10px 0 10px;
    margin: 0 auto 110px;
    font-weight: 300;
}

.section-one__man {
    position: absolute;
    bottom: -160px;
    right: 0;
    width: 420px;
}

.section-one__button {
    text-align: center;
}

.section-two {
    position: relative;
    background: url('/front/landing/img/background-2.jpg');
    background-size: cover;
    background-position: 100% 100%;
    padding: 60px 0 130px;
}

.section-two__background {
    display: none;
    max-width: 100%;
}

.section-two__title {
    text-align: center;
    color: #fff;
    margin: 0 0 90px;
    font-size: 58px;
    line-height: 70px;
}

.section-two__warning {
    max-width: 564px;
    margin: 0 auto 80px;
    background: #fff;
    border-radius: 10px 10px 0 10px;
    padding: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-two__icon {
    margin-right: 24px;
}

.section-two__text {
    font-size: 20px;
    font-weight: bold;
}

.ovals {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 505px;
    max-width: 950px;
    width: 100%;
    margin: auto;
}

.ovals__item {
    width: 25%;
    position: relative;
}

.ovals__item:nth-child(2n) {
    align-self: flex-end;
}

.ovals__item:nth-child(2n-1) {
    align-self: flex-start;
}

.ovals__text {
    color: #fff;
    font-weight: bold;
    max-width: 70%;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
}

.ovals__image {
    display: block;
    width: 280px;
    height: 280px;
}

.ovals__text--1 {
    left: 26px;
    top: 94px;
}

.ovals__text--2 {
    left: 43px;
    top: 129px;
}

.ovals__text--3 {
    left: 28px;
    top: 110px;
}

.ovals__text--4 {
    left: 42px;
    top: 109px;
}

.section-three {
    margin: 60px 0 120px;
    background: url('/front/landing/img/target.svg') 100% 77% no-repeat;
}

.section-three__title {
    font-size: 58px;
    line-height: 70px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 60px;
}

.section-three__subttile {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 46px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 102px;
}

.section-three__subttile-icon {
    display: block;
    width: 70px;
    height: 70px;
    margin-right: 60px;
}

.section-three__subttile-text {
    font-size: 38px;
    line-height: 47px;
}

.decision {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.decision__item {
    width: 25%;
    margin-right: 32px;
    border-radius: 10px;
    border: 5px solid #f9f9f9;
}

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

.decision__header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Rectangle 5: */
    background-image: linear-gradient(-124deg, #f7f7f7 7%, #ffffff 86%);
    padding: 0 44px 21px 19px;
}

.decision__icon {
    display: block;
    width: 30px;
    height: 48px;
}

.decision__number {
    font-size: 100px;
    line-height: 120px;
    font-weight: bold;
}

.decision__text {
    border-top: 5px solid #f9f9f9;
    padding: 32px;
    color: #4C4C4C;
    font-size: 20px;
    line-height: 32px;
}

.section-four {
    position: relative;
    background: url('/front/landing/img/background-3.jpg');
    background-size: cover;
    background-position: 100% 100%;
    padding: 60px 0 80px;
}

.section-four__title {
    text-align: center;
    color: #fff;
    margin: 0 0 100px;
    font-size: 58px;
    line-height: 70px;
}

.bubbles {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 550px;
    max-width: 1160px;
    margin: 0 auto 60px;
}

.bubbles__item {
    position: relative;
}

.bubbles__item:nth-child(2n-1) {
    align-self: flex-start;
}

.bubbles__item:nth-child(2n) {
    align-self: flex-end;
}

.bubbles__image {
    display: block;
}

.bubbles__image--1 {
    width: 212px;
    height: 212px;
}

.bubbles__image--2 {
    width: 256px;
    height: 256px;
}

.bubbles__image--3 {
    width: 372px;
    height: 372px;
}

.bubbles__image--4 {
    width: 256px;
    height: 256px;
}

.bubbles__text {
    position: absolute;
    z-index: 1;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 0 16px;
}

.bubbles__text--1 {
    top: 76px;
    left: 0;
}

.bubbles__text--2 {
    top: 90px;
    left: -6px;
}

.bubbles__number {
    position: absolute;
    z-index: 1;
    color: #fff;
    font-size: 100px;
    line-height: 120px;
    font-weight: bold;
}

.bubbles__text--3 {
    top: 124px;
    padding: 0 28px;
}

.bubbles__number--1 {
    top: -30px;
    right: -30px;
}

.bubbles__number--2 {
    top: -37px;
    right: -15px;
}

.bubbles__number--3 {
    top: -49px;
    right: 51px;
}

.bubbles__text--4 {
    top: 72px;
    padding: 0 22px;
}

.bubbles__number--4 {
    top: -47px;
    right: -18px;
}

.bubbles__item:first-child {
    margin-top: 80px;
}

.bubbles__item:nth-child(4) {
    margin-bottom: 55px;
}

.section-four__subtitle {
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 54px;
}

.section-four__button {
    text-align: center;
}

.section-five {
    margin: 60px 0 120px;
}

.section-five__title {
    font-size: 58px;
    line-height: 70px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 60px;
}

.tables {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tables__item {
    margin-right: 16px;
    width: 30%;
    text-align: center;
    border: 5px solid #EAEBEE;
}

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

.tables__item--blue {
    width: 40%;
    border-color: #00608A;
}

.tables__header {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    padding: 16px;
    height: 104px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tables__item-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    width: 77%;
}
.tables__cell {
    padding: 24px 16px;
    border-top: 5px solid #EAEBEE;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tables__item--gray {
    text-align: left;
    width: 23%;
}

.tables__item--gray .tables__header {
    justify-content: flex-start;
    background: #EAEBEE;
}

.tables__item--orange {
    border-color: #F4800A;
}

.tables__item--orange .tables__header {
    background: #F4800A;
    color: #fff;
}

.tables__item--orange .tables__cell {
    border-color: #F4800A;
}

.tables__cell--bold {
    font-weight: bold;
}

.tables__item--blue .tables__header {
    color: #fff;
    background: #00608A;
}

.tables__item--blue .tables__cell {
    border-color: #00608A;
}

.section-six {
    position: relative;
    background: url('/front/landing/img/background-4.jpg');
    background-size: cover;
    background-position: 100% 100%;
    padding: 60px 0 120px;
}

.section-six__title {
    text-align: center;
    color: #fff;
    margin: 0 0 50px;
    font-size: 58px;
    line-height: 70px;
}

.section-six__subtitle {
    background: #fff;
    display: inline-block;
    padding: 24px 68px;
    border-radius: 10px 10px 0 10px;
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 44px;
}

.section-six__advantages {
    color: #fff;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 48px;
}

.section-six__also {
    max-width: 520px;
    padding: 24px 92px;
    margin: 0 auto 44px;
    font-size: 32px;
    line-height: 40px;
    color: #fff;
    border: 1px dashed #fff;
    border-radius: 10px;
}

.brands {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.brands__item {
    background: #fff;
    width: 240px;
    height: 180px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-right: 16px;
}

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

.section-seven {
    margin: 60px 0 120px;
}

.section-seven__wrap {
    padding: 0 108px;
}

.section-seven__title {
    font-size: 58px;
    line-height: 70px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 60px;
}

.section-seven__subtitle {
    background: #F4800A;
    margin: 0 auto 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 52px;
    border-radius: 10px;
}

.section-seven__subtitle-icon {
    display: block;
    width: 50px;
    height: 43px;
    margin-right: 24px;
}

.section-seven__subtitle-text {
    font-size: 24px;
    font-weight: normal;
    color: #fff;
}

.consist__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.consist__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
}

.consist__image {
    display: block;
    width: 35px;
    height: 35px;
    margin-right: 24px;
}

.consist__text {
    font-size: 24px;
}

.consist {
    margin-bottom: 74px;
}

.tariffs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.tariffs__item {
    margin-right: 16px;
    border: 5px solid;
    width: 33.3333%;
}

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

.tariffs__header {
    padding: 24px 36px;
    font-size: 28px;
    line-height: 40px;
    position: relative;
}

.tariffs__cost {
    padding: 24px 36px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid;
}

.tariffs__duration {
    padding: 24px 36px;
    font-size: 22px;
    line-height: 32px;
}

.tariffs__cost-price {
    font-size: 42px;
    line-height: 50px;
    margin-right: 32px;
}

.tariffs__cost-text {
    font-size: 18px;
    line-height: 24px;
}

.tariffs__item--gray .tariffs__header {
    color: #5a5a5a;
    background: #F6F7F8;
}

.tariffs__item--gray {
    border-color: #F6F7F8;
}

.tariffs__item--gray  .tariffs__cost {
    border-color: #f6f7f8;
}

.tariffs__item--orange {
    border-color: #FE7D00;
}

.tariffs__item--orange .tariffs__header {
    background: #FE7D00;
    color: #fff;
}

.tariffs__item--orange .tariffs__cost {
    border-color: #FE7D00;
}

.tariffs__item--blue {
    border-color: #066593;
}

.tariffs__item--blue .tariffs__header {
    background: #066593;
    color: #fff;
}

.tariffs__header-image {
    display: block;
    width: 28px;
    height: 48px;
    position: absolute;
    top: 24px;
    right: 24px;
}

.tariffs__item--blue .tariffs__cost {
    border-color: #066593;
}
.section-seven__button {
    text-align: center;
}

.section-eight {
    position: relative;
    background: url('/front/landing/img/background-5.jpg');
    background-size: cover;
    background-position: 100% 100%;
    padding: 60px 0 120px;
}

.section-eight__title {
    text-align: center;
    color: #fff;
    margin: 0 0 56px;
    font-size: 58px;
    line-height: 70px;
}

.section-eight__flex {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.form__input-wrap {
    position: relative;
}
.form__label {
    display: block;
    margin-top: 32px;
    max-width: 380px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.form__warning {
    display: inline-block;
    color: #e2e2e2;
}

input[type="checkbox"] {
    display: inline-block;
}

.form__warning a {
    color: #FE7D00;
}

.form-done__wrap {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
    background: rgba(255,255,255,.95);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form {
    position: relative;
}

.form-done {
    display: none;
}

.form-done__flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
}

.form-done__button .button--tall {
    min-width: 200px;
}

.form-done__title {
    margin-bottom: 35px;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
}

.form-done__text {
    margin-bottom: 35px;
}

.section-eight__left {
    width: 50%;
    max-width: 380px;
    margin-right: 120px;
}

.section-eight__right.card {
    width: 50%;
}

.card {
    background: #fff;
    max-width: 480px;
    text-align: center;
    position: relative;
    padding: 24px;
    border-radius: 10px;
}

.card__image {
    display: block;
    width: 102px;
    height: 102px;
    margin: -34px auto 12px;
}

.card__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
    color: #060606;
}

.card__link {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: #060606;
}

.card__email {
    display: block;
    font-size: 18px;
    color: #060606;
    margin-bottom: 36px;
}

.card__question {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
}

.card__social {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 24px;
}

.card__social-link {
    display: block;
    margin-right: 16px;
}

.card__social-link:last-child {
    margin-right: 0;
}
.card__social-image {
    display: block;
    width: 37px;
}
.footer__up {
    position: absolute;
    top: 50%;
    margin-top: -32px;
    right: 0;
    cursor: pointer;
}

.footer__logo {
    display: block;
    margin: 32px auto;
}

.decision-tab {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
}

.decision-tab__left {
    width: 50%;
    margin-right: 48px;
}
.decision-tab__left .decision-tab__video,
.decision-tab__left .decision-tab__video.is-played {
    display: none;
}

.decision-tab__right {
    width: 50%;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decision-tab__item {
    margin-bottom: -1px;
    padding: 24px;
    border: 1px solid transparent;
    cursor: pointer;
}

.decision-tab__title {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    margin-bottom: 0;
}
.decision-tab__item.is-played {
    border-color: #FE7D00;
    cursor: default;
}

.decision-tab__item:hover {
    border-color: #FE7D00;
}
.decision-tab__video {
    display: none;
    width: 100%;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.decision-tab__video.is-played {
    display: block;
}
.decision-tab__item:last-child {
    margin-bottom: 0;
}
.decision-tab__text {
    display: none;
    margin-top: 12px;
}

.is-played .decision-tab__text {
    display: block;
}


.blue {
    color: #066593;
}
.orange {
    color: #FE7D00;
}

/* Menu */
.hamburger {
    width: 25px;
    height: 18px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer;
    display: none;
}
.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #4a4a4a;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .35s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 0px;
}
.hamburger span:nth-child(2),.hamburger span:nth-child(3) {
    top: 8px;
}
.hamburger span:nth-child(4) {
    top: 16px;
}
.hamburger.is-opened span:nth-child(1) {
    top: 16px;
    width: 0%;
    left: 50%;
}
.hamburger.is-opened span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.hamburger.is-opened span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.hamburger.is-opened span:nth-child(4) {
    top: 16px;
    width: 0%;
    left: 50%;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -1000px;
    z-index: 999;
    background: #fff;
    padding: 37px 48px 48px;
    -webkit-box-shadow: 0 8px 12px 0 rgba(0,0,0,0.20);
    -moz-box-shadow: 0 8px 12px 0 rgba(0,0,0,0.20);
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.20);
    height: 100%;
    width: 80%;
    max-width: 406px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    will-change: transform;
    overflow-y: scroll;
}
.mobile-menu.is-opened {
    right: 0;
}
.mobile-menu__title {
    font-size: 20px;
    font-weight: bold;
    margin-left: 12px;
}
.mobile-menu__header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}
.mobile-menu__item {
    margin-bottom: 16px;
}
/*Modal*/
.body--modal-open {
    overflow: hidden;
    padding-right: 14px;
}
.modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: table;
    background: rgba(0,0,0,0.55);
    margin: 0 auto;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal__wrapper {
    overflow: hidden;
    padding-left: 16px;
}
.modal__content {
    background-color: #fff;
    position: relative;
    width: 90%;
    max-width: 800px;
    min-width: 600px;
    margin: 0 auto;
    padding: 48px;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.modal__content--video {
    max-width: 1000px;
}
.modal__title {
    margin-bottom: 35px;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
}
.modal__warning {
    margin-top: 24px;
    line-height: 18px;
    font-size: 14px;
}
.modal__close {
    font-size: 32px;
    line-height: 17px;
    cursor: pointer;
    position: absolute;
    z-index: 9;
    top: 10px;
    right: 10px;
    color: #252525;
}
.modal__close:hover {
    color: #4a4a4a;
}
.modal__main {
    text-align: center;
    position: relative;
    overflow-y: auto;
    overflow-x: visible;
    padding: 0;
}
.modal__button-reload {
    width: 100%;
}
.modal__text {
    margin-bottom: 35px;
}
.modal__text--margin-bottom {
    margin-bottom: 0;
}
.modal__form__input-wrap {
    position: relative;
    margin-bottom: 24px;
}
.modal__input {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    border-color: rgba(6, 101, 147, 0.5) !important;
    color: #066593 !important;
}
.modal__warning a {
    color: #FE7D00;
}
input.modal__input::placeholder {
    color: #066593;
}
input.error {
    border-color: #da8080 !important;
}
label.error {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    font-size: 13px;
    line-height: 14px;
    color: #f91010;
    text-align: center;
    padding-top: 2px;
}
/*End of modal*/

/* Icons */
@font-face {
    font-family: 'common';
    src:  url('../fonts/common.eot?ypkleu');
    src:  url('../fonts/common.eot?ypkleu#iefix') format('embedded-opentype'),
    url('../fonts/common.ttf?ypkleu') format('truetype'),
    url('../fonts/common.woff?ypkleu') format('woff'),
    url('../fonts/common.svg?ypkleu#common') format('svg');
    font-weight: normal;
    font-style: normal;
}

.icon {
    font-family: 'common' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 8px;
}

.icon--times-circle:before {
    content: "\e97d";
}
.icon--times:before {
    content: "\e97e";
}
.icon--arrow-left:before {
    content: "\e97a";
}
.icon--arrow-right:before {
    content: "\e97b";
}
.icon--link:before {
    content: "\e97c";
}
.icon--angle-down:before {
    content: "\e900";
}
.icon--angle-left:before {
    content: "\e901";
}
.icon--angle-right:before {
    content: "\e902";
}
.icon--angle-up:before {
    content: "\e903";
}
.icon--at:before {
    content: "\e904";
}
.icon--award:before {
    content: "\e905";
}
.icon--badge:before {
    content: "\e906";
}
.icon--bars:before {
    content: "\e907";
}
.icon--bell:before {
    content: "\e908";
}
.icon--bolt:before {
    content: "\e909";
}
.icon--book-open:before {
    content: "\e90a";
}
.icon--bookmark:before {
    content: "\e90b";
}
.icon--bullhorn:before {
    content: "\e90c";
}
.icon--bullseye-arrow:before {
    content: "\e90d";
}
.icon--bullseye-pointer:before {
    content: "\e90e";
}
.icon--bullseye:before {
    content: "\e90f";
}
.icon--camera-alt:before {
    content: "\e910";
}
.icon--camera:before {
    content: "\e911";
}
.icon--capsules:before {
    content: "\e912";
}
.icon--caret-down:before {
    content: "\e913";
}
.icon--caret-left:before {
    content: "\e914";
}
.icon--caret-right:before {
    content: "\e915";
}
.icon--caret-up:before {
    content: "\e916";
}
.icon--cauldron:before {
    content: "\e917";
}
.icon--certificate:before {
    content: "\e918";
}
.icon--check-circle:before {
    content: "\e919";
}
.icon--check-square:before {
    content: "\e91a";
}
.icon--check:before {
    content: "\e91b";
}
.icon--chevron-circle-down:before {
    content: "\e91c";
}
.icon--chevron-circle-left:before {
    content: "\e91d";
}
.icon--chevron-circle-right:before {
    content: "\e91e";
}
.icon--chevron-circle-up:before {
    content: "\e91f";
}
.icon--chevron-down:before {
    content: "\e920";
}
.icon--chevron-left:before {
    content: "\e921";
}
.icon--chevron-right:before {
    content: "\e922";
}
.icon--chevron-up:before {
    content: "\e923";
}
.icon--circle:before {
    content: "\e924";
}
.icon--clipboard-check:before {
    content: "\e925";
}
.icon--clipboard:before {
    content: "\e926";
}
.icon--clock:before {
    content: "\e927";
}
.icon--cog:before {
    content: "\e928";
}
.icon--comment-alt-check:before {
    content: "\e929";
}
.icon--comment-alt-exclamation:before {
    content: "\e92a";
}
.icon--comment-alt-smile:before {
    content: "\e92b";
}
.icon--comment-alt:before {
    content: "\e92c";
}
.icon--comment-check:before {
    content: "\e92d";
}
.icon--comment-exclamation:before {
    content: "\e92e";
}
.icon--comment-smile:before {
    content: "\e92f";
}
.icon--comment:before {
    content: "\e930";
}
.icon--comments-alt:before {
    content: "\e931";
}
.icon--comments:before {
    content: "\e932";
}
.icon--credit-card-front:before {
    content: "\e933";
}
.icon--credit-card:before {
    content: "\e934";
}
.icon--ellipsis-h-alt:before {
    content: "\e935";
}
.icon--ellipsis-h:before {
    content: "\e936";
}
.icon--ellipsis-v-alt:before {
    content: "\e937";
}
.icon--ellipsis-v:before {
    content: "\e938";
}
.icon--envelope:before {
    content: "\e939";
}
.icon--exclamation-circle:before {
    content: "\e93a";
}
.icon--exclamation-square:before {
    content: "\e93b";
}
.icon--exclamation-triangle:before {
    content: "\e93c";
}
.icon--exclamation:before {
    content: "\e93d";
}
.icon--file-certificate:before {
    content: "\e93e";
}
.icon--filter:before {
    content: "\e93f";
}
.icon--gem:before {
    content: "\e940";
}
.icon--gift-card:before {
    content: "\e941";
}
.icon--gift:before {
    content: "\e942";
}
.icon--globe-asia:before {
    content: "\e943";
}
.icon--globe-stand:before {
    content: "\e944";
}
.icon--globe:before {
    content: "\e945";
}
.icon--graduation-cap:before {
    content: "\e946";
}
.icon--hand-holding-heart:before {
    content: "\e947";
}
.icon--hands-heart:before {
    content: "\e948";
}
.icon--hands-helping:before {
    content: "\e949";
}
.icon--handshake-alt:before {
    content: "\e94a";
}
.icon--heart-circle:before {
    content: "\e94b";
}
.icon--heart:before {
    content: "\e94c";
}
.icon--info-circle:before {
    content: "\e94d";
}
.icon--info-square:before {
    content: "\e94e";
}
.icon--info:before {
    content: "\e94f";
}
.icon--lightbulb-exclamation:before {
    content: "\e950";
}
.icon--lightbulb-on:before {
    content: "\e951";
}
.icon--lightbulb:before {
    content: "\e952";
}
.icon--location-circle:before {
    content: "\e953";
}
.icon--location:before {
    content: "\e954";
}
.icon--map-marker-alt:before {
    content: "\e955";
}
.icon--map-marker:before {
    content: "\e956";
}
.icon--map-pin:before {
    content: "\e957";
}
.icon--medal:before {
    content: "\e958";
}
.icon--medkit:before {
    content: "\e959";
}
.icon--microscope:before {
    content: "\e95a";
}
.icon--pencil:before {
    content: "\e95b";
}
.icon--percent:before {
    content: "\e95c";
}
.icon--percentage:before {
    content: "\e95d";
}
.icon--phone:before {
    content: "\e95e";
}
.icon--question-circle:before {
    content: "\e95f";
}
.icon--question-square:before {
    content: "\e960";
}
.icon--question:before {
    content: "\e961";
}
.icon--quote-left:before {
    content: "\e962";
}
.icon--quote-right:before {
    content: "\e963";
}
.icon--ribbon:before {
    content: "\e964";
}
.icon--rocket:before {
    content: "\e965";
}
.icon--search:before {
    content: "\e966";
}
.icon--share-alt-square:before {
    content: "\e967";
}
.icon--share-alt:before {
    content: "\e968";
}
.icon--share:before {
    content: "\e969";
}
.icon--facebook-f:before {
    content: "\e96a";
}
.icon--facebook-square:before {
    content: "\e96b";
}
.icon--facebook:before {
    content: "\e96c";
}
.icon--instagram:before {
    content: "\e96d";
}
.icon--odnoklassniki-square:before {
    content: "\e96e";
}
.icon--skype:before {
    content: "\e96f";
}
.icon--telegram-plane:before {
    content: "\e970";
}
.icon--telegram:before {
    content: "\e971";
}
.icon--twitter-square:before {
    content: "\e972";
}
.icon--twitter:before {
    content: "\e973";
}
.icon--viber:before {
    content: "\e974";
}
.icon--vk:before {
    content: "\e975";
}
.icon--whatsapp-square:before {
    content: "\e976";
}
.icon--whatsapp:before {
    content: "\e977";
}
.icon--youtube-square:before {
    content: "\e978";
}
.icon--youtube:before {
    content: "\e979";
}
/* End icons */

/*Adaptive*/
@media screen and (max-width: 1024px) {
    .menu {
        margin: 0 24px;
    }
    .menu__item {
        margin-right: 12px;
    }
    .section-one__man {
        right: -120px;
    }
    .ovals {
        margin: initial;
    }
    .decision {
        flex-wrap: wrap;
    }
    .decision__item {
        width: calc(50% - 16px);
        margin-bottom: 32px;
    }
    .section-three {
        margin-bottom: 90px;
    }
    .decision__item:nth-child(2n) {
        margin-right: 0;
    }
    .tariffs__header {
        font-size: 22px;
        padding: 24px;
    }
    .tariffs__cost {
        padding: 24px;
    }
    .tariffs__duration {
        padding: 24px;
        font-size: 16px;
    }
    .tariffs__cost-price {
        margin-right: 24px;
        font-size: 32px;
    }
    .tables__header {
        height: 130px;
    }
    .tariffs__cost-text {
        font-size: 16px;
    }
    .section-seven {
        margin-bottom: 90px;
    }
    .tables__cell {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .bubbles {
        flex-wrap: wrap;
    }

    .bubbles__item {
        width: calc(50% - 24px);
        margin-bottom: 60px;
        margin-right: 48px;
    }

    .bubbles__item:nth-child(2n) {
        margin-right: 0;
    }
    .bubbles {
        flex-wrap: wrap;
        height: auto;
    }

    .bubbles__item {
        width: calc(50% - 24px);
        margin-bottom: 60px;
        margin-right: 48px;
    }

    .bubbles__item:nth-child(2n) {
        margin-right: 0;
    }
    .bubbles__number--1 {
        left: 143px;
    }
    .bubbles__text--1 {
        width: 212px;
    }

    .bubbles__text--2 {
        width: 256px;
    }

    .bubbles__number--2 {
        left: 149px;
    }

    .bubbles__text--3 {
        width: 372px;
    }

    .bubbles__number--3 {
        left: 202px;
    }

    .bubbles__text--4 {
        width: 256px;
    }

    .bubbles__number--4 {
        left: 159px;
    }
    .section-four__title {
        margin-bottom: 60px;
    }
    .tables__header {
        font-size: 16px;
        line-height: 20px;
        font-weight: normal;
    }
    .tables__item--gray .tables__header {
        font-weight: bold;
    }
    .decision-tab__left {
        width: 40%;
    }

    .decision-tab__right {
        width: 60%;
    }
}
@media screen and (max-width: 960px) {
    .sign-in {
        margin-left: auto;
        margin-right: 16px;
    }
    .hamburger {
        display: block;
    }
    .menu {
        display: none;
    }
    .section-one__man {
        display: none;
    }
    .decision-tab__left {
        width: 100%;
        margin-right: 0;
    }

    .decision-tab {
        flex-wrap: wrap;
    }
    .decision-tab__right {
        width: 100%;
        display: none;
    }
    .decision-tab__text {
        margin-bottom: 24px;
    }
    .decision-tab {
        margin-top: 30px;
    }
    .decision-tab__left .decision-tab__video.is-played {
        display: block;
    }
}
@media screen and (max-width: 480px) {
    .sign-in {
        margin-left: auto;
        margin-right: 16px;
    }
    .hamburger {
        display: block;
    }
    .menu {
        display: none;
    }
    .section-one__man {
        display: none;
    }
    .button--tall {
        min-width: 330px;
    }
    .section-one__man {
        display: none;
    }

    .section-one__title {
        margin-bottom: 30px;
    }

    .section-one {
        padding: 16px 0 60px;
    }

    .section-one__subtitle {
        margin-bottom: 30px;
        padding: 16px;
    }
    .section-two__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .section-two__warning {
        flex-wrap: wrap;
        text-align: center;
        padding: 16px;
    }

    .section-two__icon {
        margin: 0 auto 12px;
    }
    .ovals {
        flex-wrap: wrap;
        height: auto;
    }

    .ovals__item {
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }

    .ovals__image {
        width: 100%;
        height: auto;
    }

    .ovals__text--1 {
        max-width: 50%;
        left: -17px;
        top: 110px;
    }

    .ovals__text--2 {
        max-width: 50%;
        left: 3px;
        top: 175px;
    }

    .ovals__text--3 {
        max-width: 50%;
        left: -17px;
        top: 119px;
    }

    .ovals__text--4 {
        max-width: 50%;
        left: 0px;
        top: 154px;
    }
    .section-two {
        padding-bottom: 60px;
    }
    .section-three__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .section-three__subttile {
        padding: 16px;
        flex-wrap: wrap;
        text-align: center;
        margin-bottom: 30px;
    }

    .section-three__subttile-icon {
        margin: 0 auto 12px;
    }

    .section-three__subttile-text {
        font-size: 16px;
        line-height: 24px;
    }
    .decision {
        flex-wrap: wrap;
    }

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

    .section-three {
        margin-bottom: 60px;
    }
    .decision__text {
        padding: 16px;
        font-size: 16px;
        line-height: 24px;
    }

    .decision__number {
        font-size: 64px;
        line-height: 64px;
    }

    .decision__header {
        padding: 16px 32px 16px 16px;
    }
    .section-four__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .sign-in {
        margin-left: auto;
        margin-right: 16px;
    }

    .bubbles {
        flex-wrap: wrap;
        height: auto;
        margin-top: 60px;
        margin-bottom: 0;
    }

    .bubbles__item {
        margin-top: 0 !important;
        margin-bottom: 48px;
        width: 100%;
    }
    .section-two {
        background-position: 50% 50%;
    }

    .section-four__subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    .section-five__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .section-two {
        background-position: 50% 50%;
    }

    .section-five__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .section-six__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .section-six__subtitle {
        padding: 16px;
        display: block;
        text-align: center;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .section-six__advantages {
        font-size: 16px;
        line-height: 32px;
        margin-bottom: 36px;
    }

    .section-six__also {padding: 16px;text-align: center;font-size: 18px;}

    .brands {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .brands__item {
        width: calc(50% - 8px);
        margin-right: 16px;
        margin-bottom: 16px;
        height: 120px;
        padding: 16px;
    }

    .brands__item:nth-child(2n) {
        margin-right: 0;
    }

    .brands__image {
        display: block;
        width: 100%;
    }
    .section-six {
        padding-bottom: 60px;
    }
    .section-seven__wrap {
        padding: 0;
    }

    .section-seven__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .section-seven__subtitle {
        padding: 16px;
        flex-wrap: wrap;
        text-align: center;
        margin-bottom: 60px;
    }

    .section-seven__subtitle-icon {
        margin: 0 auto 12px;
    }

    .section-seven__subtitle-text {
        font-size: 16px;
        line-height: 24px;
    }

    .consist__title {
        text-align: center;
        font-size: 18px;
    }

    .consist__text {
        font-size: 16px;
    }
    .tariffs {
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .tariffs__item {
        margin-right: 0;
        margin-bottom: 24px;
        width: 100%;
        text-align: center;
    }
    .section-seven {
        margin: 60px 0;
    }
    .consist {
        margin-bottom: 60px;
    }
    .section-eight__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .section-eight__flex {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .section-eight__right.card {
        width: 100%;
        margin-bottom: 60px;
    }

    input[type="text"], input[type="tel"], input[type="email"] {
        min-width: 100px !important;
        width: 100% !important;
    }

    .form__input-wrap {
        width: 100%;
    }

    .section-eight__left {
        width: 100%;
        margin-right: 0;
    }
    .section-eight {
        padding-bottom: 60px;
    }
    .section-eight {
        padding-bottom: 60px;
    }

    .modal__content {
        padding: 48px 16px;
        min-width: initial;
        max-width: initial;
        width: 100%;
    }
    .modal__text {
        margin-bottom: 0;
    }
    .modal__wrapper {
        padding-left: 0;
    }
    .modal__button-reload {
        margin-top: 30px;
    }
    .tables__item--gray {
        width: 50%;
    }
    .tables__item-wrap {
        width: 50%;
    }
    .decision-tab__left {
        width: 100%;
        margin-right: 0;
    }

    .decision-tab {
        flex-wrap: wrap;
    }
    .decision-tab__right {
        width: 100%;
        display: none;
    }
    .decision-tab__text {
        margin-bottom: 24px;
    }
    .decision-tab {
        margin-top: 30px;
    }
    .decision-tab__left .decision-tab__video.is-played {
        display: block;
    }
    .footer__logo {
        max-width: 70%;
        margin: 32px 16px;
    }
}