html,
body {
    margin: 0;
    padding: 0;
    font-family: pfhighway, sans-serif;
}

* {
    box-sizing: border-box;
}

.page_wrapper {
    width: 100%;
}

.container {
    padding: 73px 0;
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

@media (max-width: 1130px) {
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 999px) {
    .container {
        padding: 50px 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 35px 15px;
    }
}

.flex {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.flex.wrap {
    flex-flow: wrap;
}

.flex.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.flex.column .button {
    align-self: center;
}

.flex .flex_item.w33-50 {
    width: calc((100% - 100px) / 3);
}

.flex .flex_item.w30 {
    width: 30%;
}

.flex .flex_item.w50 {
    width: 50%;
}

.flex .flex_item.w70 {
    width: 70%;
}

.flex .flex_item.pr {
    padding-right: 15px;
}

.flex .flex_item.pl {
    padding-left: 15px;
}

.button {
    color: #333333;
    text-decoration: none;
    line-height: 52px;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    font-family: pragmatica, sans-serif;
    font-size: 15px;
    align-self: flex-start;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 999px) {
    .button {
        line-height: 40px;
        font-size: 13px;
        padding-left: 15px;
        padding-right: 15px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
}

.button.button_yellow {
    border: 1px solid #fbd833;
    background: #fbd833;
}

.button.button_yellow:hover {
    background: #fbcf12;
    border: 1px solid #fbcf12;
    
}
 /* .button_blue */   
 /*border: 1px solid #1e87cc;*/
 
/* 

.button.button_blue {
   
    background: rgba(30, 135, 204, 0.09);
    color: #1e87cc;
}

.button.button_blue:hover {
    color: #1e87cc;
    background: rgba(30, 135, 204, 0.14);

}

*/
/*border: 1px solid #1e87cc;*/
 /* .button.button_blue:hover */  
 
.button.button_blue {
    background: rgba(30, 135, 204, 0.14); /* Постоянный цвет как при наведении */
    color: #1e87cc;
    border: 1px solid #1e87cc; /* Добавлена граница */
}

.button.button_blue:hover {
    background: rgba(30, 135, 204, 0.19); /* Усиление прозрачности при ховере */
    color: #1e87cc;
}
.button.button_grey {
    border: 1px solid #f1f1f1;
    background: transparent;
    color: #333333;
}

.button.button_grey:hover {
    color: #333333;
    background: rgba(241, 241, 241, 0.72);
    border: 1px solid #f1f1f1;
}

.button.button_white {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    align-self: center;
}

.button.button_white:hover {
    background: rgba(255, 255, 255, 0.19);
    color: #fff;
}

.button.button_black {
    background: rgba(51, 51, 51, 0.12);
    color: #333;
    align-self: center;
}

.button.button_black:hover {
    background: rgba(51, 51, 51, 0.19);
    color: #333333;
}
.button.sm {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 30px;
    align-self: center;
    background-color: #388594;
    border-radius: 20px;
    border: 1px solid #388594;
    color: #ffffff;
}

    /*.button:hover {
    background: #0098e0;
}*/

.heading_block {
    margin-bottom: 50px;
}
.heading_block.border_bottom {
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

@media (max-width: 999px) {
    .heading_block {
        margin-bottom: 20px;
    }
}

.grey_bg {
    background-color: #f6f6f6;
}

ol, ul {
    margin: 0;
    padding: 0;
}

ol li, ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.white{
    color: #fff;
}

.yellow{
    color:#fbd833;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: pfhighway, sans-serif;
    font-weight: 600;
    margin: 0;
    color: #333333;
    font-size: 25px;
}

h1.medium, h2.medium, h3.medium, h4.medium, h5.medium, h6.medium,
.h1.medium, .h2.medium, .h3.medium, .h4.medium, .h5.medium, .h6.medium {
    font-weight: 500;
}

h1.normal, h2.normal, h3.normal, h4.normal, h5.normal, h6.normal,
.h1.normal, .h2.normal, .h3.normal, .h4.normal, .h5.normal, .h6.normal {
    font-weight: 400;
}

h1 {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -.3px;
    margin-bottom: 3px;
}

@media (max-width: 999px) {
    h1 {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 0px;
    }
}
@media (max-width: 550px) {
    h1 {
        font-size: 25px;
        line-height: 20px;
        margin-bottom: 12px;
    }
}

h2 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

p {
    font-family: pragmatica, sans-serif;
    margin: 0;
    /*color: #657382;*/
    color: black;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -.3px;
}

@media (max-width: 768px) {
    p {
        font-size: 15px;
        line-height: 18px;
    }
}

a {
    font-family: pragmatica, sans-serif;
    margin: 0;
    color: #1e87cc;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -.3px;
}

ul li {
    font-family: pragmatica, sans-serif;
    position: relative;
    margin-bottom: 0px;
    list-style: none;
    font-size: 15px;
    margin-right: 24px;
    color: #657382;
}

@media (max-width: 768px) {
    ul li {
        font-size: 15px;
        margin-bottom: 8px;
    }
}

ul.list-plus li, ul.list-minus li {
    padding-left: 24px;
    margin-right: 0;
    position: relative;
}

ul.list-plus li:before, ul.list-minus li:before {
    content: "+";
    display: block;
    width: 20px;
    height: 13px;
    line-height: 13px;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    font-weight: bold;
    color: #388594;
}

ul.list-minus li:before {
    content: "—";
    color: #772277;
}

.header {
    background: #f6f6f6;
    box-shadow: 0 10px 16px -6px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.header .container {
    padding: 10px 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media (max-width: 1130px) {
    .header .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-flow: wrap;
    }
}

.header .container .logo {
    color: #444;
    text-decoration: none;
    font-family: 'pfhighway', sans-serif;
    font-weight: bold;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .header .container .logo {
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

.header .container .phone {
    padding: 6px 0;
}

@media (max-width: 768px) {
    .header .container .phone {
        -webkit-box-ordinal-group: 3;
        order: 2;
    }
}

.header .container .phone .number {
    font-family: 'pragmatica', sans-serif;
    color: #b81d64;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
    display: block;
    text-decoration: none;
}

@media (max-width: 768px) {
    .header .container .phone .number {
        font-size: 16px;
    }
}

.header .container .phone .text {
    font-family: 'pragmatica', sans-serif;
    color: #657382;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header .container .phone .text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .nav_holder {
        -webkit-box-ordinal-group: 4;
        order: 3;
        width: calc(100% + 30px);
        background: #fff;
        margin-left: -15px;
        margin-right: -15px;
        max-width: calc(100% + 30px);
        min-width: calc(100% + 30px);
        float: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-overflow-scrolling: touch;
        height: 40px;
        overflow: hidden;
    }
}

.nav_holder ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .nav_holder ul {
        display: block;
        float: none;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        width: auto;
        overflow: hidden;
        overflow-x: scroll;
        box-sizing: content-box;
        white-space: nowrap;
        height: 42px;
        padding-bottom: 20px;
    }
}

.nav_holder ul li {
    margin: 0 12px;
}

@media (max-width: 768px) {
    .nav_holder ul li {
        width: auto !important;
        display: inline-block;
    }
}

.nav_holder ul li a {
    outline: 0;
    color: #657382;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: 'pragmatica', sans-serif;
    line-height: 50px;
    display: block;
    position: relative;
    font-size: 11px;
}

@media (max-width: 768px) {
    .nav_holder ul li a {
        line-height: 40px;
    }
}

.nav_holder ul li a:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    background: #657382;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.nav_holder ul li a:hover {
    color: #333333;
}

.nav_holder ul li a:hover:after {
    width: 100%;
}
/*
.back_svg {
    background-image: url("../img/bg_winter_ny.svg, background.gif ");
    background-position: center bottom;
}*/
.back_svg {
    background-image: url("../img/background_2.png");
    background-position: center bottom;
    background-repeat: no-repeat;
}
@media (max-width: 550px) {
    .section_1 .back_svg {
        background: none
    }
}

.section_1 .text_block {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column;
}

@media (max-width: 768px) {
    .section_1 .text_block {
        width: 70% !important;
    }
}

@media (max-width: 550px) {
    .section_1 .text_block {
        width: 80% !important;
    }
}

.section_1 .text_block .heading {
    color: #333333;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section_1 .text_block .heading {
        font-size: 22px;
        line-height: 24px;
    }
}

.section_1 .text_block .under_heading_text {
    word-wrap: break-word;
    margin-bottom: 20px;
}
.section_1 .man_bg{
    /*background: url(../img/fonlogo.svg) 100% bottom no-repeat;*/
    background-size: auto 90%;
}

@media (max-width: 990px) {
    .section_1 .man_bg{
        background-position: 90% bottom;
    }
}
@media (max-width: 768px) {
    .section_1 .man_bg{
        background-position: 100% bottom;
    }
}
@media (max-width: 670px) {
    .section_1 .man_bg{
        background-position: 120% bottom;
    }
}
@media (max-width: 600px) {
    .section_1 .man_bg{
        background-position: 130% bottom;
    }
}
@media (max-width: 550px) {
    .section_1 .man_bg{
        background-position: 90% bottom;
    }
}


.section_2 .container {
    padding-bottom: 0;
}

.section_2 .block_blue {
    background: #4c8e84;/*#75645b;*/
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    transition:0.3s;
}

.section_2 .block_blue:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
    transform: translateY(-4px);
}

.section_2 .block_blue p {
    font-size: 15px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .section_2 .block_blue {
        flex-flow: wrap;
    }
}

.section_2 .block_blue .w70 {
    padding: 47px 15px 47px 35px;
}

@media (max-width: 768px) {
    .section_2 .block_blue .w70 {
        padding: 24px 24px 24px 24px;
        width: 100%;
    }
}

.section_2 .block_blue .w30 {
    padding: 47px 35px 47px 15px;
    position: relative;
}

@media (max-width: 768px) {
    .section_2 .block_blue .w30 {
        padding: 24px 24px 24px 24px;
        width: 100%;
    }
}

.section_2 .block_blue .w30:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
}

@media (max-width: 768px) {
    .section_2 .block_blue .w30:after {
        width: 100%;
        height: 1px;
    }
}

.section_2 .block_blue .bottom {
    margin-top: 35px;
}

@media (max-width: 768px) {
    .section_2 .block_blue .bottom {
        margin-top: 40px;
        flex-flow: wrap;
    }
}

.section_2 .block_blue .bottom h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.section_2 .block_blue .bottom .flex_item {
    width: 46%;
}

@media (max-width: 768px) {
    .section_2 .block_blue .bottom .flex_item {
        width: 100%;
    }
}

.section_2 .block_blue .right_part .button {
    margin-top: 30px;
    margin-bottom: 30px;
}

.section_2 #tarifs {
    margin-top: 40px;
    flex-flow: wrap;
    font-size: 0;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media (max-width: 999px) {
    .section_2 #tarifs {
        margin-top: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-flow: column;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
    }
}

.section_2 #tarifs .plan {
    width: 47%;
    box-shadow: 0 0 9.6px 0.4px rgba(153, 153, 153, 0.2);
    border: 1px solid #dddfe0;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 999px) {
    .section_2 #tarifs .plan {
        width: 420px;
    }

    .section_2 #tarifs .plan:first-child {
        margin-bottom: 40px;
    }
}

@media (max-width: 450px) {
    .section_2 #tarifs .plan {
        width: 100%;
    }
}

.section_2 #tarifs .plan .line {
    padding: 15px;
    font-size: 0;
    background: #F7F7F6;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
}

.section_2 #tarifs .plan .line:nth-child(odd) {
    background: #fff;
}

.section_2 #tarifs .plan .line h3 {
    margin: 0;
    width: 100%;
    font-size: 15px;
}

.section_2 #tarifs .plan .line h5 {
    width: 50%;
    font-size: 15px;
    line-height: 18px;
}
.section_2 #tarifs .plan .line h5.w100 {
    width: 100%;
}

.section_2 #tarifs .plan .line p {
    float: right;
    width: 50%;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 18px;
}



/* ===== Секция 3 - Общие стили ===== */
.section_3 .flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.section_3 .flex_item {
    position: relative;
    padding: 0;
}

.section_3 .hover {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section_3 .bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

/* ===== Мобильная версия (адаптация под iPhone) ===== */
@media (max-width: 991px) {
    .section_3 .flex {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 15px;
    }

    .section_3 .flex_item {
        padding: 15px 0 !important;
        border-bottom: 1px solid #eee;
    }

    .section_3 .hover {
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        padding: 20px;
        margin: 0;
        border: 1px solid #f5f5f5;
    }

    .section_3 .flex_item:last-child {
        border-bottom: 0;
        padding-bottom: 0 !important;
    }

    /* Оптимизация текста для мобильных */
    .section_3 .hover h1 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .section_3 .hover p {
        font-size: 15px;
        line-height: 1.5;
        color: #657382;
    }

    .section_3 .price {
        font-size: 20px;
        font-weight: 600;
        color: #333;
    }

    .section_3 .button {
        font-size: 15px;
        padding: 12px 20px;
        line-height: 1.4;
    }

    /* Адаптация для узких экранов */
    @media (max-width: 400px) {
        .section_3 .bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .section_3 .price {
            font-size: 18px;
        }
    }
}

/* Фикс для iOS */
@supports (-webkit-touch-callout: none) {
    .section_3 .hover {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.section_4 .flex_item {
    margin-top: 25px;
    margin-bottom: 25px;
}

.section_4 .flex_item.inner {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
}

@media (max-width: 768px) {
    .section_4 .flex_item.inner {
        width: 48%;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 550px) {
    .section_4 .flex_item.inner {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
.section_4_v2 .flex_item .icons{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}
.section_4_v2 .flex_item .icons h2{
    margin-bottom: 0;
}
.section_4_v2 .flex_item .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    border-radius: 30%;
    color:#fff;
    background-color: #1e87cc;
    margin-right: 20px;
}
.section_4_v2 .flex_item.w100-3{
    width: calc(100% / 3);
    position: relative;
    z-index: 1;
}
.section_4_v2 .flex_item.w100-3:after{
    content: "";
    display: block;
    position: absolute;
    right:0;
    bottom:5%;
    height:90%;
    width: 1px;
    background: #f1f1f1;
    z-index: 20;
}
.section_4_v2 .flex_item.w100-3:before{
    content: "";
    display: block;
    position: absolute;
    right:5%;
    bottom:0;
    width:90%;
    height: 1px;
    background: #f1f1f1;
    z-index: 20;
}
/*.section_4_v2 .flex_item.w100-3:hover{
    z-index: 10;
}
.section_4_v2 .flex_item.w100-3:hover:after,
.section_4_v2 .flex_item.w100-3:hover:before{
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    background: #fff;
    z-index: 5;
}*/
.section_4_v2 .flex_item .inner {
    padding:20px;
    border-radius:8px;
    box-shadow: unset;
    transition: 0.3s;
    height: 100%;
    background: #fff;
    width: 100%;
    position: relative;
    z-index: 10;
    display: block;
    text-decoration: none;
}
/*.section_4_v2 .flex_item .inner:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
}*/
.section_4_v2 .flex_item:nth-child(3n):after{
    background: #fff;
}
.section_4_v2 .flex_item:nth-last-child(1):before,
.section_4_v2 .flex_item:nth-last-child(2):before,
.section_4_v2 .flex_item:nth-last-child(3):before{
    background: #fff;
}

@media (max-width: 1024px) {
    /*.section_4_v2 .flex_item .inner:hover {
        box-shadow: unset;
    }*/
    .section_4_v2 .flex_item.w100-3{
        width: calc(100% / 2);
        position: relative;
        z-index: 1;
    }
    /*.section_4_v2 .flex_item.w100-3:hover:after{
        height:90%;
        width: 1px;
        background: #f1f1f1;
        z-index: 20;
    }
    .section_4_v2 .flex_item.w100-3:hover:before{
        width:90%;
        height: 1px;
        background: #f1f1f1;
        z-index: 20;
    }*/
    .section_4_v2 .flex_item:nth-last-child(3):before{
        background: #f1f1f1;
    }
    .section_4_v2 .flex_item:nth-child(3n):after{
        background: #f1f1f1;
    }
    .section_4_v2 .flex_item:nth-child(2n):after{
        background: #fff;
    }
    /*.section_4_v2 .flex_item.w100-3:hover:after{
        height:90%;
        width: 1px;
        background: #f1f1f1;
        z-index: 20;
    }
    .section_4_v2 .flex_item.w100-3:nth-last-child(1):hover:after,
    .section_4_v2 .flex_item.w100-3:nth-last-child(1):hover:before,
    .section_4_v2 .flex_item.w100-3:nth-last-child(2):hover:after,
    .section_4_v2 .flex_item.w100-3:nth-last-child(2):hover:before{
        background: #fff;
    }*/
}
@media (max-width: 550px) {
    .section_4_v2 .flex_item .inner{
        padding-left: 0;
        padding-right: 0;
    }
    .section_4_v2 .flex_item.w100-3{
        width: 100%;
    }
    .section_4_v2 .flex_item:nth-last-child(1):before, .section_4_v2 .flex_item:nth-last-child(2):before, .section_4_v2 .flex_item:nth-last-child(3):before,
    .section_4_v2 .flex_item:before{
        background: #f1f1f1;
    }
    .section_4_v2 .flex_item:nth-last-child(3):before{
        background: #f1f1f1;
    }
    .section_4_v2 .flex_item:nth-child(3n):after{
        background: #fff;
    }
    .section_4_v2 .flex_item.w100-3:after,
    .section_4_v2 .flex_item:after{
        background: #fff;
    }
    .section_4_v2 .flex_item:nth-last-child(1):before{
        background: #fff;
    }
}
@media (max-width: 768px) {
    .section_5 .flex {
        flex-flow: wrap;
    }
}
@media (max-width: 768px) {
    .section_5 .flex {
        flex-flow: wrap;
    }
}

.section_5 .flex_item.w50 {
    padding-right: 20px;
    position: relative;
    padding-bottom:94px;
}

@media (max-width: 768px) {
    .section_5 .flex_item.w50 {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
        padding-bottom:0px;
    }
}

.section_5 .bottom {
    margin-top: 30px;
    position: absolute;
    bottom:0;
    left:0;
}
@media (max-width: 768px) {
    .section_5 .bottom {
        position: static;
    }
}

.section_5 .bottom .line {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.section_5 .bottom .line .price {
    font-size: 44px;
    line-height: 1;
    font-family: 'pragmatica', sans-serif;
    color: #333333;
    /*font-weight: 600;*/
    margin-right: 20px;
}

@media (max-width: 999px) {
    .section_5 .bottom .line .price {
        font-size: 30px;
    }
}

.section_5 .bottom .line .big {
    font-size: 16px;
    line-height: 1.3;
}

@media (max-width: 999px) {
    .section_5 .bottom .line .big {
        font-size: 16px;
    }
}

.section_6 .container {
    padding-top: 0;
}

.section_6 .grey_bg {
    padding: 47px 35px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .section_6 .grey_bg {
        padding: 24px 20px;
    }
}

.section_6 .grey_bg .tags_line span {
    display: inline-block;
    padding: 10px;
    line-height: 1;
    border: 1px solid #dddddd;
    /*background: #ffffff;*/
    border-radius: 20px;
    margin: 0 7px 7px 0;
    color:#333333;
    font-size: 14px;
    font-family: pragmatica;
}
@media (max-width: 991px){
    .section_7 .tabs_content {
        height: 200px;
        overflow: hidden;
        width: calc(100% + 30px);
        margin-left: -15px;
    }

}
.section_7 .tabs ul li {
    display: inline-block;
    margin-right: 12px;
}
@media (max-width: 420px){
    .section_7 .tabs_ul {
        height: 32px;
        overflow: hidden;
        width: calc(100% + 30px);
        margin-left: -15px;
    }
    .section_7 .tabs_ul ul{
        display: block;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        width: auto;
        overflow: hidden;
        overflow-x: scroll;
        box-sizing: content-box;
        white-space: nowrap;
        padding-bottom: 30px;
        height: 30px;
    }
    .section_7 .tabs ul li{
        margin-left: 15px;
        margin-right: 15px;
        display: inline-block;
        vertical-align: top;
        width: auto !important;
    }
}

.section_7 .tabs ul li a {
    display: inline-block;
    color: #1e87cc;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    font-size: 15px;
    padding-right: 10px;
    padding-left: 10px;
    line-height: 30px;
    /*background: rgba(30, 135, 204, 0.09);*/
    border-radius: 8px;
    border: 0.5px solid #1e87cc;
}
.section_7 .tabs ul li.open a,
.section_7 .tabs ul li a:hover {
    color: #1e87cc;
    background: rgba(30, 135, 204, 0.14);
}

/*.section_7 .tabs ul li a:after {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    border: 0.5px solid #1e87cc;
    height: 0;
    opacity: 0;
}

.section_7 .tabs ul li.open a:after {
    width: 100%;
    opacity: 1;
}
*/
.section_7 .tabs .tabs_content .tab {
    display: block;
    padding-top: 30px;
    padding-bottom: 10px;
}

.section_7 .tabs .tabs_content .tab .image_row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: wrap;
}
.section_7 .tabs .tabs_content .tab .image_row .w25{
    width: 25%;
    flex-flow: wrap;
}
.section_7 .tabs .tabs_content .tab .img_holder {
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    width: 175px;
    height: 140px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    /*border: 1px solid #f1f1f1;*/
    margin-bottom: 45px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    transition:0.3s;
}

.section_7 .tabs .tabs_content .tab .img_holder:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
    transform: translateY(-4px);
}
@media (max-width: 999px) {
    .section_7 .tabs .tabs_content .tab .image_row .w25{
        width: 33%;
    }
}
@media (max-width: 620px) {
    .section_7 .tabs .tabs_content .tab .image_row .w25{
        width: 50%;
    }
}
@media (max-width: 768px) {
    .section_7 .tabs .tabs_content .tab .img_holder{
        margin-right:20px;
    }
}
@media (max-width: 991px) {
    .section_7 .tabs .tabs_content .tabs_content{
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        min-width: 100%;
        float: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
    }
    .section_7 .tabs .tabs_content .tab{
        display: block;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        width: auto;
        overflow: hidden;
        overflow-x: scroll;
        box-sizing: content-box;
        white-space: nowrap;
        padding-bottom: 30px;
        height: 160px;
    }
    .section_7 .tabs .tabs_content .tab .image_row{
        display: inline-block;
        align-items: unset;
        -webkit-box-pack: inherit;
        justify-content: unset;
        vertical-align: top;
        width: auto !important;
    }
    .section_7 .tabs .tabs_content .tab .w25{
        margin-left:0;
        margin-right:20px;
        display: inline-block;
        vertical-align: top;
        width: auto !important;
    }
    .section_7 .tabs .tabs_content .tab .w25:first-child{
        margin-left: 15px;
    }
    .section_7 .tabs .tabs_content .tab .img_holder,
    .section_7 .tabs .tabs_content .tab .img_holder:hover {
        box-shadow: unset;
        transform: translateY(0);
    }

    .section_2 .block_blue,
    .section_2 .block_blue:hover {
        box-shadow: unset;
        transform: translateY(0);
    }
}
/*
.section_7 .tabs .tabs_content .tab .img_holder:nth-child(1), .section_7 .tabs .tabs_content .tab .img_holder:nth-child(5n) {
    margin-left: 0;
}

.section_7 .tabs .tabs_content .tab .img_holder:nth-child(4n) {
    margin-right: 0;
}

.section_7 .tabs .tabs_content .tab .img_holder:last-child {
    margin-right: 0;
}

 */
.section_7 .tabs .tabs_content .tab .img_holder .center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.section_7 .tabs .tabs_content .tab .img_holder .center img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.section_7 .tabs .tabs_content .tab .img_holder.without_padding_vertical {
    background: none;
    padding: 0;
    overflow: hidden;
}

.section_7 .tabs .tabs_content .tab .img_holder.without_padding_vertical .center img {
    min-height: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.section_7 .tabs .tabs_content .tab .img_holder.without_padding_horisontal {
    background: none;
    padding: 0;
    overflow: hidden;
}

.section_7 .tabs .tabs_content .tab .img_holder.without_padding_horisontal .center img {
    min-width: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}


.section_8 .accordion {
    border: 1px solid #EFF0F2;
    border-radius: 8px;
}

.section_8 .accordion .question {
    border-bottom: 1px solid #EFF0F2;
}
.section_8 .accordion .question:last-child{
    border-bottom:0px;
}
.section_8 .accordion .question .head {
    position: relative;
    padding: 15px 35px 15px 15px;
    cursor: pointer;
}

.section_8 .accordion .question .head h2 {
    margin-bottom: 0;
    font-size: 24px;
}

.section_8 .accordion .question .head:after, .section_8 .accordion .question .head:focus:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-left: 1px solid #1e87cc;
    border-bottom: 1px solid #1e87cc;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: -3px;
}

.section_8 .accordion .question .answer {
    border-top: 1px solid #EFF0F2;
    padding: 15px 30px 15px 15px;
}

.section_8 .accordion .question.open .head:after, .section_8 .accordion .question.open .head:focus:after {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
}



.section_partners .partners{
    justify-content: flex-start;
    flex-flow: wrap;
}
.section_partners .partners .partner{
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    width: 22%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    overflow: hidden;
    margin: 0 1.5% 36px;
    transition: 0.3s;
    transform: translateY(0);
    position: relative;
}
.section_partners .partners .partner .bottom_wrap{
    padding-bottom: 60px;
    height: 215px;
    border:1px solid #fff;
    border-radius: 0 0 8px 8px;
}
.section_partners .partners .partner:hover{
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
    transform: translateY(-4px);
}
@media (max-width: 991px){
    .section_partners .partners .partner{
        width: 270px;
        margin-left: 1%;
        margin-right: 1%;
        box-shadow: unset;
    }
    .section_partners .partners .partner:hover{
        box-shadow: unset;
        transform: translateY(0);
    }
    .section_partners .partners .partner .bottom_wrap{
        border:1px solid #f1f1f1;
        border-top:none;
    }
    .section_partners .partners .partner .bottom_wrap{
        height: 230px;
    }
    .section_partners .partners_wrap{
        display: block;
        width: calc(100% + 30px);
        background: #fff;
        max-width: calc(100% + 30px);
        min-width: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-overflow-scrolling: touch;
        margin-left: -15px;
        height: 460px;
        overflow: hidden;
    }
    .section_partners .partners{
        display: block;
        float: none;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        width: auto;
        overflow: hidden;
        overflow-x: scroll;
        box-sizing: content-box;
        white-space: nowrap;
        height: 460px;
    }
    .section_partners .partners .partner{
        margin-left: 15px;
        margin-right:0;
        display: inline-block;
        margin-bottom: 0;
        vertical-align: top;
        height: 420px;
        border-radius: 8px;
        width: 220px;
    }
    .section_partners .partners .partner:last-child{
        margin-right: 15px;
    }
}

@media (max-width: 640px){
    .section_partners .partners_wrap .partners {
        padding-top:20px;
    }
}
@media (max-width: 500px){
    .section_partners .partners .partner{
        margin-left: 15px;
        margin-right:0;
        display: inline-block;
        margin-bottom: 0;
        vertical-align: top;
        height: 420px;
        border-radius: 8px;
    }
}
.section_partners .partners .partner a.link{
    position: absolute;
    top:0;
    left:0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.section_partners .partners .partner a.button.button_grey{
    position: absolute;
    bottom:25px;
    left:50%;
    transform: translateX(-50%);
    display: block;
    z-index: 6;
    line-height: 35px;
}

.section_partners .partners .partner .top{
    flex-flow: column;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:25px;
    height: 190px;
    white-space: normal;
    border-radius:8px 8px 0 0;
}
.section_partners .partners .partner .top.default{
    background-color: #e8e8e8 ;
}
.section_partners .partners .partner .top .logo_holder{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    height: 70px;
}
.section_partners .partners .partner .top .logo_holder img{
    max-width: 100px;
    max-height: 100px;
    height:auto;
    width: auto;
}
.section_partners .partners .partner .top h4{
    font-size:20px;
    line-height: 1.5;
    color:#fff;
    text-decoration: none;
}
.section_partners .partners .partner .top.default h4{
    color:#333333;
}
.section_partners .partners .partner .top p{
    font-size:14px;
    line-height: 20px;
    color:#fff;
    text-decoration: none;
    text-align: center;
}
.section_partners .partners .partner .top.default p{
    color:#657382;
}
.section_partners .partners .partner .bottom{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding:25px;
    text-align: center;
    white-space: normal;
}
.section_partners .partners .partner .bottom .head{
    font-weight: 600;
    font-size: 21px;
    font-family: pfhighway, sans-serif;
    line-height: 1.2;
    letter-spacing: -.3px;
}
.section_partners .partners .partner .bottom .head_bottom{
    font-weight: 400;
    font-size: 15px;
    font-family: pragmatica, sans-serif;
    color: #657382;
    line-height: 20px;
    margin: 6px;
}
.section_partners .partners .partner .bottom .button{
    align-self:center;
    margin-top: 15px;
    line-height: 35px;
    padding-left: 15px;
    padding-right: 15px;
}
.section .box-shadow{
    background-color: #f1f1f1;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    border-radius: 8px;
    padding: 47px 35px;
    transition: 0.3s;
}
.section .box-shadow:hover{
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .section .box-shadow {
        padding: 24px 24px 24px 24px;
        width: 100%;
        border: 1px solid #f1f1f1;
    }
}
@media (max-width: 991px) {
    .section .box-shadow,
    .section .box-shadow:hover {
        box-shadow: unset;
        transform: translateY(0);
    }
}
.section .box-shadow.back_img{
    background: url("../img/fonlogo.svg");
    background-position: 87% center;
    background-repeat: no-repeat;
    background-size: auto 80%;
    border: 1px solid #f1f1f1;
}
.section .box-shadow.flex{
    padding: 0;
}
.section .box-shadow.flex .w70 {
    padding: 47px 15px 47px 35px;
    border-radius: 8px 0 0 8px;
}
.section .box-shadow.flex .w70 h2{
    font-size: 22px;
}
.section .box-shadow.flex .w70 #tarifs{
    margin-top: 20px;
}

@media (max-width: 768px) {
    .section .box-shadow.flex{
        flex-flow: wrap;
    }
    .section .box-shadow.flex .w70 {
        padding: 24px 24px 24px 24px;
        width: 100%;
        border-radius: 8px 8px 0 0;
        border: 1px solid #f1f1f1;
    }
}

.section .box-shadow.flex .w30 {
    padding: 47px 35px 47px 15px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    border-radius:0 8px 8px 0;
}

.section .box-shadow.flex .w30 h4{
    color:#fff;
    margin-top: 20px;
    margin-bottom: 20px;
}
.section .box-shadow.flex .w30 .button{
    margin-bottom: 20px;
}

.section .box-shadow.flex .w30.default h4{
    color:#333333;
}
.section .box-shadow.flex .w30.default /*.button.button_white*/{
    color:#333333;
    border-color: #333;
}
.section .box-shadow.flex .w30.default .all{
    color:#333333;
}
.section .box-shadow.flex .w30.default .all:after {
    border-left: 1px solid #333333;
    border-bottom: 1px solid #333333;
}
@media (max-width: 768px) {
    .section .box-shadow.flex .w30 {
        padding: 24px 24px 24px 24px;
        width: 100%;
        border-radius: 0 0 8px 8px;
    }
}
.section .box-shadow ul{
    margin-top:20px;
}
.section .box-shadow ul li{
    padding-left: 25px;
    margin-bottom: 25px;
}
.section .box-shadow ul li:before{
    content: ">";
    color: #657382;
    display: block;
    width: 20px;
    height: 13px;
    line-height: 13px;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: bold;
}
.section_contact .flex_item{
   padding-right: 20px;
    width: 50%;
}
.section_contact .flex_item:last-child{
    padding-right: 0;
}
@media(max-width: 640px){
    .contact_block.flex{
        flex-flow:wrap;
    }
    .section_contact .flex_item{
        width: 100%;
        padding-right: 0;
    }
}
.section_contact .line{
    margin-bottom: 30px;
}
.section_contact a{
    text-decoration: none;
}
.section_contact a.h1{
    font-size:30px
}
.section_contact a.h2{
    font-size:25px
}
.section_contact a.h3{
    font-size:20px
}
.requisites_block a{
    color: #1e87cc;
    font-size: 15px;
}
@media(max-width: 640px){
    .requisites_block.flex{
        flex-flow:wrap;
    }
    .requisites_block .flex_item{
        width: 100%;
        margin-bottom: 15px;
    }
}

.footer {
    border-top: 1px solid #e8e8e8;
    background: #f1f1f1;
}

.footer .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (max-width: 1130px) {
    .footer .container {
        padding-top: 15px;
        padding-bottom: 70px;
    }

}
.footer .flex {
    -webkit-box-pack: start;
    justify-content: space-between;
}

@media (max-width: 990px) {
    .footer .flex {
        flex-flow: wrap;
    }
}

.footer .flex .phone {
    margin-right: 40px;
}

@media (max-width: 850px) {
    .footer .flex .phone {
        -webkit-box-ordinal-group: 3;
        order: 2;
        margin-right: 0;
        margin-left: 0 !important;
    }
}

.footer .flex .email a.number,
.footer .flex .phone a.number {
    font-size: 20px;
    font-weight: bold;
    color:#333333;
    text-align: left;
    display: block;
    text-decoration: none;
    font-family: 'pragmatica', sans-serif;
}

.footer .flex .phone {
    margin-left: auto;
}

@media (max-width: 850px) {
    .footer .flex .email {
        -webkit-box-ordinal-group: 4;
        order: 3;
        align-self: flex-end;
        margin-left: auto;
        margin-right: 0;
    }
}


.footer .flex .foolter_links{
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
}
.footer .flex .foolter_links ul{
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 850px) {
    .footer .flex .foolter_links {
        -webkit-box-ordinal-group: 2;
        order: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer .flex .foolter_links {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        float: none;
    }
    .footer .flex .foolter_links_wrap { 
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-overflow-scrolling: touch;
        height: 40px;
        overflow: hidden;
    }
    .footer .flex .foolter_links ul {
        display: block;
        float: none;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        width: auto;
        overflow: hidden;
        overflow-x: scroll;
        box-sizing: content-box;
        white-space: nowrap;
        height: 50px;
    }
    .footer .flex .foolter_links ul li a {
        line-height: 40px;
        display: block;
    }
}


.footer .flex .foolter_links li {
    display: inline-block;
    margin: 0 20px 0 0;
}

@media (max-width: 850px) {
    .footer .flex .foolter_links_wrap{
        width: calc(100% + 30px);
        margin-left: -15px;
    }
    .footer .flex .foolter_links li {
        margin: 0 0 0 15px;
    }
}
 
@media (max-width: 768px) {
    .footer .flex .foolter_links li {
        display: inline-block;
        width: auto !important;
        margin-bottom: 0;
    }
}
.footer .flex .foolter_links li a {
    color: #1e87cc;
    text-decoration: none;
}




.all {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.all:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-left: 1px solid #1e87cc;
    border-bottom: 1px solid #1e87cc;
    position: absolute;
    top: 12px;
    right: -9px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: -3px;
}

.all:hover:after {
    margin-right: -5px;
}
.more {
    text-decoration: none;
    position: relative;
}

.more:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-left: 1px solid #1e87cc;
    border-bottom: 1px solid #1e87cc;
    position: absolute;
    top: 10px;
    right: -14px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: -3px;
}

.more.open:after {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    margin-top:1px;
}
.section .box-shadow.flex .all{
    color:#fff;
}
.section .box-shadow.flex .all:after{
    top: 12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

::selection {
background: #fff7d3!important;
color: #333333!important;
}
/****************** form **************/
.form{
    background: #f1f1f1;
    padding:20px
}

.form .line{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333333;
    font-family: pragmatica;
}
.form .line:last-child{
    margin-bottom: 0;
}
.form .line input{
    width: 100%;
    height:32px;
    border:none;
    border-bottom: 1px solid #657382;
    outline: none;
    color:#657382;
    font-size: 14px;
    background: #f1f1f1;
    border-radius:0;
}
.form .line.has-error input{
    border-bottom: 1px solid #ff0000;
    color:#ff0000
}
.form .line input::placeholder{
    color:#657382;
    line-height: 1;
    transition: 0.3s;
}
.form .line input::-moz-placeholder{
    color:#657382;
    line-height: 1;
    transition: 0.3s;
}
.form .line input::-webkit-input-placeholder{
    color:#657382;
    line-height: 1;
    transition: 0.3s;
}
.form .line input:focus::placeholder{
    color:transparent;
    line-height: 320px;
}
.form .line input:focus::-moz-placeholder{
    color:transparent;
    line-height: 320px;
}
.form .line input:focus::-webkit-input-placeholder{
    color:transparent;
    line-height: 320px;
}
.form .line input[type="checkbox"]{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    display: none;
}
.form .line label{
    line-height: 1;
    height: 100%;
    display: inline-block;
    font-size: 12px;
    color: #333333;
    position: relative;
    padding-left: 30px;
    width: calc(100% - 160px);
}
@media (max-width: 991px) {
    .form .line{
        flex-direction: column;
    }
    .form .line label {
        width: 100%;
        margin-bottom: 25px;
    }
}

.form .line label a{
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
}
.form .line label:before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(30, 135, 204, 0.43);
    background: transparent;
    transition: 0.3s;
    left:0;
    top:50%;
    transform: translateY(-50%);
    position: absolute;
}
.form .line label:after{
    content: "\2713";
    display: block;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    background: rgba(30, 135, 204, 0.09);
    left:0;
    top:50%;
    transform: translateY(-50%);
    position: absolute;
    opacity: 0;
    color: #1e87cc;
    text-align: center;
    line-height: 20px;
    transition: 0.3s;
    border:1px solid rgba(30, 135, 204, 0.09);
}
.form .line input[type="checkbox"]:checked + label:after{
    opacity: 1;
}
.form .line .input_button{
    cursor: pointer;
    outline: none;
    line-height: 56px;
    height: 56px;
    color: #333333;
    border: 0;
    width: 150px;
}
@media (max-width: 991px) {
    .form .line .input_button {
        width: 100%;
        height: 36px;
        line-height: 36px;
    }
}
.form.thanks{
    display: none;
    text-align: center;
}

li {
    color: #b81d64; /* Цвет маркеров */
   }

ul.marked li{ position:relative;padding-left:13px}
ul.marked li:before{
    content:"";
    display:inline-block;
    width:6px;
    height:6px;
    border-radius:15px;
    position:absolute;
    left: 0;
    top:8px;
    background:#b81d64;
}
ul.marked li.yellow:before{
    background: #fbd833;
}

#cookie_note{
    display: none;position: fixed;z-index:100;
    bottom: 15px;left: 50%; max-width: 90%;transform: translateX(-50%);
    padding: 20px;background-color: white;
    border-radius: 4px;box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
#cookie_note p{margin: 0;font-size: 0.7rem;text-align: left;color: black;}
#cookie_note .btn-sm {display: block;margin: 0 auto;}
.cookie_accept{width:20%;}
@media (min-width: 576px){#cookie_note.show{display: flex;}}
@media (max-width: 575px){#cookie_note.show{display: none;text-align: left;}}


/* CSS переменные */
        :root {
            /* Светлая тема */
            --bg-primary: #ffffff;
            --bg-secondary: #f6f6f6;
            --text-primary: #333333;
            --text-secondary: #657382;
            --accent-primary: #1e87cc;
            --accent-secondary: #388594;
            --border-color: #e8e8e8;
            --shadow-color: rgba(0, 0, 0, 0.08);
            --button-yellow: #fbd833;
            --phone-color: #b81d64;
        }

        [data-theme="dark"] {
            /* Тёмная тема */
            --bg-primary: #1a1a1a;
            --bg-secondary: #2d2d2d;
            --text-primary: #e0e0e0;
            --text-secondary: #9e9e9e;
            --accent-primary: #4a90e2;
            --border-color: #404040;
            --shadow-color: rgba(0, 0, 0, 0.5);
            --button-yellow: #d4b52a;
            --phone-color: #d6336c;
        }

        /* Базовые стили */
        html, body {
            margin: 0;
            padding: 0;
            font-family: pfhighway, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: background-color 0.3s, color 0.3s;
        }

        * {
            box-sizing: border-box;
            transition: background-color 0.3s, border-color 0.3s;
        }

        /* Переключатель темы */
        .theme-switcher {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .theme-toggle {
            cursor: pointer;
            width: 50px;
            height: 26px;
            background: var(--bg-secondary);
            border: 2px solid var(--border-color);
            border-radius: 13px;
            position: relative;
            transition: all 0.3s;
        }

        .theme-toggle::after {
            content: '🌞';
            position: absolute;
            left: 2px;
            top: 1px;
            width: 20px;
            height: 20px;
            transition: all 0.3s;
        }

        [data-theme="dark"] .theme-toggle::after {
            content: '🌙';
            transform: translateX(24px);
        }

        /* Ваши оригинальные стили с адаптацией */
        .container {
            padding: 73px 0;
            width: 1100px;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

        .header {
            background: var(--bg-secondary);
            box-shadow: 0 10px 16px -6px var(--shadow-color);
        }

        .header .phone .number {
            color: var(--phone-color);
        }

        .button {
            color: var(--text-primary);
        }

        .button.button_yellow {
            background: var(--button-yellow);
            border-color: var(--button-yellow);
        }

        .button.button_blue {
            background: rgba(var(--accent-primary), 0.09);
            color: var(--accent-primary);
        }

        /* Добавьте остальные ваши стили здесь */
        /* ... */

        @media (max-width: 768px) {
            .theme-switcher {
                bottom: 10px;
                right: 10px;
            }
            
            .theme-toggle {
                width: 45px;
                height: 24px;
            }
            
            .theme-toggle::after {
                width: 18px;
                height: 18px;
            }
            
            [data-theme="dark"] .theme-toggle::after {
                transform: translateX(21px);
            }
        }
