/* FreeLine index style sheet */
html {
    height: 100%;
}

body {
    scroll-behavior: smooth;
    min-width: 320px;
    max-width: 100vw;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.header {
    position: absolute;
    width: 100%;
    z-index: 99;
}

.header_menu {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
}

.catalog_button__heading {
    display: flex;
    align-items: center;
    color: var(--basic-company-text);
    position: relative;
    padding: 12px 0;
}

.catalog_button__heading a {
    color: var(--basic-company-text);
}

.catalog_button__arrow {
    height: 24px;
}

.categories_nav.categories_nav--show {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
    overflow: auto;
    max-height: calc(100vh - 600px);
    min-height: 330px;
    align-items: flex-start;
}

.catalog_button {
    position: relative;
}

.categories_menu {
    display: grid;
    grid-template-columns: repeat(2, 260px);
    column-gap: 40px;
    row-gap: 20px;
    /* list-style: disc; */
    color: black;
    /* padding-left: 20px; */
    width: max-content;
    columns: 3;
}

.categories_menu__item.has_child {
    break-before: column;
}

.level_1.categories_nav__menu .categories_menu__item.has_child .categories_menu__link {
    font-weight: 900;
    margin-bottom: 10px;
}

.level_2.categories_nav__subcategory .subcategory .categories_menu__link {
    font-weight: 500 !important;
    margin-bottom: 6px !important;
}

.level_2.categories_nav__subcategory .subcategory {
    padding-left: 25px;
}

.level_2.categories_nav__subcategory .categories_menu__item {
    list-style-type: disc;
}

.relative_header {
    position: relative;
}

a {
    transition: var(--transition);
    text-decoration: unset;
    color: var(--body-text);
}

p {
    line-height: 1.5;
}

/* Load animation */

#header-shape-gradient {
    --color-stop: #3650a7;
    --color-bot: #121c3d;
}

.fullpage-loader path,
.fullpage-loader circle {
    fill: rgb(255 255 255 / 70%);
}

.fullpage-loader {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background: var(--bg-gradient);
    z-index: 9999;
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}

.fullpage-loader div {
    width: 16vmin;
    height: 16vmin;
    color: #25252D;
    border-radius: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: calc(50% - 8vmin);
    left: calc(50% - 8vmin);
    -webkit-transform-origin: -8vmin center;
    transform-origin: -8vmin center;
}

.fullpage-loader svg {
    width: 85%;
    height: 85%;
}

.fullpage-loader path {
    -webkit-animation-name: blink;
    animation-name: blink;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.8);
    animation-timing-function: cubic-bezier(0.4, 0, 1, 0.8);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}

.fullpage-loader .loader_line_1 {
    -webkit-animation-delay: -1.5s;
    animation-delay: -1.5s;
    opacity: 0
}

.fullpage-loader .loader_line_2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    opacity: 0
}

.fullpage-loader svg .loader_line_3 {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
    opacity: 0
}

.fullpage-loader--invisible {
    opacity: 0
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

/* Load animation */

/* Header[START] */

.header_top {
    padding: 10px 0;
    background: #FFF;
}

.header_link {
    gap: 8px;
}

.header_bottom {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.relative_header .header_bottom {
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
    background: var(--bg-gradient);
}

.d-flex .align-items-center .header_bottom_inner {
    width: 100%
}

.header_logo {
    margin-top: 10px;
    position: relative;
    padding: 12px 12px 12px 0px;
    display: flex;
    flex-direction: column;
    width: 25%;
    max-width: 236px;
}

.relative_header .header_logo {
    margin-bottom: 20px;
}

.header_logo:before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: calc((100vw - 1340px) / 2);
    height: 100%;
}

.header_logo:after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 51px;
    background-size: cover;
}

.site_logo {
    width: 100%;
    margin-bottom: 2px;
}

.header_title {
    color: white;
    opacity: 0.8;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
}

.header_menu_wrapper {
    gap: 50px;
    width: 100%;
}

.relative_header .header_menu_wrapper {
    margin-top: 0;
}

.header_menu .menu_group_list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 16px;
}

.menu_group_list--1 {
    padding: unset;
}

.header_menu .menu_group_link {
    color: var(--basic-company-text);
}

.header_menu .menu_eventer {
    display: flex;
    align-items: center;
    color: var(--basic-company-text);
    position: relative;
    padding: 12px 0;
}

.header_menu .menu_eventer svg,
.catalog_button__heading svg {
    transition: .3s;
}

.header_menu .menu_group_list--2 {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
}

.header_menu .menu_group_item.menu_group_item--2 {
    padding: unset;
    border: unset;
}

.header_menu .menu_group_list--2 .active_subcat {
    list-style-type: disc;
    padding: 0 0 0 3em;
    max-height: unset;
}


.header_menu_btn {
    position: relative;
    left: 10px;
}

@keyframes dropdownFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.header_menu .menu_group_list--2 .menu_group_link {
    color: var(--body-text);
    padding: 0.2em 0;
    display: block;

}

.header_links {
    gap: 40px;
}

.user_link {
    border-radius: 8px;
    border: 1px solid #f28613;
    ;
    background: #FFF;
    padding: 8px 16px;
    color: #f28613;
    ;
}

/* Header[END] */

/* Button [START] */

.fl_btn,
.page_description a[href*="callback"] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f28613;
    height: 48px;
    width: fit-content;
    padding: 14px 16px;
    color: var(--button-text);
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: unset;
    margin: 0 auto;
    text-decoration: unset;
}

.page_description a[href*="callback"] {
    display: flex;
    margin: 20px 0;
}

.fl_btn.fl_alt_btn {
    background: #f28613;
}

.fl_btn.fl_border_btn {
    background: transparent;
    color: var(--button-color);
    border: 1px solid var(--button-color);
}

.fl_disable_btn {
    background: #C6C6C6;
}

/* Button [END] */

/* Footer[END] */

.footer {
    padding-top: 80px;
    background: #121c3d;
    margin-top: auto;
}

.footer_inner {
    margin-bottom: 50px;
}

.copyright_grid {
    display: grid;
    grid-template-columns: 50% 50%;
    color: var(--basic-company-text);
    opacity: 0.8;
    font-size: 12px;
    font-weight: 400;
    padding-bottom: 10px;
}

.footer_payment img {
    display: block;
}

.footer_additional_links {
    gap: 40px;
}

.footer_additional_links a {
    text-decoration-line: underline;
    color: var(--basic-company-text);
}

.footer_contact,
.footer_phones {
    gap: 16px;
    opacity: 0.8;
}

.footer_link {
    gap: 8px;
    /* text-transform: uppercase; */
    color: var(--basic-company-text);
}

.footer_menu .menu_group_list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 16px;
    margin: unset;
}

.footer_menu .menu_group_link {
    color: var(--basic-company-text);
    /* text-transform: uppercase; */
    opacity: 0.8;
}

.footer_menu {
    height: fit-content;
    margin-top: 3px;
}

/* Footer[END] */

/* News article [START] */

.article_image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    height: 260px;
}

.article_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article_annotation {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 16px;
}

.article_name {
    font-size: 18px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: 8px;
}

.article_info {
    color: #999;
    font-size: 16px;
    font-weight: 400;
}

/* News article [END] */

/* Select2 [START] */

.select_wrapper {
    width: 600px;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px #00000014;
}

.select_wrapper.impulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgb(158 128 240);
        box-shadow: 0 0 0 0 rgb(158 128 240);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

.select_wrapper .select2-results__option:first-child {
    display: none;
}

.select2-container--default .select2-selection--single {
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid #E7E7E7;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 62px;
    position: absolute;
    top: 0;
    right: 1px;
    width: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #333333 transparent transparent transparent;
    border-style: solid;
    border-width: 10px 9px 0 9px;
    height: 0;
    left: 50%;
    margin-left: -8px;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #333333 transparent;
    border-width: 0 9px 10px 9px;
}

/* Select2 [END] */

/* Variant item [START] */

.internet_variant_item {
    width: 448px;
    border-radius: 8px;
    background: var(--boxed-color);
    box-shadow: 0px 0px 10px 0px #00000014;
}

.internet_variant_item:nth-child(2) .internet_variant_name {
    background: #121c3d;
}

.internet_variant_item:last-child .internet_variant_name {
    background: #121c3d;
}

.internet_variant_body {
    margin-bottom: -28px;
    padding: 0 24px;
}

.internet_variant_name {
    padding: 19px 0;
    border-radius: 8px 8px 0px 0px;
    background: #152762;
    background-attachment: fixed;
    color: var(--basic-company-text);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    text-transform: capitalize;
}

.tv_select_wrapper {
    margin-bottom: 32px;
    width: 100%;
    margin-top: auto;
}

.tv_select_wrapper .select2-container--default .select2-selection--single {
    height: 48px;
    padding: 0 20px;
    font-size: 16px;
}

.tv_select_wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    width: 30px;
}

.tv_select_wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 7px 6px 0 6px;
    margin-left: -8px;
    margin-top: -2px;
}

.tv_select_wrapper .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 7px 6px 7px;
}

.internet_variant_ttl {
    gap: 10px;
}

.internet_variant_speed {
    font-size: 32px;
    font-weight: 400;
}

.choose_variant {
    display: flex;
    justify-content: center;
    margin: 50px 0;
    color: #333;
    font-weight: 700;
}

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

.internet_variant_bottom a {
    width: 100%;
    height: 56px;
}

.internet_variant_desc {
    width: calc(100% - 60px);
}

.active_variant_desc {
    width: 100%;
    margin: 20px 0;
}

.active_variant_desc_inner:first-child {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #D1D1D1;
}

.active_variant_ttl {
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

.active_variant_price {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.active_variant_currency {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    margin-left: 5px;
}

.ftmb_arrow,
.hnmb_arrow {
    transform-origin: 50% 50%;
}

.ftmb_arrow {
    animation: speeding_1 5s infinite alternate;
}

.hnmb_arrow {
    animation: speeding_2 5s infinite alternate;
}

@keyframes speeding_1 {
    0% {
        transform: rotate(-125deg);
    }

    5% {
        transform: rotate(-95deg);
    }

    80% {
        transform: rotate(-20deg);
    }

    85% {
        transform: rotate(-25deg);
    }

    90% {
        transform: rotate(-20deg);
    }

    95% {
        transform: rotate(-10deg);
    }

    97% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes speeding_2 {
    0% {
        transform: rotate(-125deg);
    }

    5% {
        transform: rotate(-95deg);
    }

    80% {
        transform: rotate(-20deg);
    }

    85% {
        transform: rotate(-25deg);
    }

    90% {
        transform: rotate(-20deg);
    }

    95% {
        transform: rotate(-10deg);
    }

    97% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Variant item [END] */

/* Page [START] */

.page_description a,
.post_description a {
    text-decoration: underline;
}

.page_ttl {
    font-size: 48px;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 24px;
}

.catalog_footer_ttl {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.catalog_footer_iamge {
    width: calc(100% - 760px);
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.catalog_footer_iamge img,
.subcategory_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog_footer_description {
    width: 720px;
}

.last_post_date {
    display: flex;
    color: #999;
    gap: 6px;
    margin-top: 4px;
    font-size: 14px;
}

.blog_banner {
    margin-top: 30px;
    width: fit-content;
    border-radius: 8px;
    overflow: hidden;
}

.page_description ul li,
.page_description ol li {
    line-height: 150%;
    padding: 8px;
}

/* Page [END] */

/* Breadcrumbs [START] */

.breadcrumbs {
    padding: 36px 0;
    margin: unset;
    letter-spacing: 0.32px;
    color: #999;
}

.breadcrumbs .breadcrumbs__item+.breadcrumbs__item:before {
    margin: 0 8px;
    content: "";
    width: 24px;
    height: 24px;
    background: url(../images/tech/breadcrumb.svg) center;
}

/* Breadcrumbs [END] */

/* Advantages [START] */

.advantages_slider {
    margin: 80px -25px 60px;
}

.advantages_slider .slick-list {
    display: block;


}

.advantages_item {
    width: calc(100% - 50px);
    margin: 0 auto;
    gap: 16px;
    text-align: center;
    box-shadow: 0px 0px 10px 0px #00000014;
    padding: 24px;
}

.advantages_item_image {
    width: 148px;
    height: 148px;
    margin: 0 auto;
    background: var(--boxed-color);
    border: 3px solid transparent;
    border-radius: 50%;
    background-image: linear-gradient(white, white), linear-gradient(to right, #121c3d, #121c3d);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.advantages_item_image img {
    width: 72px;
    height: 72px;
}

.advantages_item_name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    width: 80%;
    margin: 0 auto;
}

.advantages_item_desc {
    line-height: 1.5;
}

/* Advantages [END] */

/* Block [START] */

.fl_main_ttl {
    font-size: 48px;
    font-weight: 900;
}

.main_block_gradient .fl_main_ttl {
    color: #fff;
}

.with_container {
    padding: 100px 0;
}

.grey_block {
    background-color: var(--bg);
}

.white_block {
    background-color: #fff;
}

/* Block [END] */

/* POPUP [START] */

.popup {
    padding: 30px !important;
    border-radius: 4px;
    box-shadow: inset 0 0 6px #0000004d;
    max-width: 500px !important;
    width: 100%;
    text-align: center !important;
}

.popup_bg {
    color: #fff !important;
    background: linear-gradient(to right, #00b4db, #0083b0) !important;
}

.popup__heading {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    user-select: none;
    padding: 0;
    color: #222;
    background: #fff;
    overflow: hidden;
    z-index: 2;
    text-align: center;
    margin: 20px auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.popup__heading svg {
    width: 28px;
    height: 28px;
    color: #0b982f;
    margin-right: 15px;
}

.popup__heading .form__header {
    margin-bottom: 30px;
}

.popup__description {
    margin-bottom: 10px;
    color: #222;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.popup__sent {
    color: #222;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.popup_confirm__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.popup_confirm__title svg {
    width: 22px;
    width: 22px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.popup_animated {
    max-width: 550px;
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(-80px);
    transition: all .5s;
}

.popup_animated .form__header,
.popup_animated .form__footer,
.popup_animated .form__body {
    transform: translateY(-40px);
    opacity: 0;

    transition-property: transform, opacity;
    transition-duration: .3s;
}

.fancybox-slide--current .popup_animated,
.fancybox-slide--current .popup_animated .form__footer,
.fancybox-slide--current .popup_animated .form__header,
.fancybox-slide--current .popup_animated .form__body {
    transform: translateY(0);
    opacity: 1;
    transition-duration: .3s;
}

.fancybox-slide--current .popup_animated .form__header {
    transition-delay: .1s;
}

.fancybox-slide--current .popup_animated .form__body {
    transition-delay: .2s;
}

.fancybox-slide--current .popup_animated .form__footer {
    transition-delay: .4s;
}

.form__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

div#fast_order_product_name {
    font-size: 20px;
    font-style: italic;
    color: #999;
    font-weight: 500;
}

.form__input,
.form__textarea {
    font-family: Montserrat;
    border-radius: 8px;
    border: 1px solid #E7E7E7;
    background: #F6F6F6;
    height: 48px;
    width: 100%;
    padding: 0 20px;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #BABABA;
}

.form__textarea {
    padding: 14px 20px;
    height: unset;
}

.form__placeholder {
    display: flex;
    font-weight: 400;
    margin-bottom: 12px;
}

.form__footer {
    margin-top: 40px;
}

label.error {
    display: flex;
    margin-top: 10px;
    color: red;
}

.message_error {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    background: #FE6469;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

/* POPUP [START] */

.callback_form_body {
    gap: 40px;
}

.callback_form_body .form__group {
    min-width: 480px;
}

.callback_form_body .select2-container--default .select2-selection--single,
.callback_form_body .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.callback_form_wrapper .fl_btn {
    width: 312px;
    height: 56px;
    max-width: 100%;
}

.callback_form_wrapper .select2-container--default .select2-selection--single {
    padding: 0 20px;
    font-size: 16px;
}

.page_wrapper {
    margin-bottom: 100px;
}

.callback_form_wrapper {
    padding: 64px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
}

/* PAGINATION [START] */

.products_pagination {
    margin-top: 60px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: unset;
    margin: unset;
    list-style: none;
    gap: 16px;
}

.pagination__item {
    border-radius: 8px;
    border: 1px solid #000;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.pagination__item.active {
    background: #00A349;
    border-color: #00A349;
    color: #fff;
}

.pagination__item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PAGINATION [END] */

.contact_page_block {
    margin-top: 24px;
    gap: 24px;
    display: grid;
    grid-template-columns: auto 340px 340px;
}

.contact_item {
    height: fit-content;
    box-shadow: 0px 0px 10px 0px #00000014;
    padding: 24px;
    row-gap: 16px;
    column-gap: 40px;
}

.contact_ttl {
    font-weight: 700;
    width: 100%;
}

.contact_item_inner {
    gap: 12px;
}

.contact_item_list {
    gap: 16px;
}

.speedtest_description {
    width: calc(100% - 500px);
    gap: 11px;
}

.speedtest_image {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 350px;
}

.speedtest_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DOCUMENTS [START] */

.documents_panel {
    margin: 60px 0;
}

.document_item {
    border: 1px solid #E7E7E7;
    background: #FFF;
    padding: 21px 24px;
    width: 358px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.document_items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
    column-gap: 32px;
}

.document_items .document_item {
    padding: 0;
    width: 100%;
}

.document_items .document_item a {
    border: none;
    border-radius: 0;
}

.document_items .document_item:last-child,
.document_items .document_item:first-child {
    border-radius: 0;
}

.document_item:first-child {
    border-radius: 8px 0px 0px 8px;
}

.document_item:last-child {
    border-radius: 0 8px 8px 0;
}

.active_document_item {
    background: var(--new-color, linear-gradient(83deg, #596DD3 0.12%, #A541C8 99.82%));
    color: #fff;
}

.document_item_image {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #DBDBDB;
    overflow: hidden;
    transition: unset;
}

.document_item_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.documents_wrapper,
.fn_tv_list {
    width: 100%;
}

.documents_wrapper {
    display: none;
}

.documents_wrapper.active_document {
    display: flex;
}

/* DOCUMENTS [END] */

/* TELEVISION [START] */

.tv_list_footer {
    border-radius: 8px;
    background: #fff;
    padding: 24px;
    font-size: 24px;
    margin: 65px 0 100px;
    text-align: center;
    line-height: 1.5;
}

.page_block_btn {
    margin: 65px 0 100px;
}

.tv_items_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.tv_items_list .internet_variant_item {
    width: 100%;
}

.tv_ttl {
    margin: 24px 0;
    font-size: 24px;
    font-weight: 700;
}

.tv_image {
    position: relative;
    margin-top: 70px;
    width: 200px;
    height: 200px;
}

.tv_image span {
    position: absolute;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
}

.tv_variant_body {
    padding: 0 24px;
}

.tv_variant_ttl {
    margin-bottom: 26px;
    font-size: 24px;
}

.tv_variant_desc {
    margin-bottom: 53px;
    font-size: 48px;
    font-weight: 700;
}

.tv_variant_desc span:last-child {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

/* TELEVISION [END] */

/* PAYMENT [START] */

.payment_item {
    max-width: 340px;
    width: 100%;
    padding: 24px 24px 0;
    box-shadow: 0px 0px 10px 0px #00000014;
    border-radius: 8px;
    background: #FFF;
    gap: 24px;
}

.payment_header {
    gap: 80px;
    margin-bottom: 126px;
}

.payment_variant_bottom {
    width: calc(100% - 56px);
    margin-bottom: -27px;
    margin-top: auto;
}

.payment_variant_bottom a {
    width: 100%;
    height: 54px;
}

.payments_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 48px;
    margin-bottom: 126px;
}

.payment_name {
    font-size: 24px;
    font-weight: 700;
}

.payment_name+.fn_anchor {
    text-decoration: underline;
}

.payments_data_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 100px;
}

.payment_data_item {
    padding: 40px 24px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
}

.instruction_item {
    gap: 16px;
}

.instruction_image {
    width: 100%;
    height: 310px;
    border-radius: 8px;
    overflow: hidden;
}

.instruction_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PAYMENT [END] */

.menu_categories {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    column-gap: 40px;
    row-gap: 20px;
    list-style: disc;
    color: black;
    padding-left: 20px;
    width: max-content;
}

.header_menu .menu_group_list--2 {
    overflow: auto;
    max-height: calc(100vh - 600px);
    min-height: 300px;
    align-items: flex-start;
}

.header_menu .menu_group_list--2::-webkit-scrollbar-button,
.categories_nav.categories_nav--show::-webkit-scrollbar-button {
    display: none;
}

.header_menu .menu_group_list--2::-webkit-scrollbar-track,
.categories_nav.categories_nav--show::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 0;
}

.header_menu .menu_group_list--2::-webkit-scrollbar,
.categories_nav.categories_nav--show::-webkit-scrollbar {
    background-color: #ffffff26;
    width: 14px;
}

.header_menu .menu_group_list--2::-webkit-scrollbar-thumb,
.categories_nav.categories_nav--show::-webkit-scrollbar-thumb {
    background-color: #7C7C7C;
    width: 3px;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 9999px;
}

.callback_form_body>.error {
    width: 100%;
}

.catalog_footer_description li {
    padding: 8px;
    line-height: 150%;
}

.catalog_annotation li {
    padding: 8px;
    line-height: 150%;
}

.contact_image {
    width: 80px;
    height: 80px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.contact_item_list {
    justify-content: center;
}

.payment_header li {
    padding: 8px;
    line-height: 150%;
}

/* 404 [START] */
.not_found {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.not_found__image svg path {
    fill: var(--basic-company);
}

.not_found__description {
    text-align: center;
    margin-bottom: 40px;
}

.not_found_ttl {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

/* 404 [END] */

.footer_phones {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.footer_phones .footer_link:not(:first-child) {
    padding-left: 32px;
}

.dropdown_btn {
    padding: 8px 0px;
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 17px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    padding: 15px;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
    overflow: auto;
    z-index: 10;
}

.dropdown.active {
    display: flex;
}

.header_phones {
    gap: 16px;
}

.header_bottom_inner .fl_btn {
    margin: unset;
}

.footer_ttl {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.subcategory_header {
    width: 100%;
    margin-bottom: 50px;
}