:root {
    --bg: #ffffff;
    --text: #000000;
}

html[data-theme="light"] {
    --bg: #ffffff;
    --bg2: #000000;
    --bg3: #292929;
}
html[data-theme="dark"] {
    --bg: #111111;
    --bg2: #ffffff;
}
body {
    margin: 0;
    vertical-align: baseline;
    height: 100%;
    overflow-x: hidden;
    width: 100vw;
}
h1{
    font-weight: normal;
}
h2{
    font-weight: normal;
}
h3{
    font-weight: normal;
}
::-webkit-scrollbar {
    width: 0.5vw;
    height: 0.8vh;
    opacity: 50%;
}
::-webkit-scrollbar-track {
}
::-webkit-scrollbar-thumb {
    background: rgb(182, 182, 182);
    border-radius: 1vw;
    height: 5vh;
}
::-webkit-scrollbar-thumb:hover {
    background: #818181;
    transition-duration: 0.3s;
}
@font-face {
    font-family: "Work Sans";
    src: url('fonts/WorkSans-Medium.ttf');
}
@font-face {
    font-family: "WorkSans Bold";
    src: url('fonts/WorkSans-Bold.ttf');
}
@font-face {
    font-family: "Montserrat Bold";
    src: url('fonts/Montserrat-Bold.ttf');
}
@font-face {
    font-family: "Montserrat Medium";
    src: url('fonts/Montserrat-Medium.ttf');
}
@font-face {
    font-family: "Montserrat Regular";
    src: url('fonts/Montserrat-Regular.ttf');
}
@font-face {
    font-family: "Montserrat Semibold";
    src: url('fonts/Montserrat-SemiBold.ttf');
}
a{
    text-decoration: none; !important;
}
.main_page{
    width: 100%;
    min-height:calc(100% - 250px);
    display: block;
    margin-top: 140px;
    z-index: 2;

}

.bottom_menu{
    width: fit-content;
    height: 50px;
    display: flex;
    text-decoration: none;

}
.bottom_menu a{
    text-decoration: none;
    color: black;
}
.bottom_menu a div{
    min-width: 165px;
    height: 50px;
    background: none;
    text-align: center;
    padding-right: 10px;
    padding-left: 10px;
    transition-duration: 0.1s;
}
.bottom_menu a div:hover{
    background: #42a741;
    text-decoration: none;
    color: white;
    transition-duration: 0.1s;
}
.bottom_menu a div p{
    margin: 0;
    padding-top: 15px;
    text-decoration: none;
}
.bottom_menu:hover p{
    text-decoration: none;
}
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.menu {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.menu_top{
    position: relative;
    display: flex;
    text-align: center;
    flex-wrap: nowrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-content: space-around;
    height: 90px;
    background: white;
    z-index: 1;
}

.menu_bottom {
    position: relative;
    display: flex;
    text-align: center;
    width: 100%;
    align-content: center;
    height: 50px;
    background: #ffffff;
    justify-content: space-evenly;
    z-index: 2;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
    font-family: "Montserrat Semibold";
    font-size: 15px;
    text-decoration: none;

}

/* Зсув меню догори */
.sticky-header.hide-top {
    transform: translateY(-90px);
}
.image_logo, .img_logo{
    margin-left:20px;
    height: 80px;
    margin-top: 2px;
}
.top_menu_phone_number{
    text-decoration: none;
    color: #fc8c1a;
    background: white;
    font-size: 30px;
    font-family: "Montserrat Bold";
    margin-left: 100px;
    height: 100%;
    align-content: center;

}
.top_menu_phone_number p{
    font-size: 30px;
    font-family: "Montserrat Bold";
    margin-bottom: auto;
    margin-top: auto;
    display: block;
    position: relative;
    transition-duration: 0.2s;
    margin-right: 15px;
    margin-left: 15px;
}
.top_menu_phone_number:hover{
    color: #ffffff;
    background: #fc8c1a;
    text-decoration: none;
    transition-duration: 0.2s;
}
.header_cabinet{
    display: inline-flex;
    font-family: "Montserrat Bold";
    color: black;
    font-size: 18px;
    text-decoration: none;
    align-content: center;
    margin-right: 30px;
    fill: black;
}
.header_cabinet:hover{
    color: #fc8c1a;
    fill: #fc8c1a;
    text-decoration: none;
}
.img_icon{
    width: 30px;

}
.header_cabinet p, .header_payment p{
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 15px;
}
.header_payment{
    display: inline-flex;
    font-family: "Montserrat Bold";
    color: black;
    font-size: 18px;
    text-decoration: none;
    margin-left: auto;
    margin-right: 30px;
    fill: black;
}
.header_payment_icon path{
    fill: #000000;
}
.header_payment:hover{
    color: #fc8c1a;
    text-decoration: none;
}
.header_payment:hover path{
    fill: #fc8c1a;
}
.carousel_container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: auto;
    user-select: none;
    height: 600px;
    margin-bottom: 50px;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease;
    cursor: grab;
    width: 100%;
    height: 100%;
}

.carousel_item {
    flex: 0 0 100%;
    text-align: center;
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
}
.carousel_item_img_container{
    overflow: hidden;
    position: relative;
    height: 80%;
    margin-top: auto;
    margin-bottom: auto;
    width: 50%;
}
.carousel_item_img{
    pointer-events: none;
    user-drag: none;
    user-select: none;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.carousel_item_text_container{
    max-width: 30%;
    height: 70%;
    margin-top: auto;
    margin-bottom: auto;
    font-family: "Montserrat Semibold";
    margin-right: 150px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
    align-items: center;

}
.carousel_item_text_container p{
    width: 75%;
    text-align: justify;
    margin-right: auto;
    margin-left: auto;
}
.carousel_item_text_container button{
    font-family: "Montserrat Bold";
    width: 75%;
    height: 50px;
    background: #fc8c1a;
    border: none;
    border-radius: 20px;
    color: #000000;
    font-size: 18px;
    transition-duration: 0.1s;
}
.carousel_item_text_container button:hover {
    color: white;
    background: #42a741;
    cursor: pointer;
    transition-duration: 0.1s;
}
.arrow {
    position: absolute;
    top: 50%;
    height: 100%;
    width: 5%;
    transform: translateY(-50%);
    z-index: 1;
    border: none;
    cursor: pointer;
    padding: 10px;
    background: none;
    font-size: 35px;
    color: black;
    transition-duration: 0.2s;
}
.arrow:hover{
    color: #42a741;
    font-size: 55px;
    cursor: pointer;
    transition-duration: 0.2s;
}
.arrow.left {
    left: 0;
}

.arrow.right {
    right: 0;
}

.order_form_container {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.order_form_exit {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10000;
}


.order_form_exit button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 30px;
    transition-duration: 0.2s;
}
.order_form_exit button:hover {
    color: #fc8c1a;
    transition-duration: 0.2s;

}
.order_form {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    font-family: "Montserrat Bold";
    font-size: 14px;
}

.order_form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "Montserrat Bold";
    font-size: 14px;
}

.form_row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.form_row_3{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}
.form_row_3 label{
    flex: 1 0 auto;
    font-weight: bold;


}
.form_row_3 input{
    flex: 1 0 auto;
    width: 50px;
    font-family: "Montserrat Bold";
    font-size: 13px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.form_row label {
    flex: 0 0 200px;
}

.form_row input,
.form_row select,
.form_row textarea {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: "Montserrat Semibold";
    font-size: 13px;
}
.order_form select {
    background-color: #ffffff;
    color: black;
}

.order_form select option {
    background-color: #ffffff;
    color: black;
}
.order_form select option:checked {
    background-color: #fc8c1a;
}

.order_form select option:hover {
    background-color: #42a741;
}


.form_row textarea {
    resize: vertical;
    min-height: 80px;
}

.captcha_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha_wrapper img {
    max-height: 40px;
}

.order_form button[type="submit"] {
    background-color: #1976d2;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}
.payment{
    width: 100%;
    min-height: 100vh;
    margin-top: 190px;
    z-index: 2;
}
.payment p{
    text-align: justify;
}
.payment h1{
    margin-bottom: 20px;
}
.payment_container{
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Montserrat Semibold";

}
.payment_method{
    display: flex;
    flex-direction: column;
    width: 300px;
    height: fit-content;
    align-items: center;
    margin-top: 25px;
}
.payment_method_img_container{
    overflow: hidden;
    position: relative;
    height: 250px;
    width: 250px;
    padding: 15px;
    align-items: center;
    justify-content: center;
    display: flex;
    border: 1px solid #9a9999;
    background: rgba(0, 0, 0, 0);
    border-radius: 50px;
}
.payment_method_img_container:hover{
    background: rgba(0, 0, 0, 0.04);
}
.payment_method_img_container img{
    pointer-events: none;
    user-drag: none;
    user-select: none;
    width: 90%;
    object-fit: contain;
}
.payment_method_text{
    width: 250px;
    height: 250px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.payment_button{
    font-family: "Montserrat Bold";
    width: 200px;
    background: #fc8c1a;
    border: none;
    border-radius: 20px;
    color: #000000;
    font-size: 18px;
    transition-duration: 0.1s;
    padding: 10px 20px 10px 20px;
    display: block;
    text-align: center;
    align-items: center;

}
.payment_button:hover {
    color: white;
    background: #42a741;
    cursor: pointer;
    transition-duration: 0.1s;
}
.payment_method_commission_orange {
    border: 1px solid #fc8c1a;
    border-radius: 100px;
    padding: 0 5px;
    margin-top: 0;
    margin-bottom: auto;
    color: #fc8c1a;
    font-size: 11px;
    width: fit-content;
}
.payment_method_text h2{
    margin-bottom: 0;
}
.payment_method_commission_green{
    border: 1px solid #42a741;
    border-radius: 100px;
    padding: 0 5px;
    margin-top: 0;
    margin-bottom: auto;
    color: #42a741;
    font-size: 10px;
    width: fit-content;
}
.payment_method_container{
    display: flex;
}
.tariffs{
    width: 100%;
    z-index: 2;
    margin-bottom: 0;
    box-shadow: rgba(255, 255, 255, 0) inset 0 0 10000px 1000px;
    padding-top: 10px;
    padding-bottom: 30px;
}
.tariffs p{
    text-align: justify;
}
.tariffs h1{
    margin-bottom: 20px;
}
.tariffs_container{
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-family: "Montserrat Semibold";
    display: flex;
    flex: 0 0 1;

}
.tariff{
    display: flex;
    flex-direction: column;
    width: 300px;
    height: fit-content;
    align-items: center;
    margin-top: 25px;
    margin-left: 30px;
    margin-right: 30px;
    padding-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.47) 0 0 2px;
    border-radius: 20px;
    transition-duration: 0.2s;
}
.tariff:hover{
    box-shadow: rgba(0, 0, 0, 0.47) 2px 2px 5px 2px;
    transition-duration: 0.2s;
}
.tariff_img_container{
    overflow: hidden;
    position: relative;
    height: 380px;
    width: 300px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0);
}
.tariff_img_container h2{
    height: 80px;
    font-size: 35px;
    align-content: center;
    margin: 0;
}
.tariff_tv_img_container{
    overflow: hidden;
    position: relative;
    height: 220px;
    width: 300px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    background: rgba(0, 0, 0, 0);
    margin-bottom: 5px;
}
.tariff_tv_img_container h2{
    height: 80px;
    position: absolute;
    font-size: 27px;
    top: 5px;
    align-content: center;
    margin: 0;
    color: white;
}
.tariff_tv_img_container img{
    pointer-events: none;
    user-drag: none;
    user-select: none;
    height: 300px;
    object-fit: cover;
}
.tariff_img_container img{
    pointer-events: none;
    user-drag: none;
    user-select: none;
    height: 300px;
    object-fit: cover;
}
.tariff_text_container{
    width: 250px;
    height: 250px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
}
.tariff_button{
    font-family: "Montserrat Bold", serif;
    width: 210px;
    background: #42a741;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition-duration: 0.1s;
    padding: 10px 20px 10px 20px;
    display: block;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
}
.tariff_button:hover {
    color: #ffffff;
    background: #2f792f;
    cursor: pointer;
    transition-duration: 0.1s;
}
.tariff_text_container h2{
    margin-bottom: 0;
}
.tariff_container{
    display: flex;
}


.tariff_city_choice input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.tariff_city_choice {
    display: flex;
    width: fit-content;
    align-items: center;
    border: #42a741 solid 3px;
    border-radius: 5px;
    margin-left: 15%;
}

.tariff_city_choice label {
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 30px;
    font-size: 18px;
    font-family: "Montserrat Bold";
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.25, 0.5, 1.9);
}

.tariff_city_choice input:checked + label {
    background: #42a741;
    color: #ffffff;
}
.tariffs h1{
    font-size: 35px;
    font-family: "Montserrat Semibold";
    margin-left: 15%;
    margin-bottom: 25px;
}
.price{
    height: 75px;
}
.price_container p{
    margin-bottom: 0;
}
.price_container_business p{
    margin-bottom: 0;
}
.price_container h2{
    font-size: 35px;
    margin-top: 7px;
}
.price_container_business h2{
    font-size: 25px;
    margin-top: 7px;
}
.price_container{
    display: flex;
    align-items: baseline;
    height: min-content;
}
.price_container_business{
    display: flex;
    align-items: baseline;
    height: min-content;
}
.price_tv{
    color: white;
    position: absolute;
    left: 20px;
    bottom: 20px;
}
.price_tv_container p{
    margin-bottom: 0;
    width: max-content;
    position: relative;
}
.price_tv_container h2{
    font-size: 40px;
    height: min-content;
    margin-top: 7px;
    position: relative;
}
.price_tv_container{
    display: flex;
    align-items: flex-end;
    height: min-content;
    position: relative;
    width: max-content;

}
.price_note{
    margin-top: 0;
    margin-bottom: 0;
    color: #fc1a1a;
    font-size: 14px;
}
#tariffs_nizhyn{
    display: flex;
    flex-direction: column;

}

.tariffs_addition{
    width: 1200px;
    text-align: justify;
    margin: 10px auto 0 auto;
    font-family: "Montserrat Medium";
    font-size: 16px;
}
.tariffs_addition_first{
    margin: 50px auto 0 auto;!important;
}
.tariff_note{
    margin-top: 0;
    margin-bottom: auto;
    display: block;
    padding: 5px 25px;
    width: 250px;
    height: 50px;
    align-content: center;
    font-size: 13px;
    background: #ffffff;
    position: relative;
    left: -25px;
    border-top: #42a741 2px solid;
    border-bottom: #42a741 2px solid;
}
.tariff_area_note{
    margin-top: 0;
    margin-left: auto;
    overflow: hidden;
    flex: 1;
    align-self: stretch;
    font-size: 12px;
    padding-top: 5px;

}
.tariffs p.tariff_area_note{
    text-align: justify;
    text-align: right;!important;
}
.tariff_connection_type{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;

}
.tariff_connection_type p{
    font-size: 12px;
    margin: 0;
}
.tariff_connection_type_xgspon{
    background: #488ddc;
    color: white;
    border-radius: 5px;
    padding: 3px 15px;
    margin: 0;

}
.tariff_connection_type_gpon{
    background: white;
    color: #42a741;
    border: 2px solid #42a741;
    border-radius: 5px;
    padding: 3px 15px;
    margin: 0;

}
.tariff_connection_type_fftb{
    background: #d27c19;
    color: white;
    border-radius: 5px;
    padding: 3px 15px;
    margin: 0;

}
.tariff_reserv{
    font-size: 12px;
    margin-top: 5px;
}
.tariff_text_container ul{
    align-content: center;
    padding: 0;
    font-size: 15px;
    font-family: "Montserrat Semibold";
}
.tariff_text_container li{
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    margin-bottom: 7px;
    height: min-content;
}
.tariff_text_container li p{
    margin: 0;
}
.tariff_text_container li:before {
    content: "✔";
    padding-right: 5px;
}
.marquee{
    display: flex;
    width: 100%;
}
.marquee a{
    width: 100%;
}
.marquee button{
    background: none;
    color: #ffffff;
    position: absolute;
    right: 5px;
    font-size: 15px;
    align-content: center;
    align-items: center;
    border: none;
    padding: 0;
    cursor: pointer;
    transition-duration: 0.2s;
}
.marquee button:hover{
    color: #343434;
    transition-duration: 0.2s;
}

marquee{
    background-color: #ffcccc;
    width: 100%;
    height: 40px;
    font-family: "Montserrat Semibold";
    font-size: 30px;
    color: red;
}
.contacts {
    max-width: 1280px;
    margin: 40px auto;
    padding: 20px;
    font-family: "Montserrat Regular";
}

.contacts_general {
    border-radius: 10px;
    padding: 20px 0;
    margin-bottom: 0;
}
.contacts_container svg{
    width: 35px;
    height: 35px;
    padding: 8px;
    border: solid 2px #42a741;
    border-radius: 14px;
    margin-right: 15px;
}
.contacts_container div{
    display: flex;
    width: 35%;
    align-items: center;
}
.contacts_container{
    display: flex;
    align-items: center;
    width: 100%;
}
.contacts_container div.contacts_social_networks{
    width: 30%;
    display: flex;
    flex-direction: column;
}
.contacts_social_networks p{
    font-size: 25px;
}
.social_networks svg{
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    margin: 0 10px;
    border-radius: 0;
    fill: black;
    transition-duration: 0.2s;
    cursor: pointer;
}
.social_networks svg:hover{
    fill: #42a741;

}
.contacts_container div.social_networks{
    display: flex;
    width: max-content;
    justify-content: space-between;
}
.contacts_general h1 {
    font-size: 35px;
    font-family: "Montserrat Semibold";
    margin-bottom: 0;
}

.contacts_general a {
    margin: 5px 0;
    font-size: 25px;
    cursor: pointer;
    transition-duration: 0.2s;
    text-decoration: none;
    color: black;
}
.contacts_general a:hover {
    color: #42a741;
}

.contacts_selector {
    display: flex;
    gap: 15px;
    justify-content: left;
    margin-bottom: 20px;
}

.contacts_button {
    background-color: #ffffff;
    color: #42a741;
    border: solid 2px #42a741;
    padding: 10px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 18px;
    font-family: "Montserrat Regular";
}

.contacts_button:hover {
    background-color: #42a741;
    color: white;
    transform: scale(1.05);
}

.contacts_button.active {
    background-color: #42a741;
    color: white;
}

.contacts_office {
    display: none;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: opacity 0.3s ease-in-out;
    width: max-content;
}

.contacts_office.active {
    display: block;
}

.contacts_office h2 {
    margin-top: 0;
    color: #42a741;
    font-weight: 600;
}

.contacts_map {
    width: 1150px;
    height: 500px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
}
.tariffs_alert{
    width: 70%;
    background-color: #ffeae2;
    color: #ff5900;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.33) 0 0 3px 0;
    font-family: "Montserrat Medium";
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    margin-top: 150px;
}
.tariffs_alert_date{
    margin-left: auto;
    width: max-content;
}
.tariffs_alert h2{
    margin-top: 0;
}
.tariffs_alert button{
    border: none;
    background: none;
    color: #ff5900;
    font-size: 20px;
    cursor: pointer;
    margin: 0 0 0 auto;
    transition-duration: 0.2s;
    display: block;
}
.tariffs_alert button:hover{
    color: #883001;
    transform: scale(1.05);
}
.business_tariff_img_container{

}
.business_tariff_img_container{
    overflow: hidden;
    position: relative;
    height: 380px;
    width: 300px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0);
}
.business_tariff_img_container h2 {
    height: 80px;
    font-size: 27px;
    align-content: center;
    margin: 0;
}
.business_tariff_img_container img{
    pointer-events: none;
    user-drag: none;
    user-select: none;
    height: 300px;
    object-fit: cover;
}
.business_tariff_additions{
    font-size: 12px;
    margin-top: 0px;
    margin-bottom: 3px;
}
.business_tariff_text_container{
    height: 300px;

}
.price_business{
    height: 55px;
}
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;

}
.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    padding: 20px 50px;
    width: 100%;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome */
}
.carousel-item {

    user-select: none;
    text-align: center;
}
.arrow-left, .arrow-right {
    color: #ffffff;
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
    height: 600px;
    width: 50px;
    position: absolute;
}
.arrow-right {
    right: 0;
}
.carousel-track {
    cursor: grab;
}
.carousel-track.dragging {
    cursor: grabbing;
}

.price_static{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
}
.price_business_2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 35px;
    margin-bottom: 5px;
}
.price_static_pcs{
    font-size: 23px;
    position: relative;
    top: 5px;
    margin: 0;
}
.mbps_speed{
    font-size: 18px;
    position: relative;
    top: 7px;
    margin: 0;
}
.tariff_static_note{
    background-color: #0f0f2d;
    padding: 20px 25px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    color: white;
    font-size: 15px;
    width: 250px;
    position: relative;
    left: -25px;
    bottom: -20px;
    margin-top: auto;
    margin-bottom: 0;
}
.tariff_note_business{
    height: 35px;
    margin-top: 5px;
}
.order_business_container{
    min-width: 1100px;
    display: flex;
    flex-direction: row;
    font-family: "Montserrat Semibold";
    font-size: 18px;
    padding: 0 0 0 0;
    width: 100%;
}
.order_business{
    text-decoration: none;
    display: flex;
    margin-top: 10px;
    color: black;
    padding: 5px 20px;
    width: 500px;
    border-radius: 20px;
    align-items: center;
    transition-duration: 0.2s;
}
.order_pdf{
    border: 2px solid #ff6666;
    color: #ff6666;
    margin-left: auto;
    margin-right: 25px;
}
.order_pdf:hover{
    color: white;
    background: #ff6666;
}
.order_docx{
    border: 2px solid #6fb2ff;
    color:#6fb2ff ;
    margin-right: auto;
    margin-left: 25px;
}
.order_docx:hover{
    color: white;
    background: #6fb2ff;
}
.img_pgf,.img_docx{
    height: 30px;
    margin-left: auto;
}
footer{
    min-height: 120px;
    height: max-content;
    background: #363636;
    margin-top: 50px;
    color: white;
    font-family: "Montserrat Semibold";
    padding: 20px 50px;

}
.social_networks_footer svg{
    fill: white;
}
.footer_container{
    display: flex;
    width: 100%;
    justify-content: space-between;

}
.copyright{
    margin: 15px 0 0 40px;
    display: block;
}
.footer_menu{
    color: white;
    text-decoration: none;
    display: flex;
    width: 500px;
    margin-top: 20px;
    margin-left: 70px;
}
.footer_menu a{
    color: white;
    transition-duration: 0.2s;
    margin: 5px 15px;
    height: min-content;
}
.footer_menu p{
    margin: 0;
}
.footer_menu a:hover{
    color: #42a741;

}
.footer_menu div{
    width: 250px;
    display: flex;
    flex-direction: column;

}
.contacts_footer{
    margin-left: 50px;
    width: 300px;
}
.footer_contacts_container svg{
    width: 35px; !important;
    height: 35px;!important;
    padding: 8px;
    border: solid 2px #42a741;
    border-radius: 14px;
    margin-right: 15px;
    fill: #42a741;
}
.footer_contacts_container div{
    display: flex;
    align-items: center;
    width: max-content;
    margin-top: 10px;
}
.footer_contacts_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    margin-right: 50px;
}
.footer_contacts_container a{
    color: white;
}
.about{
    width: max-content;
    min-width: 84%;
    margin-left: auto;
    margin-right: auto;
}
.about_container{
    max-width: 1200px;
    width: 60%;
    margin-right: auto;
    margin-top: 50px;
}
.about_container h1{
    font-family: "Montserrat Semibold", serif;
    font-size: 35px;
}
.about_container h2{
    font-family: "Montserrat Semibold", serif;
    font-size: 29px;

}
.about_container h3{
    font-family: "Montserrat Medium", serif;
    font-size: 21px;

}
.about_container p{
    font-family: "Montserrat Medium", serif;
    text-align: justify;
}
.about_container ul{
    font-family: "Montserrat Medium", serif;
    text-align: justify;
}
.about_container a{
    text-decoration: none;
    color: #276b25;
    font-family: "Montserrat Medium", serif;
    cursor: pointer;
    transition-duration: 0.1s;
}
.about_container a:hover{
    color: #fc8c1a;
}

.theme_change_container{
    position: absolute;
    right: 10px;
    top: 10px;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 0;
    transition: background 0.2s linear;
}
.checkbox {
    opacity: 0;
    position: absolute;
}

.checkbox-label {
    background-color: var(--bg);
    width: 40px;
    height: 14px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: black 0 0 3px 0 inset;
}

.fa-moon {color: #f1c40f;}

.fa-sun {color: #f39c12;}

.checkbox-label .ball {
    background-color: var(--bg);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
    box-shadow: var(--bg2) 0 0 2px 0 inset;
}

.checkbox:checked + .checkbox-label .ball {
    transform: translateX(25px);
}
.about_menu{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 17%;
    min-width: 250px;
    height: 500px;
    padding-left: 30px;
    padding-right: 30px;
    justify-content: center;
    margin-top: 0;
    margin-bottom: auto;

}

.about_menu_button{
    width: 200px;
    background-color: white;
    font-family: "Montserrat Semibold", sans-serif;
    font-size: 20px;
    cursor: pointer;
    transition-duration: 0.2s;
    border: none;
    height: 40px;
    margin: 5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.about_menu_button_arrow_body {
    background-color: white;
    height: 100%;
    width: 85%;
    justify-content: center;
    align-content: center;
    transition-duration: 0.1s;
}
.about_menu_button_arrow_head {
    width: 0;
    height: 0;
    border-top: 20px solid;
    border-bottom: 20px solid;
    border-left: 30px solid;
    transition-duration: 0.1s;
    border-left-color: white;
    border-top-color: transparent;
    border-bottom-color: transparent;
}
.about_menu_button:hover .about_menu_button_arrow_body {
    background-color: #42a741;
    color: white;
}

.about_menu_button:hover .about_menu_button_arrow_head {
    border-left-color: #42a741;
    color: white;
}
.about_menu_button_active span{
    background-color: #42a741;
    color: white;
    border-left-color: #42a741;
    border-top-color: white;
    border-bottom-color: white;
    transition-duration: 0s;
}
.about{
    display: flex;
    align-items: center;
}
html{
    height: 100vh;
}
.about_coverage{
}


