@font-face {
    font-family: helvetica;
    /* Гарнитура шрифта */
    src: url(fonts/HelveticaNeueCyr-Bold.otf);
    /* Путь к файлу со шрифтом */
}

@font-face {
    font-family: helveticaR;
    /* Гарнитура шрифта */
    src: url(fonts/HelveticaNeueCyr-Roman.ttf);
    /* Путь к файлу со шрифтом */
}

@font-face {
    font-family: Comfortaa;
    /* Гарнитура шрифта */
    src: url(fonts/Comfortaa-Regular.ttf);
    /* Путь к файлу со шрифтом */
}

@font-face {
    font-family: Montserrat;
    /* Гарнитура шрифта */
    src: url(fonts/Montserrat.ttf);
    /* Путь к файлу со шрифтом */
}

@font-face {
    font-family: SegoeSymbol;
    /* Гарнитура шрифта */
    src: url(fonts/SegoeUISymbol.ttf);
    /* Путь к файлу со шрифтом */
}

@font-face {
    font-family: SegoeBold;
    /* Гарнитура шрифта */
    src: url(fonts/SegoeUIBlack.ttf);
    /* Путь к файлу со шрифтом */
}


/*.red-dot::before {
    content: "";
    z-index: 10;
    position: absolute;
    left: 0px;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background-color: #ff0082;
}*/

.red-dot::after {
    content: "";
    z-index: 9;
    position: absolute;
    left: 0px;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background-color: #ff0082;
    animation-name: red-dot-blinking;
    animation-iteration-count: infinite;
    animation-duration: 1.5s;
}

.red-dot_small::after {
    content: "";
    z-index: 9;
    position: absolute;
    left: -8px;
    top: calc(50% - 4px);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: #ff0082;
    animation-name: red-dot-blinking;
    animation-iteration-count: infinite;
    animation-duration: 1.5s;
}

@keyframes red-dot-blinking {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.8);
    }
    100% {
        transform: scale(1);
    }
}

.menu-icon {
    position: relative;
    /* top: 100px; */
    display: inline-block;
    width: 30px;
    height: 10px;
    cursor: pointer;
    /* margin: 0 auto; */
    /* float: none; */
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-icon>span {
    position: absolute;
    /* top: 50%; */
    display: block;
    width: 100%;
    height: 3px;
    /* margin-top: -0.5em; */
    background-color: #ffffff;
    border-radius: 3px;
}

.menu-icon>span:before,
.menu-icon>span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-icon>span:before {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.menu-icon>span:after {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}


/* OPENED */

.menu-icon.open {
    -webkit-transform: rotate(45deg) translateX(-2px);
    -ms-transform: rotate(45deg) translateX(-2px);
    transform: rotate(45deg) translateX(-2px);
}

.menu-icon.open>span:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.menu-icon.open>span:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

#index_menu {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Varela Round', sans-serif;
}

#index_menu ul {
    margin: 0;
    padding: 0;
}

#index_menu ul li {
    list-style: none;
    display: inline-block;
    font-size: 26px;
    font-family: 'Varela Round', sans-serif;
    line-height: 50px;
    border-radius: 50px;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
}

#index_menu ul li ul {
    display: none;
    font-size: 14px;
    padding: 6px;
}

#index_menu li {
    float: left;
    list-style: none;
    background: none;
    letter-spacing: 0.02em;
    padding: 0;
}

#index_menu a.root-item,
#index_menu a.root-item-selected {
    display: block;
    color: #fff;
    padding: 9px 15px 10px 15px;
    text-decoration: none;
}

#index_menu li:hover a.root-item i,
#index_menu li:hover a.root-item-selected i {
    background: url(../img/sprite.png) -190px -25px;
    width: 9px;
    height: 6px;
    display: block;
    position: relative;
    top: 5px;
    z-index: 1000;
    margin: 0 auto;
}

#index_menu a.root-item-selected {
    background: url('../img/bg_hover_top_menu.png') repeat-x;
    color: #fff;
}

#index_menu li ul {
    position: absolute;
    max-width: 380px;
    font-size: 6px;
    top: auto;
    /* display: none; */
    z-index: 500;
    height: auto;
    background: #fff;
    border: 1px solid #dadada;
    padding: 15px 0 17px 0;
    border-radius: 0 0 5px 5px;
    top: 55px;
}

#index_menu li:hover ul,
#index_menu li.jshover ul {
    display: block;
}

#index_menu li li {
    padding: 0 14px;
    display: block;
    line-height: 24px;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}

#index_menu li li a {
    font-size: 14px;
    padding: 0 24px 1px 15px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    white-space: normal;
}

#index_menu li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

#index_menu li li b {
    display: none;
}

#index_menu li li::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 6px;
    width: 6px;
    background: #ffffff;
    border: 4px solid #11a2d8;
    border-radius: 50px;
    -webkit-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s;
}

#index_menu li li:hover {
    background-color: rgba(0, 69, 173, 0.1);
}

#index_menu li li:hover:before {
    background: #096fa3;
}

#index_menu li li a:hover b,
#index_menu li ul li.item-selected a b {
    display: block;
    background: url(../img/sprite.png) -246px -6px no-repeat;
}

#index_menu li:hover li a {
    background: none;
    padding: 0 15px 1px 15px;
}

#index_menu li ul a {
    color: #000;
    text-decoration: none;
}


/*#index_menu  li ul a:hover,#index_menu  li ul li.item-selected a{color:#fff;background-color:#128997;}*/

#index_menu li ul li {
    text-align: left;
}

.page_title {
    padding: 20px 0;
    display: table;
    margin: 0 auto;
    font-size: 26px;
    text-align: center;
}

#catalog-section-list td.logo {
    width: 4px;
    height: 0px;
    /*background-color: #096fa3;*/
    border-radius: 50px;
}

#catalog-section-list td.name::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 6px;
    width: 6px;
    background: #ffffff;
    border: 4px solid #11a2d8;
    border-radius: 50px;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -webkit-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s;
}

#catalog-section-list td.name {
    padding: 10px 20px;
    white-space: nowrap;
    font-size: 22px;
    border-radius: 50px;
    -webkit-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s;
}

#catalog-section-list td.name a {
    white-space: normal;
    padding-left: 10px;
    font-size: 22px;
    line-height: 1em;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s;
}

#catalog-section-list td.name:hover {
    background-color: rgba(0, 69, 173, 0.1);
}

#catalog-section-list td.name:hover:before {
    background: #096fa3;
}

.content A {
    color: #444444;
    /* Цвет ссылок */
    text-decoration: none;
}

.content A:visited {
    color: #444444;
    /* Цвет посещенных ссылок */
}

.content A:active {
    color: #444444;
    /* Цвет активных ссылок */
}

.content table {
    display: inline-block;
    vertical-align: top;
}

.content img {
    max-width: 100% !important;
    height: auto !important;
}

.video {
    min-width: 960px;
}

body {
    font-family: helvetica;
    background-color: #f5f5f5;
    margin: 0;
    /*background: #48c5a5;*/
    /*background: -webkit-radial-gradient(top, #48c5a5, #360C32);
    background: -moz-radial-gradient(top, #48c5a5, #360C32);
    background: radial-gradient(to bottom, #48c5a5, #360C32);
    /*background-image: url(img/back.jpg);*/
    /*background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;*/
    opacity: 0;
    -webkit-transition: ease 2s;
    -o-transition: ease 2s;
    transition: ease 2s;
}

.header {
    background-color: rgb(80, 80, 80);
    z-index: 99;
    /*background: -webkit-radial-gradient(top, #48c5a5, #360C32);
    background: -moz-radial-gradient(top, #48c5a5, #360C32);
    background: radial-gradient(to bottom, #48c5a5, #360C32);
    /*background-image: url(img/back.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    width: 100%;
    /*height: 70px;*/
    min-width: 240px;
    position: fixed;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header-info {
    position: relative;
    color: #085870;
    font-family: 'Varela Round', sans-serif;
    z-index: 80;
    overflow: hidden;
    text-align: center;
}

.header-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    mix-blend-mode: multiply;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header-bg-outer {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.header-margin {
    display: inline-block;
    margin: 0 auto;
    height: 80px;
    width: 100%;
    position: relative;
}

.header-info-left_outer {
    float: left;
    /*display: inline-block;*/
    width: 100%;
    max-width: calc(250px + 30vw);
    min-width: 540px;
    color: #085c74;
    text-align: center;
}

.header_info_left {
    margin: 0px auto;
    display: table;
}

.hil_right {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
    font-family: 'Comfortaa';
    text-align: left;
}

.hil_title {
    font-size: 40px;
    display: table-row;
}

.hil_text {
    font-size: 26px;
    display: table-row;
    line-height: 1;
}

.hil_about {
    display: table-row;
    line-height: 2;
    font-size: 16px;
}

.hil_left {
    display: table-cell;
    vertical-align: top;
}

.hil_img {
    margin-top: 4px;
    margin-right: 20px;
    display: table-row;
}

.header-info-right_outer {
    float: right;
    /*display: inline-block;*/
    vertical-align: top;
    width: 100%;
    max-width: calc(26vw + 100px);
    min-width: 300px;
}

@media (max-width:600px) {
    .header-info-right_outer {
        max-width: 500px;
    }
}

.header-info-right {
    text-align: left;
    position: relative;
    margin: 0 auto;
    margin: 10px auto 40px;
    max-width: 284px;
    z-index: 80;
}

.header-info-mail {
    font-size: 20px;
}

.header-info-tell {
    font-size: 20px;
    margin-bottom: 8px;
    display: table;
}

.header-info-tell_line {
    font-family: 'Comfortaa';
    vertical-align: middle;
    font-size: 20px;
}

.header-info-tell_line a {
    color: #085c74;
}

.header-info-form {
    margin-top: 10px;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    display: block;
}

.header-info-style {
    background-color: #096fa3;
    border-radius: 20px;
}

.header-info_line {
    vertical-align: middle;
    max-width: 34px;
}

.main-baner {
    min-height: calc(4.2vmax + 560px);
    will-change: contents;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.main-baner-title {
    font-family: Montserrat;
    text-align: center;
    padding: 26px calc(10vw + 25px);
    font-size: calc(0.8vmax + 12px);
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    z-index: 9;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    opacity: 0;
    -webkit-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s;
    font-weight: 600;
}

.mbt-open {
    opacity: 1;
}

.mbt-margin {
    opacity: 0 !important;
    position: relative;
}

.baner-menu {
    text-align: center;
    width: 100%;
    /*max-width: calc(540px + 20vw);*/
    z-index: 19;
    display: inline-block;
    min-width: 486px;
    /*padding-top: 80px;*/
    /*padding-right: 5px;*/
    /*padding: 0 calc(12vw - 15px);*/
    box-sizing: border-box;
    /*position: absolute;*/
}

.baner-menu-bt-img {
    vertical-align: middle;
    float: left;
    max-width: 46px;
    padding: 9px;
}

.baner-menu-bt-title {
    line-height: 62px;
    margin: 0 46px 0 5px;
    display: inline;
    color: #444444;
    font-size: 24px;
    /*vertical-align: middle;*/
    /*display: none;*/
}

.baner-menu-bt {
    position: relative;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    cursor: pointer;
    -webkit-transition-property: width, -webkit-transform;
    transition-property: width, -webkit-transform;
    -o-transition-property: transform, width;
    transition-property: transform, width;
    transition-property: transform, width, -webkit-transform;
    -webkit-transition-duration: 1s, 0.4s;
    -o-transition-duration: 1s, 0.4s;
    transition-duration: 1s, 0.4s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0s, 0.2s;
    -o-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
    /*overflow: hidden;*/
    width: 64px;
    white-space: nowrap;
    /*margin-bottom: 10px;*/
}

.o02 {
    opacity: 0.2 !important;
}

.o1 {
    opacity: 1 !important;
}

.o0 {
    opacity: 0 !important;
}

@media (max-width:1100px) {
    .o1 {
        opacity: 0.1 !important;
    }
}


/*
.m0{
    -webkit-transform: translateY(74px) !important;
        -ms-transform: translateY(74px) !important;
            transform: translateY(74px) !important;
}
.m1{
    -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
            transform: translateY(0) !important;
}
.m2{
    -webkit-transform: translateY(-74px) !important;
        -ms-transform: translateY(-74px) !important;
            transform: translateY(-74px) !important;
}
.m3{
    -webkit-transform: translateY(-148px) !important;
        -ms-transform: translateY(-148px) !important;
            transform: translateY(-148px) !important;
}
.m4{
    -webkit-transform: translateY(-222px) !important;
        -ms-transform: translateY(-222px) !important;
            transform: translateY(-222px) !important;
}
.m5{
    -webkit-transform: translateY(-296px) !important;
        -ms-transform: translateY(-296px) !important;
            transform: translateY(-296px) !important;
}
*/

.bbt_open {
    /*width:100%;*/
    background-color: #f5f5f5;
}

.baner-menu-bt:hover .baner-menu-bt-title {
    display: inline-block;
}

.baner-img {
    position: absolute;
    top: 0%;
    right: calc(10% - 120px);
    -webkit-transition: ease 1s;
    -o-transition: ease 1s;
    transition: ease 1s;
    z-index: 8;
    mix-blend-mode: screen;
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-baner_content {
    position: relative;
    /*text-align: center;*/
    z-index: 9;
    /*margin: 0 auto;*/
    /*margin-left: calc(6% + 0px);*/
    max-width: calc(400px + 40%);
}

.offers_block {
    text-align: center;
}

.offers_outer {
    display: none;
    /*padding-right: calc(16vw + 10px);*/
    position: relative;
    /*top: calc(0vw + 80px);*/
    /*left: calc(12vw + calc(540px + 20vw)/20 + 30px);*/
    z-index: 20;
    box-sizing: border-box;
    opacity: 0;
    /*padding-bottom: 120px;*/
}

.off_opened {
    transform: translate(0px);
    display: inline-block;
    animation: offAnimate 0.3s forwards;
    animation-delay: 0.2s;
}

@keyframes offAnimate {
    0% {
        transform: translateX(80px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}


/*@media (max-width:800px){
    .baner-menu{
        padding: 0 calc(6vw - 15px);
    }
    .offers_outer{
        top: calc(6vw + 60px);
        left: calc(10vw + 34px);

    }
    .offer > .offer-text{
        font-size: calc(2vw + 12px) !important;
    }
}*/

.offers_outer>.title {
    text-align: center;
    font-family: helvetica;
    font-size: calc(0.4vw + 24px);
    margin-top: calc(0.4vw + 20px);
    margin-bottom: 8px;
    padding: 0 0 10px 0;
    text-transform: uppercase;
    border-bottom: 2px solid #f5f5f5;
}

.offer {
    font-family: helveticaR;
    display: block;
    width: 100%;
    text-align: left;
    -webkit-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}

.offer:hover {
    /*border-bottom: 2px solid #ffffff;*/
    /*transform: scale(1.05);*/
    background-color: rgba(255, 255, 255, 0.2);
}
.offer:last-child { 
    margin-bottom: 16px;
}
.offer>.offer-text {
    position: relative;
    padding: calc(0.2vw + 6px);
    font-size: calc(0.2vw + 20px);
}

.tr-bg {
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
    top: -100px;
}

.tr1 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    z-index: 10;
    width: 0;
    height: 0;
    border-top: 100px solid #f5f5f5;
    border-right: 20vw solid transparent;
}

.tr2 {
    z-index: 10;
    position: absolute;
    top: calc(100% - 100px);
    right: 0%;
    width: 0;
    height: 0;
    border-bottom: 100px solid #f5f5f5;
    border-left: 20vw solid transparent;
}

.tr3 {
    z-index: 10;
    position: absolute;
    top: -300px;
    width: 0;
    height: 0;
    border-bottom: 300px solid #f5f5f5;
    border-right: 20vw solid transparent;
}

#promo {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.promo-img {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    vertical-align: middle;
}

.promo-slider {
    white-space: nowrap;
    /* width: 100%; */
    display: inline-block;
    /* max-width: 1600px; */
    -webkit-transition: ease 0.4s;
    -o-transition: ease 0.4s;
    transition: ease 0.4s;
    min-height: 350px;
    margin-bottom: 60px;
}

.promo-slide {
    display: inline-block;
    vertical-align: top;
    width: 100vw;
    white-space: normal;
}

.promo-text {
    vertical-align: middle;
    display: inline-block;
    /*max-width: 600px;*/
    margin: 20px 26px;
    text-align: left;
}

.promo-text>.title {
    display: inline-block;
    font-size: calc(0.4vw + 24px);
    margin: 0 0 calc(0.4vw + 10px) 0;
}

.promo-text>.text {
    max-width: calc(calc(0.4vw + 14px)*24);
    font-family: helveticaR;
    display: inline-block;
    font-size: calc(0.4vw + 14px);
}

.promo-text>.text>span {
    font-family: helvetica;
    font-size: calc(0.4vw + 16px);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-text>.text a {
    color: inherit;
    text-decoration: underline;
}

.slider-dots {
    bottom: -20px;
    position: absolute;
    width: 100%;
}

.dot {
    display: inline-block;
    position: relative;
    z-index: 9;
    width: 40px;
    height: 40px;
    transform: scale(1.2);
    border-radius: 20px;
    background: #81e2ff;
    -webkit-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s;
}

.dot:hover {
    z-index: 10;
    background: #00b8ff;
    transform: scale(1.4);
}

.radioSlide {
    display: none;
}

.radioSlide:checked+label {
    z-index: 10;
    background: #00b8ff;
    transform: scale(1.6);
}

.progress {
    position: relative;
    z-index: 11;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 4px;
    overflow: hidden;
}

.progress .line {
    transform: scaleX(0);
    height: 4px;
    width: 1%;
    margin: 0 auto;
    background: linear-gradient(90deg, #ffbc00, #ff0082);
}

.load {
    animation: load 8s forwards;
}

.hide {
    animation: hide 0.2s forwards;
}

@keyframes hide {
    100% {
        opacity: 0;
    }
}

@keyframes load {
    0% {
        transform: scaleX(0);
        opacity: 1;
    }
    100% {
        transform: scaleX(110);
        opacity: 1;
    }
}


/*-----------------------------------------*/


/*-----------------------------------------*/

#catalog {
    text-align: center;
}

.catalog_outer {
    position: relative;
    display: inline-block;
    text-align: center;
    z-index: 9;
    vertical-align: top;
    margin-bottom: 60px;
    min-width: 260px;
    max-width: calc(240px + 10vw);
    width: 100%;
}

@media (max-width:1100px) {
    .catalog_outer {
        max-width: 500px;
    }
}

.catalog {
    /*background-color: #00000030; */
    display: inline-block;
    vertical-align: top;
    /* margin: 0 8px; */
    text-align: left;
    font-size: calc(0.2vw + 18px);
    font-family: helveticaR;
    line-height: 30px;
    width: calc(100% - 2vw);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 1vw;
    padding: 0px 10px;
    border-left: 2px solid #ffffff;
    -webkit-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s;
    /* height: 300px; */
    /* padding-left: 10px; */
}

.catalog>.title {
    margin: 0px auto 20px auto;
    font-size: calc(0.2vw + 22px);
    font-family: helvetica;
    /*text-align: center;*/
}

.catalog a {
    display: block;
    cursor: pointer;
    color: #ffffff;
    -webkit-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s;
    padding: 0.2vmax 0;
}

.catalog a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.catalog a:visited {
    color: #ffffff;
}

.br_catalog {
    display: none;
}

@media (max-width:1100px) {
    .br_catalog {
        display: inherit;
    }
    .about-text_outer {
        margin-top: 24px;
    }
}

.about_outer {
    text-align: center;
    margin-bottom: 60px;
}

.about-text_outer {
    text-align: left;
    font-family: helveticaR;
    display: inline-block;
    font-size: calc(0.2vw + 18px);
    vertical-align: top;
    margin-top: 4px;
    max-width: calc(600px + 15%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
}

.about-text_title {
    font-family: Helvetica;
    text-align: center;
    display: inline-block;
    margin-bottom: 20px;
}

/* локальные стили только для блока 1С */
                    .about-1c-badges{
                        margin-top: 10px;
                        display: grid;
                        grid-template-columns: repeat(4, minmax(0, 1fr));
                        gap: 16px;
                        align-items: center;
                    }
                    .about-1c-badge{
                        display: block;
                        width: 100%;
                        height: 64px;          /* единая высота значков */
                        object-fit: contain;   /* без обрезки */
                        filter: grayscale(20%);
                        opacity: 0.92;
                        transition: filter .15s ease, opacity .15s ease, transform .15s ease;
                    }
                    .about-1c-badge:hover{
                        filter: grayscale(0%);
                        opacity: 1;
                        transform: translateY(-1px);
                    }
                    .about-1c-link{
                        display: inline-block;
                        margin-top: 10px;
                        font-size: 13px;
                        text-decoration: underline;
                    }
                    @media (max-width: 980px){
                        .about-1c-badges{
                            grid-template-columns: repeat(2, minmax(0, 1fr));
                        }
                    }
                    @media (max-width: 520px){
                        .about-1c-badge{
                            height: 56px;
                        }
                    }

.maze {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
    display: inline-block;
    position: relative;
    mix-blend-mode: multiply;
    /*-webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);*/
    margin-bottom: 32px;
}

.news {
    height: 500px;
}

.scrolled {
    background-color: #48c5a5;
}

.header_menu {
    display: inline-block;
    vertical-align: top;
    margin: 0 auto;
    width: 100%;
    position: relative;
    max-width: 1200px;
}

.container_title {
    margin: 4em 0;
    text-align: center;
}

.title_text {
    font-size: calc(0.6vmax + 22px);
    display: inline-block;
    margin: 0 auto;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px calc(1vw + 10px);
    font-family: Montserrat;
    font-weight: 600;
}

.back-white {
    color: #444444;
    background-color: #f5f5f5;
}

.back-color {
    color: #ffffff;
    background: -webkit-radial-gradient(top, #00b8ff, #14142f);
    background: -o-radial-gradient(top, #00b8ff, #14142f);
    background: radial-gradient(top, #00b8ff, #14142f);
    /*background-image: url(img/back.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.menu-content_outer {
    background: rgb(93, 34, 48);
    width: 100%;
    margin: 0 auto;
    display: table;
    min-width: 930px;
    position: relative;
}

.menu-content_bg {
    width: 33.33%;
    /*height: 300px;*/
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    color: white;
}

.menu_bt:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu_bt {
    padding: 0 14px;
    line-height: 60px;
    font-family: 'Varela Round', sans-serif;
    border-radius: 50px;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
}

.pulse {
    /*margin:100px;
    display: block;
    width: 22px;
    height: 22px;*/
    border-radius: 50px;
    /*background: #cca92c;*/
    cursor: pointer;
    -webkit-box-shadow: 0 0 0 #0fddc5;
    box-shadow: 0 0 0 #0fddc5;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.pulse:hover {
    -webkit-animation: none;
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffffff52;
        background: #ffffff52;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px #ffffff00;
        background: #ffffff00;
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 #ffffff00;
        background: #ffffff00;
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffffff52;
        box-shadow: 0 0 0 0 #ffffff52;
        background: #ffffff52;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px #ffffff00;
        box-shadow: 0 0 0 10px #ffffff00;
        background: #ffffff00;
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 #ffffff00;
        box-shadow: 0 0 0 0 #ffffff00;
        background: #ffffff00;
    }
}

A {
    color: rgb(255, 255, 255);
    /* Цвет ссылок */
    text-decoration: none;
}

A:visited {
    color: #ffffff;
    /* Цвет посещенных ссылок */
}

A:active {
    color: #ffffff;
    /* Цвет активных ссылок */
}

.bt {
    /**
             * Для эксплорера
             */
    -ms-user-select: none;
    /**
              * Для мозилы
              */
    -moz-user-select: none;
    /**
              * Для конкверора
              */
    -khtml-user-select: none;
    /**
              * Для Сафари и Хрома
              */
    -webkit-user-select: none;
}

.logo {
    margin: 8px;
    max-width: 60px;
}

.logo_outer {
    color: #ffffff;
    font-size: 30px;
    vertical-align: middle;
    height: 50px;
    display: inline-block;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
    position: relative;
    /* margin: auto 6px; */
    padding: 0 28px;
    line-height: 70px;
}

.menu_el {
    color: #ffffff;
    font-size: 26px;
    vertical-align: middle;
    display: inline-block;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
    position: relative;
    cursor: pointer;
}

.menu_img {
    display: inline-block;
    width: 28px;
    vertical-align: middle;
    margin-bottom: 5px;
}

.content_outer {
    display: block;
    z-index: 10;
    position: relative;
    float: left;
    width: 100%;
}

p {
    margin: 5px 0;
    font-family: 'Comfortaa';
    line-height: 20px;
}

.logo-text {
    margin-right: 80px;
    font-size: 40px;
    margin-top: 1px;
    /*font-family: Corbel;*/
    /*font-family: segoe;*/
    /*font-family: Segoe UI Black;*/
}


/* Let's get this party started */

.footer {
    text-align: center;
    vertical-align: bottom;
    display: table;
    width: 90%;
    max-width: 1600px;
    min-width: 950px;
    margin: 0 auto;
    padding: 20px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.footer_info_left {
    width: 30%;
}

.footer_info_right {
    width: 30%;
    text-align: right !important;
}

.footer_logo_outer {
    width: 370px;
    margin: 0 auto
}

.footer_info {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 0 20px;
}

.footer_info_text {
    text-align: left;
}

.footer_logo {
    float: left;
    max-width: 90px;
    /*margin-right: 40px;*/
}

.footer_logo_text {
    line-height: 100px;
    font-size: 50px;
    margin-left: 6px;
    /* font-family: Corbel; */
    /*font-family: segoe;*/
    color: #ffffff;
    vertical-align: middle;
    display: inline-block;
    position: relative;
}


/*-------------------------------------------------contact-------------------------------------------------*/

.contact-info ul li {
    list-style: none;
    font-size: 20px;
    font-family: 'Comfortaa';
    white-space: nowrap;
}

.contact-info ul {
    padding: 0px 0px 0px 10px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.contact-info ul li img {
    background-color: #096fa3;
    display: inline-block;
    vertical-align: middle;
    transform: rotateY(180deg);
    width: 34px;
    height: 34px;
    margin: 4px 8px 4px 2px;
    text-align: center;
    font-size: 25px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.contact-info ul li span {
    white-space: normal;
    display: inline-table;
    margin-bottom: 20px;
    vertical-align: baseline;
    max-width: calc(100% - 44px);
}

#contact {
    text-align: center;
}

.contact-info {
    width: 100%;
    max-width: calc(300px + 15%);
    padding: 0 1vw;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin: 0px 0px 40px 0px;
    /* text-align: center; */
}

.info-tell_outer {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px 0px 10px;
    /* display: inline; */
    margin: 0 0 20px 0;
    text-align: left;
}

.radioMap {
    display: none;
}

.map {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.minimize_map {
    display: block;
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 172px 0 0 8px;
    padding: 8px;
    z-index: 10;
    font-family: helveticaR;
    color: #444444;
    background-color: #ffffff;
    border-radius: 10px;
    opacity: 0.75;
    cursor: pointer;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

.radioMap:checked+label {
    display: none;
}

#mm1:checked~.map {
    pointer-events: none;
    opacity: 0.5;
}

#mm1:checked~#l0 {
    opacity: 1;
    color: #ffffff;
    background-color: #096fa3;
}

.contact_form {
    color: #444444;
    display: inline-block;
    border-radius: 100px;
    text-align: center;
    width: 100%;
    max-width: calc(400px + 15%);
    margin: 0 auto 60px;
    position: relative;
    /*border-top: 4px solid #26615e;
        border-bottom: 4px solid #26615e;*/
    /*-webkit-box-sizing: border-box;
                box-sizing: border-box;*/
    /*background: rgb(8, 140, 172);*/
    /*background: -webkit-radial-gradient(top, #48c7ae, #224b67);
        background: -moz-linear-gradient(left, #41847de8, #360c32e8);
        background: linear-gradient(left, #41847de8, #360c32e8);
        background: -ms-radial-gradient(left, rgba(65, 132, 125, 1), rgba(54, 12, 50, 1));*/
    /* background-image: url(img/back.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    /*padding: 60px 0;*/
}

.form_title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: HelveticaR;
}

.inputs_outer {
    display: inline-block;
    /*max-width: 750px;*/
    width: 80%;
    min-width: 200px;
    /*max-width: 600px;*/
}

.input_small_outer {
    width: 100%;
    min-width: 200px;
    /*max-width: 600px;*/
}


/*.input_small {
    max-width: 298px !important;
}*/

.input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    height: 50px;
    font-family: helveticaR;
    min-width: 200px;
    max-width: 600px;
    font-size: 18px;
    margin-bottom: 10px;
    padding: 14px 20px !important;
    color: #404040;
    /* border: 0px solid #cccccc; */
    border: 1px solid #b3b3b3;
    border-radius: 3px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    background: rgb(255, 255, 255) !important;
    outline: none;
}

 ::-webkit-input-placeholder {
    color: #909;
}

 :-ms-input-placeholder {
    color: #909;
}

 ::-ms-input-placeholder {
    color: #909;
}

 ::placeholder {
    color: #909;
}

 ::-webkit-input-placeholder {
    color: #505050;
    opacity: 1;
}


/* webkit */

 ::-moz-placeholder {
    color: #505050;
    opacity: 1;
}


/* Firefox 19+ */

 :-moz-placeholder {
    color: #505050;
    opacity: 1;
}


/* Firefox 18- */

 :-ms-input-placeholder {
    color: #505050;
    opacity: 1;
}


/* IE */

 ::-webkit-input-placeholder {
    color: #505050;
}

 :-ms-input-placeholder {
    color: #505050;
}

 ::-ms-input-placeholder {
    color: #505050;
}

 ::placeholder {
    color: #505050;
}

.contact_form_bt_outer {
    display: inline-block;
    margin-top: 2px;
    /*width: 80%;*/
    /*height: 40px;*/
}

.contact_form_bt {
    margin: 10px auto 3px;
    padding: 0;
    width: 220px;
    height: 50px;
    background: #096fa3;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 20px;
    text-transform: uppercase;
    font-family: Montserrat;
    font-size: 16px;
}

.captcha_outer {
    display: inline-block;
    width: 100%;
    max-width: 312px;
    vertical-align: top;
}

.captcha {
    max-width: 300px;
    margin: 0px auto;
}

textarea {
    resize: vertical;
    min-height: 160px;
    max-height: 480px;
    padding-top: 6px !important;
}

.result {
    width: 80%;
    font-family: Arial;
    margin: 0 auto;
    font-size: 17px;
    min-height: 20px;
    overflow: hidden;
}


/*#loader {
        display: none;
    }*/

#loader {
    display: none;
    margin: 4px auto 0 auto;
    width: 90%;
    height: 10px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 0px 0px hsl(210, 90%, 35%), 2px 0px 15px 1px hsl(210, 24%, 48%);
    box-shadow: 0 2px 0px 0px hsl(210, 90%, 35%), 2px 0px 15px 1px hsl(210, 24%, 48%);
    background-color: hsl(188, 90%, 40%);
    background-image: -webkit-linear-gradient( top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, .15) 15%, rgba(255, 255, 255, .15) 30%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, .15) 70%, rgba(255, 255, 255, .15) 88%, rgba(255, 255, 255, 0) 88%), -webkit-linear-gradient( 315deg, transparent 0%, transparent 25%, hsl(188, 90%, 40%) 25%, hsl(220, 90%, 40%) 50%, transparent 50%, transparent 75%, hsl(210, 90%, 40%) 75%, hsl(210, 90%, 40%) 100%);
    background-image: -o-linear-gradient( top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, .15) 15%, rgba(255, 255, 255, .15) 30%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, .15) 70%, rgba(255, 255, 255, .15) 88%, rgba(255, 255, 255, 0) 88%), -o-linear-gradient( 315deg, transparent 0%, transparent 25%, hsl(188, 90%, 40%) 25%, hsl(220, 90%, 40%) 50%, transparent 50%, transparent 75%, hsl(210, 90%, 40%) 75%, hsl(210, 90%, 40%) 100%);
    background-image: linear-gradient( to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, .15) 15%, rgba(255, 255, 255, .15) 30%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, .15) 70%, rgba(255, 255, 255, .15) 88%, rgba(255, 255, 255, 0) 88%), linear-gradient( 135deg, transparent 0%, transparent 25%, hsl(188, 90%, 40%) 25%, hsl(220, 90%, 40%) 50%, transparent 50%, transparent 75%, hsl(210, 90%, 40%) 75%, hsl(210, 90%, 40%) 100%);
    background-size: cover, 50px 50px;
    background-position: top, 0 0;
    text-indent: -999em;
    -webkit-animation: loading 1s infinite linear;
    animation: loading s infinite linear;
}

@-webkit-keyframes loading {
    0% {
        background-position: top, 0 0;
    }
    100% {
        background-position: top, 50px 0;
    }
}

@keyframes loading {
    0% {
        background-position: top, 0 0;
    }
    100% {
        background-position: top, 50px 0;
    }
}


/*------------------------------------------------/contact/------------------------------------------------*/

footer {
    float: left;
    width: 100%;
}

.footer {
    text-align: center;
    vertical-align: bottom;
    display: table;
    width: 90%;
    max-width: 1600px;
    min-width: 950px;
    margin: 0 auto;
    padding: 20px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.footer p {
    margin: 5px 0;
    font-family: 'Comfortaa';
    line-height: 20px;
}

.footer_info_left {
    width: 30%;
}

.footer_info_right {
    width: 30%;
    text-align: right !important;
}

.footer_logo_outer {
    width: 370px;
    margin: 0 auto
}

.footer_info {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 0 20px;
}

.footer_info_text {
    text-align: left;
}

.footer_logo {
    float: left;
    max-width: 90px !important;
    /*margin-right: 40px;*/
}

.footer_logo_text {
    line-height: 100px;
    font-size: 50px;
    margin-left: 6px;
    /* font-family: Corbel; */
    font-family: helvetica;
    color: #ffffff;
    vertical-align: middle;
    display: inline-block;
    position: relative;
}

A {
    color: rgb(255, 255, 255);
    /* Цвет ссылок */
    text-decoration: none;
}

A:visited {
    color: #ffffff;
    /* Цвет посещенных ссылок */
}

A:active {
    color: #ffffff;
    /* Цвет активных ссылок */
}

.bt {
    /**
             * Для эксплорера
             */
    -ms-user-select: none;
    /**
              * Для мозилы
              */
    -moz-user-select: none;
    /**
              * Для конкверора
              */
    -khtml-user-select: none;
    /**
              * Для Сафари и Хрома
              */
    -webkit-user-select: none;
}

.logo {
    margin: 8px;
    max-width: 40px;
}

.logo_outer {
    color: #ffffff;
    font-size: 30px;
    vertical-align: middle;
    height: 50px;
    display: inline-block;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
    position: relative;
    /* margin: auto 6px; */
    padding: 0 28px;
    line-height: 70px;
}

.menu_el {
    color: #ffffff;
    font-size: 16px;
    font-family: Montserrat;
    vertical-align: middle;
    display: inline-block;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
    position: relative;
    cursor: pointer;
}

.menu_img {
    display: inline-block;
    width: 28px;
    vertical-align: middle;
    margin-bottom: 5px;
}

.content_outer {
    font-size: calc(10px + 0.33vw);
    display: block;
    z-index: 10;
    position: relative;
    float: left;
    width: 100%;
}

*::selection {
    background: #a4ffea;
    /* Safari */
}


/* Let's get this party started */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    z-index: 999;
}


/* Track */

 ::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    border-radius: 0px;
    background: #505050;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #3EBDE1
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); */
}

 ::-webkit-scrollbar-thumb:window-inactive {
    background: #3EBDE1
}

#index_menu {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Varela Round', sans-serif;
    float: right;
    text-transform: uppercase;
}

#index_menu ul {
    margin: 0;
    padding: 0;
}

#index_menu ul li {
    list-style: none;
    display: inline-block;
    line-height: 36px;
    border-radius: 50px;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
    color: #ffffff;
    font-size: 16px;
    font-family: Montserrat;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

#index_menu ul li a {
    display: block;
    color: #fff;
    padding: 8px 15px 8px 15px;
    text-decoration: none;
}

#index_menu ul ul li a {
    display: inline-block;
    color: #444;
    /* padding: 8px 15px 8px 15px; */
    text-decoration: none;
    font-family: HelveticaR;
    text-transform: initial;
    line-height: 1.2em;
}

#index_menu ul ul {
    min-width: 340px;
}

#index_menu li {
    float: left;
    list-style: none;
    background: none;
    letter-spacing: 0.02em;
    padding: 0;
}

.logo-text {
    margin-right: 80px;
    font-size: 30px;
    margin-top: 1px;
}

.menu-icon {
    position: relative;
    /* top: 100px; */
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 10px;
    cursor: pointer;
    margin: 0 5px 0 0;
    /* float: none; */
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-icon>span {
    position: absolute;
    /* top: 50%; */
    display: block;
    width: 100%;
    height: 3px;
    /* margin-top: -0.5em; */
    background-color: #ffffff;
    border-radius: 3px;
}

.menu-icon>span:before,
.menu-icon>span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-icon>span:before {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.menu-icon>span:after {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}


/* OPENED */

.menu-icon.open {
    -webkit-transform: rotate(45deg) translateX(-2px);
    -ms-transform: rotate(45deg) translateX(-2px);
    transform: rotate(45deg) translateX(-2px);
}

.menu-icon.open>span:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.menu-icon.open>span:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.menu_tg {
    display: none;
}

.hil_right {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
    font-family: Montserrat;
    font-size: 20px;
}

.hil_title {
    font-size: 1.7em;
    display: table-row;
    font-weight: 600;
}

.hil_title span {
    font-size: 0.8em;
}

.hil_about {
    display: table-row;
    line-height: 1.4em;
    font-size: 0.9em;
    font-family: Montserrat;
}

.hil_text {
    font-size: 1em;
    display: table-row;
    font-family: Montserrat;
    line-height: 1.1em;
}

.header_info_left {
    color: #07537a !important;
}

.header_menu {
    max-width: 1200px;
}

.menu_logo {
    display: inline;
}

.menu_outer {
    max-width: 1220px;
    margin: 0 auto;
    text-align: left;
}

@media screen and (max-width: 1200px) {
    .site-block {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
    }
    .header-margin {
        height: 55px;
    }
    h1 {
        /*font-size: 38px;*/
    }
    .main-baner_img {
        /*display: none;*/
    }
    #index_menu li:hover ul,
    #index_menu li.jshover ul {
        display: none;
    }
    .menu {
        height: 100px;
        font-size: 145%;
        line-height: 125%;
        text-align: left;
    }
    #index_menu {
        width: 100%;
        display: none;
    }
    #index_menu ul li {
        width: 95%;
        text-align: left;
        padding: 0;
        padding-left: 9px;
        float: left;
    }
    .menu_tg {
        display: block;
        z-index: 999;
        float: left;
        padding: 8px 10px 0px 10px;
        width: 140px;
        text-align: left;
        font-size: 20px;
        line-height: 30px;
        font-family: Montserrat;
    }
    .header-bg {
        display: none;
    }
    .logo_top {
        float: right;
        margin-right: 20px;
        max-width: 30px;
    }
    .logo-text {
        display: none;
    }
    .baner_text {
        margin-top: 140px;
    }
}