/* font */
@font-face {
    font-family: "GolosTextWebRegular";
    font-weight: normal;
    font-style: normal;

    src: url("/themes/simple1/fonts/golos/Golos_Text_Regular.eot");
    src: url("/themes/simple1/fonts/golos/Golos_Text_Regular.eot?#iefix") format("embedded-opentype"),
        url("/themes/simple1/fonts/golos/Golos_Text_Regular.woff2") format("woff2"),
        url("/themes/simple1/fonts/golos/Golos_Text_Regular.woff") format("woff"),
        url("/themes/simple1/fonts/golos/Golos_Text_Regular.ttf") format("truetype");
}
@font-face {
    font-family: "GolosTextWebMedium";
    font-weight: normal;
    font-style: normal;

    src: url("/themes/simple1/fonts/golos/Golos_Text_Medium.eot");
    src: url("/themes/simple1/fonts/golos/Golos_Text_Medium.eot?#iefix") format("embedded-opentype"),
        url("/themes/simple1/fonts/golos/Golos_Text_Medium.woff2") format("woff2"),
        url("/themes/simple1/fonts/golos/Golos_Text_Medium.woff") format("woff"),
        url("/themes/simple1/fonts/golos/Golos_Text_Medium.ttf") format("truetype");
}
@font-face {
    font-family: "GolosTextWebDemiBold";
    font-weight: normal;
    font-style: normal;

    src: url("/themes/simple1/fonts/golos/Golos_Text_DemiBold.eot");
    src: url("/themes/simple1/fonts/golos/Golos_Text_DemiBold.eot?#iefix") format("embedded-opentype"),
        url("/themes/simple1/fonts/golos/Golos_Text_DemiBold.woff2") format("woff2"),
        url("/themes/simple1/fonts/golos/Golos_Text_DemiBold.woff") format("woff"),
        url("/themes/simple1/fonts/golos/Golos_Text_DemiBold.ttf") format("truetype");
}
@font-face {
    font-family: "GolosTextWebBold";
    font-weight: normal;
    font-style: normal;

    src: url("/themes/simple1/fonts/golos/Golos_Text_Bold.eot");
    src: url("/themes/simple1/fonts/golos/Golos_Text_Bold.eot?#iefix") format("embedded-opentype"),
        url("/themes/simple1/fonts/golos/Golos_Text_Bold.woff2") format("woff2"),
        url("/themes/simple1/fonts/golos/Golos_Text_Bold.woff") format("woff"),
        url("/themes/simple1/fonts/golos/Golos_Text_Bold.ttf") format("truetype");
}
/*
"GolosTextWebRegular", sans-serif;
"GolosTextWebMedium", sans-serif;
"GolosTextWebDemiBold", sans-serif;
"GolosTextWebBold", sans-serif;
*/

/*

/* type */
body {
    font-family: "GolosTextWebRegular", sans-serif;
    font-weight: normal;
    line-height: 23px;
    color: #263238;
}
h1 {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    margin: 40px 0 24px 0;
    text-align: left;
    color: #263238;
}
@media(min-width: 768px) {
    h1 {
        font-size: 48px;
        line-height: 64px;
    }
}
a {
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: #5d9123;
}
a:hover {
    text-decoration: underline;
    color: #5d9123;
}
strong {
    font-family: "GolosTextWebBold", sans-serif;
}
textarea {
    resize: vertical;
}
ul {
    margin-bottom: 10px;
    padding-left: 20px;
}
ul:last-child {
    margin-bottom: 0;
}
.ul-mb-24 {
    margin-bottom: 24px;
}
.ul-mb-24:last-child {
    margin-bottom: 0;
}
.li-mb-8 li {
    margin-bottom: 8px;
}
.li-mb-8 li:last-child {
    margin-bottom: 0;
}
.text-accent {
    color: #6dab29;
}
.text-muted {
    color: #828282;
}
p:last-child {
    margin-bottom: 0;
}
.container {
    width: 1230px;
    max-width: 100%;
}
#content p {
    font-size: initial !important;
}

/* utils */
.animate__animated {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
}
.flex-justify {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex-v-end {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -ms-flex-align: end;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.flex-v-center {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.mb-16 {
    margin-bottom: 16px;
}
.mt-30 {
    margin-top: 30px;
}
.mb-24 {
    margin-bottom: 24px;
}
/* b-grid */
.b-grid {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.b-grid__item {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.b-grid__inner {
    height: 100%;
}
/* b-grid--card */
.b-grid {
    margin-bottom: -20px;
}
.b-grid .b-grid__item {
    padding-bottom: 20px;
}
@media(min-width: 768px) {
    .b-grid {
        margin-left: -20px;
    }
    .b-grid__item {
        padding-left: 20px;
    }
    .b-grid__item--sm-2 {
        -webkit-flex: 0 1 50%;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
        width: 50%;
        min-width: 50%;
        max-width: 50%;
    }
}
@media(min-width: 992px) {
    .b-grid__item--md-2 {
        -webkit-flex: 0 1 50%;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
        width: 50%;
        min-width: 50%;
        max-width: 50%;
    }
    .b-grid__item--md-3 {
        -webkit-flex: 0 1 33.333333%;
        -ms-flex: 0 1 33.333333%;
        flex: 0 1 33.333333%;
        width: 33.333333%;
        min-width: 33.333333%;
        max-width: 33.333333%;
    }
}
/* b-card */
.b-card {
    overflow: hidden;
    padding: 20px;
    border-radius: 4px;
    background: #fff;
    height: 100%;
}
@media (min-width: 1200px) {
    .b-card {
        padding: 48px 60px;
    }
}
.b-list-card {
    margin-bottom: -20px;
}
.b-list-card > .b-card {
    margin-bottom: 20px;
}
@media (min-width: 1200px) {
    .b-list-card--lg > .b-card {
        margin-bottom: 60px;
    }
}
.b-card__item:not(:last-child) {
    margin-bottom: 20px;
}
@media(min-width: 1200px) {
    .b-card__item:not(:last-child) {
        margin-bottom: 32px;
    }
}

/* b-collapse */
.b-collapse {}
.b-collapse--fill {
    margin-right: -20px;
    margin-left: -20px;
}
@media(min-width: 1200px) {
    .b-collapse--fill {
        margin-right: -60px;
        margin-left: -60px;
    }
    .b-collapse--o-pic {
        margin-top: 32px;
    }
}
.b-collapse__item {
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid #e8ecf2;
}
.b-collapse__item:last-child {
    border-bottom: 1px solid #e8ecf2;
}
.b-collapse--fill .b-collapse__item {
    padding-right: 20px;
    padding-left: 20px;
}
@media(min-width: 1200px) {
    .b-collapse--fill .b-collapse__item {
        padding-right: 60px;
        padding-left: 60px;
    }
}
.b-collapse__trigger {
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal !important;
    line-height: 1.15 !important;
    color: #263238 !important;
    text-decoration: none !important;
    padding-bottom: 16px;
    -webkit-transition: padding-bottom .15s linear;
    transition: padding-bottom .15s linear;
}
.b-collapse__trigger.collapsed {
    padding-bottom: 0;
}
.b-collapse__trigger > span {
    color: #263238;
}
.b-collapse__arr {
    margin-right: 10px;
    -webkit-transition: transform .15s linear;
    transition: transform .15s linear;
}
.b-collapse__trigger.collapsed .b-collapse__arr {
    -webkit-transform: scale(1) rotate(-90deg);
    transform: scale(1) rotate(-90deg);
}
.head-h4 {}
.b-collapse__target {
    padding-left: 35px;
}
.b-collapse ul,
.b-collapse ol {
    padding-left: 19px;
}

/* card-table */
.card-table {
    overflow: hidden;
    padding: 20px 0;
    border-radius: 4px;
    background: #fff;
}
.card-table .table {
    margin-bottom: 0;
}
.card-table .table + .table {
    margin-top: 30px;
}
.card-table th:first-child,
.card-table td:first-child {
    padding-left: 15px;
}
.card-table th:last-child,
.card-table td:last-child {
    padding-right: 15px;
    text-align: right;
}
@media(max-width: 767px) {
    .card-table .text-nowrap {
        white-space: normal !important;
    }
    .card-table .table {
        display: block;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;

        -webkit-overflow-scrolling: touch;
    }
    .card-table th,
    .card-table td {
        font-size: 14px;
    }
    .card-table .td-inner {
        min-width: 475px;
    }
}
@media(min-width: 768px) {
    .card-table th:first-child,
    .card-table td:first-child {
        padding-left: 20px;
    }
    .card-table th:last-child,
    .card-table td:last-child {
        padding-right: 20px;
    }
}
@media (min-width: 1200px) {
    .card-table {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
/* breadcrumb */
.breadcrumb {
    margin-bottom: 0;
    background: none;
}
@media(min-width: 992px) {
    .breadcrumb {
        padding-right: 0;
        padding-left: 0;
    }
}
.breadcrumb a,
.breadcrumb span {
    font-size: 14px;
}
.breadcrumb a {
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    color: #263238;
}
.breadcrumb a:hover {
    text-decoration: none !important;
    border-bottom: 1px dashed #263238;
}
.breadcrumb span {
    color: #828282;
}
.breadcrumb > li + li:before {
    font-size: 12px;
    position: relative;
    top: -2px;
    display: inline-block;
    width: 18px;
    color: #263238;
}
/* pagination */
.pagination > li > a,
.pagination > li > span {
    text-align: center;
    color: #263238;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    border-color: #6dab29;
    background-color: #6dab29;
}
.pagination > .disabled > a,
.pagination > li > a,
.pagination > li > span {
    border-color: rgba(0, 0, 0, .1);
}
/* link */
.grey-link,
.grey-link:hover {
    font-size: initial;
    color: #828282;
}
.link-line,
.terms-link,
.service-block-link {
    font-family: "GolosTextWebMedium", sans-serif;
    position: static;
    display: inline-block;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    text-decoration: none !important;
    color: #6dab29 !important;
    border-bottom: 1px dashed rgba(48, 95, 70, .4);
}
.link-line:hover,
.terms-link:hover,
.service-block-link:hover {
    border-bottom-color: #305f46;
}
/* title */
.title,
.head-h2 {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 28px;
    line-height: 1.2;
    text-align: left;
    color: #263238;
}
@media(min-width: 768px) {
    .title,
    .head-h2 {
        font-size: 34px;
        line-height: 50px;
    }
}
.b-grid__item .head-h2 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 10px 0;
}
.head-h3 {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 16px 0;
}
@media(min-width: 768px) {
    .head-h3 {
        font-size: 24px;
        line-height: 32px;
    }
}
.head-h4 {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}
@media(min-width: 768px) {
    .head-h4 {
        font-size: 20px;
        line-height: 32px;
    }
}
.sub-head {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}
/* rates-sub-title */
#content .rates-sub-title {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 16px;
    font-weight: normal;
    margin: -15px 0 30px;
    text-align: left;
    color: #263238;
}
#content .rates-note {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 14px;
    margin-top: 20px;
    color: #263238;
}
/* main-page */
/* s-section */
.s-section {
    margin-bottom: 40px;
}
@media(min-width: 1200px) {
    .s-section {
        margin-bottom: 60px;
    }
}
.s-section--pop {
    margin-bottom: 0;
}
.s-section__title {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 32px;
    margin: 0 0 24px 0;
    color: #263238;
}
/* button */
.b-btn {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 1;
    position: relative;
    display: inline-block;
    overflow: visible;
    height: auto;
    margin: 0;
    padding: 21px 44px;
    user-select: none;
    -webkit-transition-duration: .1s;
    transition-duration: .1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    text-align: center;
    text-decoration: none;
    letter-spacing: .0025em;
    text-transform: none;
    border: 0;
    border-radius: 4px;
    box-shadow: none !important;

    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.b-btn:before {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    content: "";
    -webkit-transition-duration: .1s;
    transition-duration: .1s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    opacity: 0;
    border: 1px solid white;
}
.b-btn:active,
.b-btn:focus,
.b-btn:hover {
    text-decoration: none;
    outline: none !important;
}
.b-btn:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}
.b-btn:focus:before {
    opacity: 1;
}
.b-btn:not(:disabled) {
    cursor: pointer;
}
.b-btn::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
.b-btn--outline {
    border-width: 2px;
    border-style: solid;
    background: transparent;
}
.b-btn--outline-c-1 {
    color: #6dab29;
    border-color: #6dab29;
}
.btn {
    font-family: "GolosTextWebMedium", sans-serif;
    font-weight: normal;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    letter-spacing: .0025em;
    border-radius: 4px;
}
.btn-success {
    background: #6dab29;
}
.btn-success:hover {
    background: #305f46;
}
.btn-big {
    font-size: 22px;
    padding-right: 30px;
    padding-left: 30px;
}
@media(min-width: 768px) {
    .btn-big {
        padding-right: 50px;
        padding-left: 50px;
    }
}
#content [href="#connect-modal"] {
    margin-top: 30px;
}
/* b-badge */
.b-badge {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 10px !important;
    line-height: 1;
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 14px;
    text-align: center;
    border-radius: 20px;
}
@media (min-width: 1200px) {
    .b-badge {
        font-size: 12px!important;
    }
}
/* bg */
.bg-net .b-badge,
.bg-net .b-btn {
    color: #fff !important;
    background: #6dab29;
}
.bg-tv .b-badge,
.bg-tv .b-btn {
    color: #fff !important;
    background: #f4822a;
}
.bg-net-tv .b-badge,
.bg-net-tv .b-btn {
    color: #fff !important;
    background: #2ca598;
}
.bg-pic .b-badge,
.bg-pic .b-btn {
    color: #fff !important;
    background: #3293E8;
}
.bg-any .b-badge,
.bg-any .b-btn {
    color: #1b2b3a !important;
    background: #fff;
}
.b-btn .arr-next {
    width: 6px;
    height: 17px;
    margin-left: 8px;
    vertical-align: middle;
}
.bg-any .arr-next path {
    stroke: #1b2b3a;
}
@media (min-width: 1200px) {
    .b-btn .arr-next {
        width: 10px;
        height: 13px;
        margin-left: 14px;
    }
}
/* .u-line */
.b-line {
    position: relative;
    display: inline-block;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    text-decoration: none !important;
}
.b-line--dash {
    border-bottom-style: dashed;
}
.b-line::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    margin: auto;
    content: "";
    border-bottom-width: 1px;
}
.b-line--solid::after {
    border-bottom-style: solid;
}
.b-line--dashed::after {
    border-bottom-style: dashed;
}
.b-line--color-1::after {
    border-bottom-color: #263238;
}
.b-line--color-2::after {
    border-bottom-color: #fff;
}
.b-line--color-3::after {
    border-bottom-color: #5d9123;
}
.b-line--color-4::after {
    border-bottom-color: #263238;
}
.b-line--color-4:hover::after {
    border-bottom-color: #5d9123;
}
.b-line--opacity::after {
    opacity: .4;
}
.b-line:hover::after {
    opacity: 1;
}
/* header-top */
.header-top {
    margin: 0;
    background: #fff;
}
.header-bottom {
    text-align: left;
}
.header-top__line--top {
    padding-top: 8px;
    padding-bottom: 8px;
    background: #263238;
}
.header-contact__item:not(:last-child) {
    margin-right: 32px;
}
.header-contact__title {
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
    margin: 0 12px 0 0;
    vertical-align: middle;
    color: #fff;
}
.header-contact__link {
    font-size: 19px;
    line-height: 24px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}
.header-contact__link:hover {
    color: #fff;
}
.navbar-collapse .header-contact__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
}
.navbar-collapse .header-contact__title {
    display: block;
    margin-right: 0;
    opacity: .7;
}
.navbar-collapse .header-contact__link {
    font-size: 16px;
    line-height: 28px;
}
.header-top__info {
    display: none;
}
.header-top__logo {
    width: 100px;
}
.header-top__logo a {
    display: inline-block;
}
.header-top__logo img {
    width: auto;
    max-width: 100%;
    height: auto;
}
@media(min-width: 992px) {
    .header-top__logo {
        width: auto;
        margin-right: 46px;
    }
    .header-top__line--bottom {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .header-top__info {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .header-top__bar svg {
        margin-right: 8px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .header-top__logo {
        margin-bottom: 10px;
    }
}
@media(min-width: 1200px) {
    .header-info__bar {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}
.header-top__bar {
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-top__bar li,
.header-top__bar a,
.header-top__bar svg {
    display: inline-block;
    vertical-align: middle;
}
.header-top__bar li {
    position: relative;
}
.header-top__bar li:not(:last-child) {
    margin-right: 20px;
}
@media(min-width: 992px) {
    .header-top__bar li:not(:last-child) {
        margin-right: 24px;
    }
}
.header-top__bar a {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #263238;
}
.header-top__bar a:hover {
    text-decoration: none;
}
.header-top__bar--left a:hover {
    color: #5d9123;
}
.header-top__bar .sub-menu {
    position: absolute;
    top: 100%;
    left: -32px;
    white-space: nowrap;
    z-index: 999;
    display: none;
    padding: 24px 0;
    border-radius: 0 0 4px 4px;
    background: #fff;
}
.navbar-collapse .header-top__bar {
    padding: 16px 28px 24px;
    background: #fff;
}
.navbar-collapse .header-top__bar li {
    display: block;
    text-align: left;
}
.navbar-collapse .header-top__bar li:not(:last-child) {
    margin-bottom: 12px;
}
.navbar-collapse .navbar-nav {
    margin: 0;
}
.navbar-collapse .header-top__contact {
    padding: 16px 28px 24px;
    background: #1b2b3a;
}
.navbar-collapse .header-top__bar .sub-menu {
    position: static;
    padding: 0;
}
.header-top__bar .sub-menu li {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
    padding: 0 32px;
    list-style-type: none;
}
.navbar-collapse .header-top__bar .sub-menu li {
    margin-bottom: 8px;
    padding-left: 8px;
    padding-right: 0;
}
.header-top__bar .sub-menu li:last-child {
    margin-bottom: 0;
}
.header-top__bar .sub-menu a {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    color: #1b2b3a;
}
.header-top__bar .sub-menu a:hover {
    text-decoration: underline;
    color: #5d9123;
}
.header-top__bar > li:hover > a {
    color: #5d9123;
}
.header-top__bar > li:hover > a::after {
    border-bottom-color: #5d9123;
}
.header-top__bar > li:hover .sub-menu {
    display: block;
}

/* mobile header */
@media (max-width: 991px) {
    .navbar-header {
        position: relative;
        z-index: 1040;
        display: -webkit-flex;
        display: flex;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        padding: 0;
    }
    .navbar-header::after,
    .navbar-header::before {
        display: none;
    }
    .navbar .navbar-collapse {
        position: fixed;
        z-index: 16;
        top: 56px;
        right: 0;
        bottom: 0;
        left: 0;
        margin-right: -30px;
        margin-left: -30px;
        padding: 0 15px !important;
        box-shadow: 0 0 8px rgba(0, 0, 0, .24);
    }
    .navbar-collapse__inner {
        overflow-y: auto;

        -webkit-overflow-scrolling: touch;
    }
}
.navbar-toggle {
    float: none;
    width: 56px;
    height: 56px;
    margin: 0 0 0 -15px;
    padding: 20px 18px;
    border-color: #6dab29;
    border-radius: 0;
    background: #6dab29;
}
.navbar-toggle .icon-bar {
    width: 18px;
    border-radius: 0;
    background: #fff;
}
.navbar-toggle:focus,
.navbar-toggle:hover {
    background: #6dab29;
}
/* menu */
#sections_right {
    background: #6dab29;
}
@media(max-width: 991px) {
    .navbar {
        position: relative;
    }
    .navbar-nav {
        padding: 16px 32px;
    }
    .navbar-nav > li:not(:last-child) {
        margin-bottom: 12px;
    }
    .navbar-nav > li {
        text-align: left;
    }
    .navbar-nav > li > a {
        font-size: 14px;
        line-height: 20px;
        display: inline-block;
        padding: 0;
    }
}
@media (min-width: 992px) {
    .navbar-nav {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: 100%;
        padding-top: 22px;
    }
    .navbar-nav::before,
    .navbar-nav::after {
        display: none;
    }
    .navbar-nav > li {
        float: none;
        padding-top: 22px;
        padding-bottom: 22px;
    }
    .navbar-nav > li {
        float: none;
        padding-top: 0;
        padding-bottom: 22px;
    }
}
.navbar-nav .is-sub-menu > a::after {
    display: inline-block;
    width: 11px;
    height: 9px;
    margin-left: 18px;
    content: "";
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    background-color: transparent;
    background-image: url("/themes/simple1/img/main-page/arr-vert.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
@media(max-width: 991px) {
    .navbar-nav .is-sub-menu > a::after {
        -webkit-transform: scale(1) rotate(-90deg);
        transform: scale(1) rotate(-90deg);
    }
}
@media (min-width: 992px) {
    .header-bottom {
        background: #6dab29;
    }
    #bs-example-navbar-collapse {
        float: none;
        margin-left: 0;
    }
    .navbar-default .navbar-nav > li > a,
    .navbar-default .navbar-nav > li > span {
        padding: 0;
    }
    .navbar-nav .is-sub-menu > a::after {
        width: 12px;
        height: 8px;
        margin-left: 8px;
    }
    .navbar-nav > li:hover > a::after {
        -webkit-transform: scale(1) rotate(180deg);
        transform: scale(1) rotate(180deg);
    }
    .navbar-nav > li > a::before {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 1px;
        content: "";
        background: transparent;
    }
    .navbar-nav > li:hover > a,
    .navbar-nav > li > a:hover {
        text-decoration: none !important;
    }
    .navbar-nav > li:hover > a::before {
        background: #fff;
    }
    .sub-menu-item__title {
        display: none !important;
    }
    .navbar-nav .is-sub-menu > a {
        cursor: default;
        pointer-events: none;
    }
    .navbar-default .navbar-nav > li:hover ul {
        display: block;
    }
}
@media (min-width: 1200px) {
    .header-bottom .container {
        max-width: 1230px;
    }
}
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > span {
    font-family: "GolosTextWebMedium", sans-serif;
}
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > li:hover > a,
.navbar-default .navbar-nav > li:hover > span,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > span:hover {
    text-decoration: none !important;
    color: #fff;
    background-color: transparent;
}
.navbar-nav > li ul {
    left: -32px;
    padding: 24px 0;
    border-radius: 0 0 4px 4px;
    background: #fff;
    box-shadow: none;
}
.navbar-nav > li ul li {
    margin-bottom: 8px;
    padding: 0 32px;
}
.navbar-nav > li ul li:last-child {
    margin-bottom: 0;
}
.navbar-nav > li ul a {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    color: #1b2b3a;
}
.navbar-nav > li ul a:hover {
    text-decoration: underline;
    color: #5d9123;
    background-color: transparent;
}
@media(max-width: 991px) {
    .navbar-nav > li ul {
        position: fixed;
        z-index: 1090;
        top: 56px;
        bottom: 0;
        left: -100%;
        overflow-y: auto;
        width: 100%;
        transition: height .01s;
        background-color: #5d9123;

        -webkit-overflow-scrolling: touch;
        /* visibility: hidden; */
    }
    .navbar-nav > li ul.is-active {
        /* visibility: visible; */
        left: 0;
    }
    .navbar-nav > li ul li {
        margin-bottom: 12px;
        padding-right: 56px;
        padding-left: 56px;
    }
    .navbar-nav > li ul .sub-menu-item__title {
        margin-bottom: 18px;
        padding-top: 0;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
    }
    .navbar-nav > li ul .sub-menu__title {
        position: relative;
    }
    .navbar-nav > li ul .sub-menu__title::before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -34px;
        width: 12px;
        height: 8px;
        margin: auto;
        content: "";
        -webkit-transform: scale(1) rotate(90deg);
        transform: scale(1) rotate(90deg);
        background-color: transparent;
        background-image: url(/themes/simple1/img/main-page/arr-vert.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .navbar-nav > li ul a {
        text-decoration: none !important;
        color: #fff;
    }
    .navbar-nav > li ul a:hover {
        color: #fff;
    }
}
@media(min-width: 992px) {
    .navbar-nav > li ul {
        display: none;
    }
}
/* menu-open */
.menu-open {
    overflow: hidden !important;
}
.menu-open .header-top__logo {
    display: none;
}
.pay-services > span {
    display: none;
    margin-left: 4px;
    color: #5d9123;
}
.menu-open .pay-services > span {
    display: inline-block;
}
.menu-open .navbar-toggle .icon-bar:first-child,
.menu-open .navbar-toggle .icon-bar:last-child {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.menu-open .navbar-toggle .icon-bar:first-child {
    -webkit-transform: scale(1) rotate(45deg);
    transform: scale(1) rotate(45deg);
}
.menu-open .navbar-toggle .icon-bar:last-child {
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
}
.menu-open .navbar-toggle .icon-bar:first-child + .icon-bar {
    display: none;
}
/* footer-page */
.footer-page {
    padding: 32px 0 20px 0;
    text-align: left;
    background: #263238;
}
.footer-page__item-group {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.footer-page__item {
    position: relative;
}
.footer-page__top .footer-page__item {
    margin-bottom: 32px;
}
@media(min-width: 768px) {
    .footer-page {
        padding-top: 60px;
        padding-bottom: 0;
    }
    .footer-page__top {
        padding-bottom: 64px;
    }
    .footer-page__bottom {
        padding-top: 20px;
        padding-bottom: 20px;
        border-top: 1px solid rgba(255, 255, 255, .2);
    }
    .footer-page__row {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        width: 100%;
    }
    .footer-page__item:last-child {
        margin-left: auto;
    }
    .footer-page__top .footer-page__row {
        -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -ms-flex-align: start;
    }
    .footer-page__top .footer-page__item {
        margin-bottom: 0;
    }
    .footer-page__bottom .footer-page__row {
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-align: center;
    }
    .footer-page__top .footer-page__row > .footer-page__item:first-child,
    .footer-page__top .footer-page__item-group .footer-page__item:first-child {
        margin-right: 36px;
    }
}
@media(min-width: 992px) {
    .footer-page__top .footer-page__row > .footer-page__item:first-child,
    .footer-page__top .footer-page__item-group .footer-page__item:first-child {
        margin-right: 90px;
    }
}
.footer-page__item > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-page__item,
.footer-page__item a {
    color: #fff;
}
.footer-page__item svg path {
    stroke: #fff;
}
.footer-page__info li:not(:last-child) {
    margin-bottom: 8px;
}
.footer-page__info a {
    font-size: 16px;
    line-height: 19px;
}
.footer-page__address li,
.footer-page__user li {
    margin-bottom: 8px;
}
.footer-page__user li:not(:last-child) {
    margin-bottom: 4px;
}
.footer-page__address li:first-child,
.footer-page__user li:first-child {
    margin-bottom: 16px;
}
.footer-page__user li:not(:first-child) a {
    opacity: .6;
}
.footer-page__address a,
.footer-page__user a {
    font-size: 12px;
    line-height: 18px;
    display: inline-block;
    vertical-align: middle;
}
.footer-page__address svg,
.footer-page__user svg {
    width: 16px;
    margin-right: 4px;
    vertical-align: middle;
}
.footer-page__address li:first-child a,
.footer-page__user li:first-child a {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 12px;
    line-height: 24px;
}
.footer-page__address address {
    font-size: 12px;
    font-style: normal;
    line-height: 18px;
    opacity: .6;
}
.footer-page__contact li:not(:last-child) {
    margin-bottom: 8px;
}
.footer-page__contact h4 {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    opacity: .7;
}
.footer-page__contact a {
    font-size: 16px;
    line-height: 28px;
}
.footer-page__social {
    height: 24px;
    margin-bottom: 8px;
    text-align: left;
}
.footer-page__social li {
    display: inline-block;
}
.footer-page__social li:not(:last-child) {
    margin-right: 14px;
}
.footer-page__social li:last-child {
    margin-left: -3px;
}
.footer-page__social svg,
.footer-page__social a {
    display: block;
}
.footer-page__social a {
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    opacity: .7;
}
.footer-page__social a:hover {
    opacity: 1;
}
.footer-page__pp {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 12px;
    line-height: 24px;
    display: inline-block;
    margin-top: 8px;
}
.footer-page__up {
    position: absolute;
    right: 0;
    bottom: 96px;
    display: block;
    width: 40px;
    height: 40px;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 4px;
}
.footer-page__up:hover {
    border-color: #fff;
}
.footer-page__up svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 8px;
    margin: auto;
}
@media(min-width: 768px) {
    .footer-page__info a {
        font-size: 20px;
        line-height: 32px;
    }
    .footer-page__address li:first-child,
    .footer-page__user li:first-child {
        margin-bottom: 40px;
    }
    .footer-page__address address,
    .footer-page__address a,
    .footer-page__user a {
        font-size: 14px;
        line-height: 24px;
    }
    .footer-page__address li:first-child a,
    .footer-page__user li:first-child a {
        font-size: 14px;
    }
    .footer-page__address svg,
    .footer-page__user svg {
        width: 18px;
    }
    .footer-page__contact li:not(:last-child) {
        margin-bottom: 24px;
    }
    .footer-page__contact h4 {
        font-size: 14px;
        line-height: 24px;
    }
    .footer-page__contact a {
        font-size: 20px;
        line-height: 32px;
    }
    .footer-page__pp {
        font-size: 14px;
        margin-top: 0;
        margin-left: 70px;
    }
    .footer-page__up {
        position: relative;
        right: auto;
        bottom: auto;
    }
}
/* main-banner */
.s-section--banner {
    background: #1b2b3a;
}
.main-page .s-section--banner > .container {
    overflow: hidden;
}
.main-banner__img {
    padding-right: 40px;
    text-align: right;
}
.main-banner__img img {
    width: auto;
    max-width: 100%;
    height: auto;
    text-align: right;

    -webkit-clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
    clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
}
@media(max-width: 767px) {
    .main-page .main-banner__img {
        display: none;
    }
}
@media(max-width: 1199px) {
    .main-page .main-banner__img img {
        width: 60%;
    }
}
.main-banner__inner {
    padding-top: 40px;
    padding-bottom: 40px;
}
.main-banner__caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #fff;
}
.main-banner .b-badge {
    font-size: 12px;
    margin-bottom: 12px;
}
.main-banner__title {
    font-family: "GolosTextWebBold", sans-serif;
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    margin: 0 0 16px 0;
}
.main-banner__text {
    font-size: 14px !important;
    line-height: 20px;
    margin-bottom: 34px;
}
@media(max-width: 1199px) {
    .main-banner__btn {
        padding: 0;
        background: none !important;
    }
    .main-banner__btn .b-btn__text {
        color: #fff !important;
    }
    .main-banner__btn .b-btn__text {
        line-height: 20px;
        position: relative;
        display: inline-block;
    }
    .main-banner__btn .b-btn__text::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        height: 1px;
        margin: auto;
        content: "";
        background: rgba(255, 255, 255, .4);
    }
}
@media(max-width: 767px) {
    .main-banner__caption {
        position: static;
    }
    .main-banner__title br {
        display: none;
    }
}
@media(min-width: 768px) {
    .main-banner__caption {
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}
@media(min-width: 1200px) {
    .main-banner .b-badge {
        margin-bottom: 20px;
    }
    .main-banner__title {
        font-size: 48px;
        line-height: 64px;
        margin-bottom: 20px;
    }
    .main-banner__text {
        font-size: 20px !important;
        line-height: 32px;
        margin-bottom: 58px;
    }
}
.main-banner-indicators {
    position: absolute;
    z-index: 15;
    top: 0;
    right: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 12px;
    background: #1b2b3a;
}
.main-banner .main-banner-indicators__list {
    position: static;
    width: 12px;
    height: auto;
    margin: 0;
    padding: 0;
}
.main-banner .main-banner-indicators__list li {
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 0 16px 0;
    border: 1px solid #6dab29;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
}
.main-banner .main-banner-indicators__list .active {
    background: #6dab29;
}
.main-banner .main-banner-indicators__list li:last-child {
    margin-bottom: 0;
}
@media(max-width: 767px) {
    .main-banner-indicators {
        display: none;
    }
}

/* main-banner--o-pic */
.main-banner--o-pic .container {
    position: relative;
}
.main-banner--o-pic .main-banner__inner {
    max-width: 360px;
}
@media(min-width: 768px) {
    .main-banner--o-pic .main-banner__inner {
        padding: 0;
    }
}
@media(min-width: 1280px) {
    .main-banner--o-pic .main-banner__inner {
        max-width: 510px;
    }
}
.main-banner--o-pic .main-banner__img {
    float: right;
    position: relative;
    right: -42%;
    padding-right: 0;
}
@media(min-width: 992px) {
    .main-banner--o-pic .main-banner__img {
        right: -30%;
    }
}
@media(min-width: 1280px) {
    .main-banner--o-pic .main-banner__img {
        right: -22%;
    }
}
@media(min-width: 1440px) {
    .main-banner--o-pic .main-banner__img {
        right: -15%;
    }
}
@media(min-width: 1600px) {
    .main-banner--o-pic .main-banner__img {
        right: 0;
    }
}
@media(max-width: 767px) {
    .main-banner--o-pic .main-banner__img {
        display: none;
    }
}
.main-banner--o-pic .main-banner__img img {
    -webkit-clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
}
.main-banner--o-pic .main-banner__title {
    font-family: "GolosTextWebDemiBold", sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
}
.main-banner--o-pic .main-banner__caption {
    left: 15px;
}
.main-banner--o-pic .main-banner__text {
    margin-bottom: 0;
}

/* service */
@media(max-width: 991px) {
    .b-grid--service {
        margin-bottom: -16px;
    }
    .b-grid--service > .b-grid__item {
        padding-bottom: 16px;
    }
}
@media(min-width: 768px) {
    .b-grid--service {
        margin-left: -16px;
    }
    .b-grid--service > .b-grid__item {
        -webkit-flex: 0 1 50%;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
        width: 50%;
        min-width: 50%;
        max-width: 50%;
        padding-left: 16px;
    }
}
.service-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 20px 0 20px 20px;
    border-radius: 4px;
}
@media(min-width: 1200px) {
    .service-card {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 30px;
    }
}
.service-card:hover {
    box-shadow: 0 4px 8px rgba(176, 190, 197, .24);
}
.service-card:focus {
    outline: none;
    box-shadow: 0 8px 16px rgba(176, 190, 197, .48);
}
.service-card--net {
    background: linear-gradient(131.15deg, #6dab29 0%, #2c8254 100%);
}
.service-card--tv {
    background: linear-gradient(131.15deg, #ffa350 0%, #f05a0e 100%);
}
.service-card--net-tv {
    background: linear-gradient(131.15deg, #44d5a4 0%, #106d8a 99.99%);
}
.service-card--net-pic {
    background: linear-gradient(127.38deg, #FFE600 0%, #4AE1EB 0.01%, #3190E8 100%);
    ;
}
.service-card__img {
    text-align: right;
}
@media(max-width: 575px) {
    .service-card__img img {
        width: 50%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-card__img img {
        margin-right: -30px;
    }
}

.service-card__head {
    position: absolute;
    top: 23px;
}
@media (min-width: 1200px) {
    .service-card:after {
        clear: both;
        content: "";
        display: block;
    }
    .service-card__img {
        float: right;
    }
    .service-card__head {
        position: static;
        margin-bottom: 20px;
    }
}
.service-card__title {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 23px;
    margin: 0 0 6px 0;
    color: #fff;
}
@media (min-width: 1200px) {
    .service-card__title {
        font-size: 20px;
        line-height: 32px;
        /* margin-top: -16px; */
    }
}
.service-card__text {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 25px;
    color: #fff;
}
.service-card__text > strong {
    font-family: inherit;
    font-size: 20px;
    font-weight: normal;
    display: inline-block;
}
@media (min-width: 1200px) {
    .service-card__text {
        font-size: 20px;
        line-height: 32px;
    }
    .service-card__text > strong {
        font-size: 34px;
    }
}
.service-card__link {
    font-family: "GolosTextWebRegular", sans-serif;
    font-size: 12px;
    line-height: 18px;
    display: inline-block;
    margin-top: 20px;
    color: #fff;
}
@media (min-width: 1200px) {
    .service-card__link {
        font-size: 16px;
        line-height: 20px;
        margin-top: 0;
    }
}
.service-card__link .arr-next {
    width: 6px;
    height: 17px;
    margin-left: 8px;
}
@media (min-width: 1200px) {
    .service-card__link .arr-next {
        width: 10px;
        height: 16px;
        margin-left: 16px;
    }
}
.service-card-link__text {
    position: relative;
    color: inherit;
}
.service-card-link__text::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    display: block;
    height: 1px;
    margin: auto;
    content: "";
    background: rgba(255, 255, 255, .4);
}
.service-card-link:active,
.service-card-link:focus,
.service-card-link:hover {
    text-decoration: none;
    color: #fff;
}
.service-card-link:active .service-card-link__text::after,
.service-card-link:focus .service-card-link__text::after,
.service-card-link:hover .service-card-link__text::after {
    background: #fff;
}
/* b-grid--rate */
.b-grid--rate {
    margin-bottom: 20px;
}
.b-grid--rate > .b-grid__item {
    padding-bottom: 20px;
}
@media(min-width: 576px) {
    .b-grid--rate {
        margin-left: -20px;
    }
    .b-grid--rate > .b-grid__item {
        -webkit-flex: 0 1 50%;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
        width: 50%;
        min-width: 50%;
        max-width: 50%;
        padding-left: 20px;
    }
}
@media(min-width: 768px) {
    .b-grid--rate > .b-grid__item {
        -webkit-flex: 0 1 33.333333%;
        -ms-flex: 0 1 33.333333%;
        flex: 0 1 33.333333%;
        width: 33.333333%;
        min-width: 33.333333%;
        max-width: 33.333333%;
    }
}
@media(min-width: 992px) {
    .b-grid--rate > .b-grid__item {
        -webkit-flex: 0 1 25%;
        -ms-flex: 0 1 25%;
        flex: 0 1 25%;
        width: 25%;
        min-width: 25%;
        max-width: 25%;
    }
}
@media(min-width: 1200px) {
    .b-grid--rate {
        margin-bottom: 40px;
    }
}
/* rate-card */
.rate-card {
    display: block;
    height: 100%;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
}
@media(min-width: 1200px) {
    .rate-card {
        min-height: 460px;
    }
}
.rate-card:active,
.rate-card:focus,
.rate-card:hover {
    text-decoration: none;
}
.rate-card:hover {
    box-shadow: 0 4px 8px rgba(176, 190, 197, .24);
}
.rate-card:focus {
    box-shadow: 0 8px 16px rgba(176, 190, 197, .48);
}
.rate-card:hover .b-btn {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}
.rate-card:focus .b-btn::before {
    opacity: 1;
}
.rate-card__inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -ms-flex-align: stretch;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    height: inherit;
    padding: 32px 20px;
    border-radius: 4px;
    background: #fff;
}
@media (min-width: 1200px) {
    .rate-card__inner {
        padding-top: 46px;
        padding-bottom: 20px;
    }
}
.rate-card__head {
    position: relative;
    margin-bottom: 30px;
}
@media (min-width: 1200px) {
    .rate-card__head {
        min-height: 160px;
    }
}
.rate-card__action {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 24px;
    position: absolute;
    right: 0;
    display: block;
    margin-bottom: 4px;
    text-align: right;
    color: #f05a0e;
}
@media (min-width: 1200px) {
    .rate-card__action {
        top: -24px;
        margin-bottom: 0;
    }
}
.rate-card__title {
    font-family: "GolosTextWebBold", sans-serif;
    font-size: 18px;
    line-height: 24px;
    display: block;
    color: #263238;
}
@media (min-width: 768px) {
    .rate-card__title {
        min-height: 48px;
    }
}
@media (min-width: 1200px) {
    .rate-card__title {
        font-size: 24px;
        line-height: 32px;
        min-height: 64px;
    }
}
.bg-pic .rate-card__title {
    margin-bottom: 0;
}
.rate-card__img {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100px;
}
.rate-card__img img {
    max-height: 100px;
}
.rate-card__body {
    margin-bottom: 8px;
}
.rate-card__caption {
    font-size: 14px;
    line-height: 20px;
    display: block;
    color: #263238;
}
.rate-card__mute {
    color: #979797;
}
.rate-card__caption > span {
    position: relative;
    display: block;
}
.rate-card__caption > span:not(:last-child) {
    margin-bottom: 4px;
}
@media (min-width: 1200px) {
    .rate-card__caption > span::before {
        top: 10px;
    }
}
.rate-card__caption > .rate-card__mute::before {
    background: #979797;
}
.rate-card__footer {
    margin-top: auto;
}
.rate-card__cost {
    display: block;
    margin-bottom: 24px;
    color: #263238;
}
.rate-card__num {
    font-family: "GolosTextWebRegular", sans-serif;
    font-size: 34px;
    font-weight: normal;
    line-height: 50px;
    display: inline-block;
}
.rate-card__cur {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 20px;
    line-height: 32px;
    display: inline-block;
}
/* s-section--form */

.form-card {
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
}
.form-card:hover {
    box-shadow: 0 4px 8px rgba(176, 190, 197, .24);
}
.form-card__inner {
    overflow: hidden;
    padding: 32px 16px 26px;
    border-radius: 4px;
    background: #fff;
}
.form-card__img {
    width: 44px;
    margin-left: 20px;
}
.form-card__title {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 8px 0;
    color: #263238;
}
.form-card__text {
    font-size: 16px;
    line-height: 28px;
    color: #828282;
}
.form-card__info {
    overflow: hidden;
}
.form-card__info.is-hide {
    visibility: hidden;
    height: 0;
}
@media (min-width: 1200px) {
    .form-card__inner {
        padding: 48px 60px;
    }
    .form-card__info {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
        align-content: stretch;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -ms-flex-align: start;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
    .form-card__title,
    .form-card__text {
        margin-left: 30px;
    }
}
[class*="js-address-"].is-hide {
    display: none;
}
/* b-form */
.b-form .form-group {
    position: relative;
    margin-bottom: 22px;
}
.b-form .row {
    margin-right: -8px;
    margin-left: -8px;
}
.b-form [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
}
.b-form__row:last-child {
    margin-bottom: 0 !important;
}
.b-form__item {
    position: relative;
    margin-bottom: 22px;
}
.b-form__item--100 {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.b-form .errorMessage,
.b-form__error {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 11px;
    line-height: 1.2;
    position: absolute;
    bottom: -16px;
    white-space: nowrap;
    color: #eb5757;
}
.b-form [type="text"],
.b-form textarea {
    font-size: 14px;
    line-height: 1.2;
    position: relative;
    width: 100%;
    padding: 19px 10px;
    color: #333;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 4px;
    background: #f7f7f7;
}
.b-form .success::after {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    display: block;
    width: 15px;
    height: 10px;
    margin: auto;
    content: "";
    background-color: transparent;
    background-image: url("/themes/simple1/img/main-page/i-check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.b-form .not-validate [type="text"],
.b-form .not-validate textarea {
    z-index: 1;
}
.b-form .form-group > label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    margin: 0;
    padding: 19px 10px;
    cursor: text;
    color: rgba(27, 43, 58, .5);
    border: 1px solid transparent;
}
.b-form [type="text"]:focus,
.b-form textarea:focus {
    border-color: #1c9331;
    outline: none !important;
    background: #fff;
}
.b-form .success > label,
.b-form [type="text"]:focus + label,
.b-form textarea:focus + label,
.b-form [type="text"] + label .required,
.b-form textarea + label .required {
    display: none;
}
.b-form [type="text"]::-webkit-input-placeholder,
.b-form textarea::-webkit-input-placeholder {
    color: rgba(27, 43, 58, .5);
}
.b-form [type="text"]::-moz-placeholder,
.b-form textarea::-moz-placeholder {
    color: rgba(27, 43, 58, .5);
}
.b-form [type="text"]:-ms-input-placeholder,
.b-form textarea:-ms-input-placeholder {
    color: rgba(27, 43, 58, .5);
}
.b-form [type="text"]:-moz-placeholder,
.b-form textarea:-moz-placeholder {
    color: rgba(27, 43, 58, .5);
}
::-webkit-input-placeholder {
    transition: text-indent .00001s ease;
}
::-moz-placeholder {
    transition: opacity .00001s ease;
}
:-moz-placeholder {
    transition: opacity .00001s ease;
}
:-ms-input-placeholder {
    transition: text-indent .00001s ease;
}
:focus::-webkit-input-placeholder {
    transition: text-indent .00001s ease;
}
:focus::-moz-placeholder {
    transition: opacity .00001s ease;
}
:focus:-moz-placeholder {
    transition: opacity .00001s ease;
}
.btn--submit {
    width: 100% !important;
    padding: 21px 40px !important;
    color: #fff !important;
    background: #6dab29 !important;
}
/* b-form--check */
.b-form--check .row {
    margin-right: -3px;
    margin-left: -3px;
}
.b-form--check [class*="col-"] {
    padding-right: 3px;
    padding-left: 3px;
}
.b-form--check [type="text"] {
    border: 1px dashed #6dab29;
    background: rgba(109, 171, 41, .1);
}
.b-form--check [type="text"]:focus {
    border-style: solid;
    border-color: #1c9331;
    outline: none !important;
}
.b-form--check .b-form__btn {
    padding: 19px 24px;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}
.b-form--check .b-form__btn:active,
.b-form--check .b-form__btn:focus,
.b-form--check .b-form__btn:hover {
    background: rgba(109, 171, 41, .1);
}
@media (min-width: 1200px) {
    .b-form .form-group {
        margin-bottom: 28px;
    }
    .b-form__row {
        margin-bottom: 28px;
        margin-left: -16px;
    }
    .b-form__item {
        margin-bottom: 0;
        padding-left: 16px;
    }
}

/* b-form-title */
.b-form-title {
    margin-bottom: 40px;
}
.b-form-title--step-2 {
    max-width: 380px;
}
.b-form-title__head {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 8px 0;
}
.b-form-title__text {
    line-height: 28px;
    color: #828282;
    margin: 0;
}

/* pp-note */
.pp-note {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 28px;
}
.pp-note__text {
    font-size: 14px;
    line-height: 20px;
    color: #828282;
}
.pp-note__link {
    font-size: inherit;
    line-height: inherit;
    color: #6dab29;
}
.pp-note__link:hover {
    color: #6dab29;
}
@media (min-width: 1200px) {
    .pp-note {
        margin-bottom: 0;
    }
}
/* confirm-msg */
.confirm-msg {
    text-align: center;
}
.s-section--form .confirm-msg--false .confirm-msg__img {
    margin-bottom: 40px;
}
.modal .confirm-msg--false .confirm-msg__img {
    margin-bottom: 20px;
}
.confirm-msg--true .confirm-msg__img {
    margin-bottom: 30px;
}
.confirm-msg__title {
    font-family: "GolosTextWebDemiBold", sans-serif;
    display: block;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
}
.confirm-msg--false .confirm-msg__title {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 16px;
}
.confirm-msg--true .confirm-msg__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
}
.confirm-msg__text {
    line-height: 28px;
    margin-bottom: 16px;
}
.confirm-msg__text:last-child {
    margin-bottom: 0;
}
@media (min-width: 1200px) {
    .s-section--form .confirm-msg__row {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
        align-content: stretch;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -ms-flex-align: start;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
    .s-section--form .confirm-msg--false {
        text-align: left;
    }
    .modal .confirm-msg--true,
    .modal .confirm-msg--false {
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
    }
    .s-section--form .confirm-msg--false .confirm-msg__img {
        margin-right: 24px;
    }
}
/* modal */
.modal-content {
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 4px;
    background: #fff;
}
.modal .title {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
    text-align: left;
    text-transform: none;
    color: #263238;
}
.modal .close {
    top: -1px;
    right: -1px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    -webkit-transition: background-color .1s ease-out;
    transition: background-color .1s ease-out;
    border-radius: 4px;
    outline: none !important;
    background-color: #f4822a;
    background-image: none;
}
.modal .close:hover {
    opacity: 1;
    background-color: #dd7627;
}
@media (min-width: 768px) {
    .modal-dialog {
        margin-top: 64px;
    }
    .modal-content {
        padding: 80px 60px 88px;
    }
    .modal .close {
        top: -24px;
        right: -24px;
        width: 48px;
        height: 48px;
    }
}
@media (min-width: 992px) {
    #connect-modal .modal-dialog,
    #validate-connect .modal-dialog,
    .modal-dialog {
        width: 660px;
    }
}

/* ui-widget-content */
.ui-widget-content {
    z-index: 1060;
}
.ui-widget-content {
    border-color: rgba(0, 0, 0, .1);
    color: #263238;
    background: #fff;
    border-radius: 4px;
}
.ui-menu .ui-menu-item {
    font-family: "GolosTextWebRegular", sans-serif;
    font-size: 14px;
    color: #263238;
    padding: 3px 14px;
    list-style-image: none;
}
.ui-menu .ui-menu-item:active,
.ui-menu .ui-state-focus,
.ui-menu .ui-menu-item:focus,
.ui-menu .ui-menu-item:hover {
    background: #f7f7f7 !important;
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
    border-left-color: rgba(0, 0, 0, .1) !important;
    border-right-color: rgba(0, 0, 0, .1) !important;
}

/* s-section--news */
.s-section--news {
    margin-bottom: 0;
}
@media (min-width: 1200px) {}
.news-list__item {
    padding-bottom: 16px;
}
@media (min-width: 768px) {
    .s-section--news {
        margin-bottom: 40px;
    }
    .news-list {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    .news-list__item {
        height: 100%;
        padding-bottom: 0;
    }
    .news-list__item:first-child {
        grid-row: 1 / 4;
    }
}
@media all and (-ms-high-contrast:none) {
    .news-list__item {
        padding-bottom: 20px;
    }
    *::-ms-backdrop,
    .news-list__item {
        padding-bottom: 20px;
    }
}
@media (min-width: 1200px) {
    .s-section--news {
        margin-bottom: 80px;
    }
}
.news-card {
    height: inherit;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
}
.news-card:hover {
    box-shadow: 0 4px 8px rgba(176, 190, 197, .24);
}
.news-card:focus {
    box-shadow: 0 8px 16px rgba(176, 190, 197, .48);
}
.news-card__inner {
    overflow: hidden;
    height: inherit;
    padding: 20px;
    border-radius: 4px;
    background: #fff;
}
.news-list__item:first-child .news-card__inner {
    padding-top: 32px;
    padding-bottom: 32px;
}
@media (min-width: 1200px) {
    .news-card__inner {
        padding: 40px 60px;
    }
    .news-list__item:first-child .news-card__inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
.s-section--news .s-section-title__link {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 12px;
    line-height: 16px;
    position: relative;
    top: -4px;
    display: inline-block;
    margin-left: 12px;
    color: #6dab29;
}
.s-section--news .s-section-title__link::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    display: block;
    height: 1px;
    margin: auto;
    content: "";
    opacity: .4;
    background: #305f46;
}
@media (min-width: 1200px) {
    .s-section--news .s-section-title__link {
        font-size: 14px;
        line-height: 24px;
        top: -2px;
    }
    .s-section--news .s-section-title__link::after {
        bottom: 0;
    }
}
.s-section--news .s-section-title__link:active,
.s-section--news .s-section-title__link:focus,
.s-section--news .s-section-title__link:hover {
    text-decoration: none;
    color: #6dab29;
}
.s-section--news .s-section-title__link:active::after,
.s-section--news .s-section-title__link:focus::after,
.s-section--news .s-section-title__link:hover::after {
    opacity: 1;
}
.news-card__title {
    font-family: "GolosTextWebBold", sans-serif;
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 8px 0;
    color: #263238;
}
.news-card__title a {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
.news-card__title a:hover {
    color: #263238 !important;
}
.news-list__item:first-child .news-card__title {
    font-size: 18px;
    line-height: 24px;
}
@media (min-width: 1200px) {
    .news-list__item:first-child .news-card__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
}
.news-card__tag {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin-right: 12px;
    color: #f05a0e;
}
.news-card__tag > span {
    display: inline-block;
    margin-right: 4px;
}
.news-card__date {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
    color: #bdbdbd;
}
.news-card__descript {
    font-size: 14px;
    line-height: 24px;
    margin-top: 16px;
    margin-bottom: 0;
    color: #263238;
}
.news-list__item:not(:first-child) .news-card__descript {
    display: none;
}
@media (min-width: 1200px) {
    .news-card__descript {
        margin-top: 40px;
    }
}
/* contact-page */
.contact-page {
    margin-bottom: 40px;
}
@media (min-width: 1200px) {
    .contact-page {
        margin-bottom: 80px;
    }
}
.contact-page__link {
    color: #6dab29;
}
.contact-page__link:hover {
    text-decoration: underline;
    color: #6dab29;
}
@media(max-width: 1279px) {
    .contact-page .text-nowrap--custom {
        white-space: normal;
    }
}
/* map */
.contact-page .wrap-map {
    overflow: hidden;
    padding-top: 20px;
    border-radius: 4px;
}
/* legal-page */
.legal-page-intro__bottom,
.legal-page-info,
.legal-page-rate,
.legal-page-plus,
.legal-page-rate__left,
.legal-page-rate__right {
    margin: 0;
    padding: 0;
    background: none;
}
.legal-page__text,
.legal-page__tel {
    color: #263238;
}
.legal-page__tel {
    white-space: nowrap;
}
.legal-page__title {
    margin-bottom: 10px;
    color: #263238;
}
.legal-page-info .legal-page-info__small {
    color: #828282;
}
.legal-page-plus .media {
    margin: 20px 0 0 0;
    padding: 20px;
    border-radius: 4px;
    box-shadow: none;
}
.legal-page-plus .row {
    margin-right: -10px;
    margin-left: -10px;
}
.legal-page-plus [class^="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}
@media (max-width: 767px) {
    .legal-page-intro__bottom .legal-page__text,
    .legal-page-rate__left .legal-page__text {
        margin-bottom: 20px;
    }
    .legal-page-rate__bottom {
        margin-right: 0;
        margin-left: 0;
    }
    .legal-page-plus .media {
        min-height: 100%;
    }
    .legal-page-callback {
        padding: 0;
    }
}
.legal-page .header-top {
    padding: 0;
}
@media (min-width: 768px) {
    .legal-page-rate__left {
        padding-right: 20px;
    }
    .legal-page-plus .media {
        min-height: 295px;
    }
    .legal-page-rate__right > div {
        width: 100%;
        text-align: right;
    }
}
@media (max-width: 991px) {
    .legal-page .navbar-toggle {
        display: block;
    }
    .legal-page .navbar-header {
        right: 0;
    }
}
@media (min-width: 992px) {
    .legal-page-plus .media {
        min-height: 212px;
    }
    .legal-page .header-bottom {
        display: none;
    }
}
@media (min-width: 1200px) {
    .legal-page-plus .media {
        min-height: 232px;
        padding: 40px;
    }
}
@media (min-width: 1280px) {
    .legal-page-plus .media {
        min-height: 212px;
    }
}
.legal-page__content > [class^="legal-page__"],
.legal-page-intro__top {
    margin-bottom: 40px;
}
.legal-page #callbacks-modal .modal-dialog {
    max-width: 1110px;
}
.legal-page .modal-dialog {
    width: auto;
}
.legal-page #callbacks-modal .title {
    font-family: "GolosTextWebDemiBold", sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
    color: #263238;
}
.legal-page #callbacks-modal .title br {
    display: none;
}
.legal-page-title {
    display: none;
}
.legal-page .legal-page-title {
    display: block;
}
.legal-page .form-group {
    margin-bottom: 15px;
}
.legal-page #callbacks-modal .pp-note {
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
}
.legal-page #callbacks-modal #Callbacks_name_em_ {
    width: auto;
}
.legal-page #callbacks-modal .input-submit {
    padding-top: 0;
}
@media (min-width: 768px) {
    .legal-page #callbacks-modal .modal-dialog {
        top: 10%;
        margin-right: 25px;
        margin-left: 25px;
    }
    .legal-page .modal-content {
        padding: 40px 60px;
    }
}
@media (min-width: 1160px) {
    .legal-page #callbacks-modal .modal-dialog {
        margin-right: auto;
        margin-left: auto;
    }
}
/* b-card--news, b-card--media */
.b-card--news a,
.b-card--media p {
    font-family: "GolosTextWebBold", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #263238;
}
.b-card--news .text-muted,
.b-card--media .text-muted {
    display: block;
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
    color: #bdbdbd;
}
.b-card--news a,
.b-card--media a {
    display: block;
}
.b-card--news a {
    margin-bottom: 12px;
}
.b-card--media a {
    word-break: break-all;
}
.b-card--media a + a {
    margin-top: -12px;
}
.b-card--media a:not(:last-child) {
    margin-bottom: 12px;
}
.b-card--media p {
    margin-bottom: 0;
}
.b-card--media img {
    margin-top: 12px;
}
/* ch-list */
.ch-list__img {
    width: 100%;
}
.ch-modal-content .close {
    width: 21px;
    height: 21px;
    top: 23px;
    right: 15px;
    background-image: url(/img/cross-out.svg);
    background-color: transparent !important;
}

/* fast-net */
.fast-net .content-block {
    margin-top: 0;
}
.fast-net + .rates-note {
    text-align: left !important;
}
.fast-net-section {
    margin-bottom: 20px;
}
.fast-net__list li:not(:last-child) {
    margin-bottom: 8px;
}
.fast-net__list + .text-muted {
    margin-top: 12px;
}
.modal--connect .modal-dialog {
    width: 100%;
    max-width: 1200px;
}
@media (min-width: 768px) and (max-width: 1199px) {
    .modal--connect .modal-dialog {
        width: calc(100% - 40px);
        margin-right: 20px;
        margin-left: 20px;
    }
}

/* btn-check-connect */
.btn-check-connect {
    position: fixed;
    width: 56px;
    height: 56px;
    right: 15px;
    bottom: 20px;
    z-index: 1050;
    background: #F4822A;
    border-radius: 50%;
    padding: 0;
}
.btn-check-connect__inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.btn-check-connect__text {
    font-family: "GolosTextWebMedium", sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .0025em;
    color: #fff;
    margin-right: 10px;
    white-space: nowrap;
}
.btn-check-connect__svg {
    display: block;
}
@media(max-width: 991px) {
    .btn-check-connect:before {
        border-radius: 50%;
    }
    .btn-check-connect__text {
        display: none;
    }
}
@media(min-width: 768px) and (max-width: 1759px) {
    .btn-check-connect {
        bottom: 110px;
    }
}
@media(min-width: 992px) {
    .btn-check-connect {
        width: 236px;
        background: #F4822A;
        border-radius: 4px;
    }
}

/* tv-page */
.tv-page .s-section--banner {
    margin-bottom: 0;
}
.tv-page .main-banner .main-banner__inner {
    padding: 0;
}
.tv-page .main-banner .main-banner__caption {
    right: 0;
}
.tv-page .main-banner .b-badge,
.tv-page .main-banner .main-banner__btn::before,
.tv-page .main-banner .main-banner__btn .b-btn__text,
.tv-page .main-banner .main-banner__btn .arr-next,
.tv-page .main-banner .main-banner__title,
.tv-page .main-banner .main-banner__text {
    display: none !important;
}
.tv-page .main-banner .main-banner__btn {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    padding: 0;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}
.tv-page .main-banner__img {
    text-align: center;
}
@media(max-width: 1199px) {
    .tv-page .main-banner__img {
        padding-right: 0;
        padding-left: 0;
    }
}
@media(min-width: 1200px) {
    .tv-page .main-banner__img {
        padding-right: 5%;
        padding-left: 5%;
    }
}
.tv-page .main-banner__img img {
    -webkit-clip-path: none;
    clip-path: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.tv-page .s-section--banner .container {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
}
